curl "https://partners-backend-1038109371738.europe-west1.run.app/api/v1/8453/wallets/0x.../deposits"
const response = await fetch(
'https://partners-backend-1038109371738.europe-west1.run.app/api/v1/8453/wallets/0x.../deposits'
);
const data = await response.json();
{
"deposits": [
{
"amount": 1000000000,
"token_type": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"date": "2024-01-15T10:30:00Z",
"tx_hash": "0xabc123..."
},
{
"amount": 500000000,
"token_type": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"date": "2024-01-20T14:00:00Z",
"tx_hash": "0xdef456..."
}
]
}
Agents
Get Wallet Deposits
Get deposit information for a wallet
GET
/
api
/
v1
/
{chain_id}
/
wallets
/
{wallet}
/
deposits
curl "https://partners-backend-1038109371738.europe-west1.run.app/api/v1/8453/wallets/0x.../deposits"
const response = await fetch(
'https://partners-backend-1038109371738.europe-west1.run.app/api/v1/8453/wallets/0x.../deposits'
);
const data = await response.json();
{
"deposits": [
{
"amount": 1000000000,
"token_type": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"date": "2024-01-15T10:30:00Z",
"tx_hash": "0xabc123..."
},
{
"amount": 500000000,
"token_type": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"date": "2024-01-20T14:00:00Z",
"tx_hash": "0xdef456..."
}
]
}
SDK Alternative: Use
agent.deposits() for a simpler TypeScript interface. See SDK docsDescription
Retrieves the list of deposits made to a specific wallet.Path Parameters
integer
required
The blockchain chain ID
string
required
The wallet address
Query Parameters
boolean
default:"false"
If
true, treats wallet as an EOA addressResponse
array
curl "https://partners-backend-1038109371738.europe-west1.run.app/api/v1/8453/wallets/0x.../deposits"
const response = await fetch(
'https://partners-backend-1038109371738.europe-west1.run.app/api/v1/8453/wallets/0x.../deposits'
);
const data = await response.json();
{
"deposits": [
{
"amount": 1000000000,
"token_type": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"date": "2024-01-15T10:30:00Z",
"tx_hash": "0xabc123..."
},
{
"amount": 500000000,
"token_type": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"date": "2024-01-20T14:00:00Z",
"tx_hash": "0xdef456..."
}
]
}