Get Withdrawal Addresses
POST/private/WithdrawAddresses
Retrieve a list of withdrawal addresses available for the user.
API Key Permissions Required: Funds permissions - Query
and Funds permissions - Withdraw
Request
- application/json
Body
required
Nonce used in construction of API-Sign
header
Filter addresses for specific asset
Default value: currency
Filter addresses for specific asset class
Filter addresses for specific method
Find address for by withdrawal key name, as set up on your account
Filter by verification status of the withdrawal address. Withdrawal addresses successfully completing email confirmation will have a verification status of true.
Responses
- 200
Withdrawal addresses retrieved.
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
result object[]
Withdrawal Addresses
Withdrawal address
Name of asset being withdrawn
Name of the withdrawal method
Withdrawal key name, as set up on your account
Verification status of withdrawal address
{
"error": [],
"result": [
{
"address": "bc1qxdsh4sdd29h6ldehz0se5c61asq8cgwyjf2y3z",
"asset": "XBT",
"method": "Bitcoin",
"key": "btc-wallet-1",
"verified": true
}
]
}