Wallet

Get crypto withdrawal address

Returns a single saved crypto withdrawal address by ID.

Requires the deposit permission on the API key.

get/wallet/address-book/{id}

Path parameters

idstring required

Crypto withdrawal address identifier.

Response

Address book entry returned successfully.

idstring

Unique address identifier. Pass as address_book_id when submitting a withdrawal.

currencystring

Asset ticker.

networkstring
addressstring
memostring nullable

Memo or destination tag. Null when not applicable.

labelstring nullable

Human-readable label for this address.

status'crypto_address_status_active' | 'crypto_address_status_inactive' | 'crypto_address_status_disabled'

Address status.

created_atinteger
updated_atinteger

Example response

{
  "id": "addr-001",
  "currency": "BTC",
  "network": "BTC",
  "address": "bc1qxy2kgdygjrsqtzq2n0yrf2493p83kkfjhx0wlh",
  "label": "My cold wallet",
  "status": "crypto_address_status_active",
  "created_at": 1712000000,
  "updated_at": 1712000000
}

Changes

No recorded changes to this endpoint across all 1 revision of this API.