curl --request POST \
--url https://api.depo.to/wallet/create \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '
{
"targetChain": "ethereum",
"targetAddress": "0x742d35Cc6634C0532925a3b844Bc9e7595f0bEb",
"targetAsset": "0x4c9edd5852cd905f086c759e8383e09bff1e68b3"
}
'{
"groupId": {
"id": "1234567890",
"createdAt": "2021-01-01T00:00:00Z",
"targetChain": "ethereum",
"targetAddress": "0x742d...",
"targetAsset": "0x12ab..."
},
"addresses": {
"ethereum": "0x1234567890123456789012345678901234567890",
"solana": "7K8nW2PQ9yXmKhJ5vL4tR6sU1oN3pM2qA8bC9dE0fG1h",
"polygon": "0x9abcdef1234567890abcdef1234567890abcdef1",
"bsc": "0xaaaabbbbccccddddeeeeffffgggghhhhiiiijjjj"
},
"transactions": [
{
"id": "123",
"status": "completed",
"amount": "100",
"asset": "0x4c9edd5852cd905f086c759e8383e09bff1e68b3",
"chain": "ethereum",
"address": "0x1234..."
}
]
}Generate deposit addresses across multiple blockchains for a given target chain and asset
curl --request POST \
--url https://api.depo.to/wallet/create \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '
{
"targetChain": "ethereum",
"targetAddress": "0x742d35Cc6634C0532925a3b844Bc9e7595f0bEb",
"targetAsset": "0x4c9edd5852cd905f086c759e8383e09bff1e68b3"
}
'{
"groupId": {
"id": "1234567890",
"createdAt": "2021-01-01T00:00:00Z",
"targetChain": "ethereum",
"targetAddress": "0x742d...",
"targetAsset": "0x12ab..."
},
"addresses": {
"ethereum": "0x1234567890123456789012345678901234567890",
"solana": "7K8nW2PQ9yXmKhJ5vL4tR6sU1oN3pM2qA8bC9dE0fG1h",
"polygon": "0x9abcdef1234567890abcdef1234567890abcdef1",
"bsc": "0xaaaabbbbccccddddeeeeffffgggghhhhiiiijjjj"
},
"transactions": [
{
"id": "123",
"status": "completed",
"amount": "100",
"asset": "0x4c9edd5852cd905f086c759e8383e09bff1e68b3",
"chain": "ethereum",
"address": "0x1234..."
}
]
}API key from depo.to dashboard
Target blockchain where funds should arrive
"ethereum"
Wallet address on the target chain
"0x742d35Cc6634C0532925a3b844Bc9e7595f0bEb"
Target asset address (leave empty to receive the native asset of the chain)
"0x4c9edd5852cd905f086c759e8383e09bff1e68b3"
Fee sponsoring type
ALL, STABLES, SAME_ASSET, NONE "NONE"
Address group created successfully
Show child attributes
Generated deposit addresses per chain
Show child attributes
{
"ethereum": "0x1234567890123456789012345678901234567890",
"solana": "7K8nW2PQ9yXmKhJ5vL4tR6sU1oN3pM2qA8bC9dE0fG1h",
"polygon": "0x9abcdef1234567890abcdef1234567890abcdef1",
"bsc": "0xaaaabbbbccccddddeeeeffffgggghhhhiiiijjjj"
}Transaction history (empty for new groups)
Show child attributes