v1

latestOpenAPI 3.0.32026-07-267278168.1 KB
Wallet

List Deposit Addresses

Returns the list of deposit addresses for the account. For supported assets and deposit steps, see Funding your account.

post/v1/wallet/deposit_address/list

Request body

coinsstring[] required

List of token symbols to retrieve deposit addresses for

network'avalanche' | 'ethereum' | 'solana'

Filter by network; omit to list all networks

Example request

{
  "coins": [
    "USDC"
  ],
  "network": "ethereum",
  "depositDestination": {
    "id": "10458932786832481",
    "wallet": "margin"
  }
}

Response

List of deposit addresses

successboolean required

Whether the request was successful

errorstring

Error message, present only on failure

error_codestring

Semantic error code. See each endpoint's error responses for the specific codes it can return.

deprecatedstring

Deprecation notice, if applicable

Example response

{
  "success": true,
  "result": [
    {
      "coin": "USDC",
      "network": "ethereum",
      "depositDestination": {
        "id": "10458932786832481",
        "wallet": "margin"
      }
    }
  ]
}