v1

latestOpenAPI 3.0.32026-07-267278168.1 KB
Wallet

Provision Deposit Address

Provision a new deposit address for a given symbol/chain. For supported assets and deposit steps, see Funding your account.

post/v1/provision_address

Request body

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

Blockchain network

symbolstring required

Token symbol

Example request

{
  "network": "ethereum",
  "symbol": "USDC",
  "deposit_destination": {
    "id": "10458932786832481",
    "wallet": "margin"
  }
}

Response

Provisioned address

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": {
    "chain": "ethereum",
    "symbol": "USDC"
  }
}