List deposits for the authenticated client
Returns the authenticated client's deposits, newest first. Supports filtering by account, recipient, address, status, source chain, and transaction hash. The account filter accepts an EVM address or a Solana public key (deposit address or swig address); address matches the source-chain deposit address or target-chain recipient.
Query parameters
EVM address (0x...) or Solana base58 public key
EVM address (0x...) or Solana base58 public key
Filter by the account's recipient address. Aggregates deposits across every smart account that resolves to the same recipient (typically the integrator's user wallet).
Filter by the account's recipient address. Aggregates deposits across every smart account that resolves to the same recipient (typically the integrator's user wallet).
Filter by the source-chain deposit address or target-chain recipient.
Filter by the source-chain deposit address or target-chain recipient.
Filter by deposit status
Filter by deposit status
CAIP-2 chain identifier (e.g. "eip155:8453")
CAIP-2 chain identifier (e.g. "eip155:8453")
Filter by source transaction hash (EVM 0x... or Solana base58 signature)
Filter by source transaction hash (EVM 0x... or Solana base58 signature)
Maximum number of deposits to return
Maximum number of deposits to return
Pagination cursor. Use the nextCursor returned by the previous page.
Pagination cursor. Use the nextCursor returned by the previous page.
When true, include spam-flagged deposits (tokens with no known price). Defaults to false.
When true, include spam-flagged deposits (tokens with no known price). Defaults to false.
Headers
API key for authentication (omit when sending Authorization)
API key for authentication (omit when sending Authorization)
Bearer platform token (e.g. forwarded by user-service). Takes precedence over x-api-key when both are present.
Bearer platform token (e.g. forwarded by user-service). Takes precedence over x-api-key when both are present.
Response
Client deposits
Example response
{
"deposits": [
{
"id": "12345",
"amount": "1000000000000000000",
"sourceAmount": "1000000000000000000",
"destinationAmount": "1000000000000000000"
}
]
}