Skip to main content
POST
https://autopay.shakesco.com
/
delegate_address
const response = await fetch("https://autopay.shakesco.com/delegate_address", {
  method: "POST",
  headers: {
    Authorization: `Bearer ${API_KEY}`,
    "Content-Type": "application/json",
  },
  body: JSON.stringify({
    smart_wallet: "0x742d35Cc6634C0532925a3b844Bc9e7595f0bEb4",
  }),
});

const { test_delegate_address } = await response.json();
{
  "id": 1,
  "test_delegate_address": "0xB808ff0E0F4fC24D0cECeED6014f04ecE5bfca36"
}
Request a test user delegate address for integration testing. Address is automatically funded.
Test addresses are automatically funded - no balance required for testing.

Request Body

smart_wallet
string
required
Your business smart wallet address (same for Ethereum and Polygon)

Response

id
integer
Request ID
test_delegate_address
string
Generated test user address
const response = await fetch("https://autopay.shakesco.com/delegate_address", {
  method: "POST",
  headers: {
    Authorization: `Bearer ${API_KEY}`,
    "Content-Type": "application/json",
  },
  body: JSON.stringify({
    smart_wallet: "0x742d35Cc6634C0532925a3b844Bc9e7595f0bEb4",
  }),
});

const { test_delegate_address } = await response.json();
{
  "id": 1,
  "test_delegate_address": "0xB808ff0E0F4fC24D0cECeED6014f04ecE5bfca36"
}
Use network 11155111 (Sepolia testnet) when testing with this address.