Get Withdrawal Methods
POST/private/WithdrawMethods
Retrieve a list of withdrawal methods available for the user.
API Key Permissions Required: Funds permissions - Query
and Funds permissions - Withdraw
Request
- application/json
Body
required
nonce int64required
Nonce used in construction of API-Sign
header
asset string
Filter methods for specific asset
aclass string
Default value: currency
Filter methods for specific asset class
network string
Filter methods for specific network
Responses
- 200
Withdrawal methods retrieved.
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
result object[]
Withdrawal Methods
asset string
Name of asset being withdrawn
method string
Name of the withdrawal method
network string
Name of the blockchain or network being withdrawn on
minimum string
Minimum net amount that can be withdrawn right now
error string[]
{
"error": [],
"result": [
{
"asset": "XXBT",
"method": "Bitcoin",
"network": "Bitcoin",
"minimum": "0.0004"
},
{
"asset": "XXBT",
"method": "Bitcoin Lightning",
"network": "Lightning",
"minimum": "0.00001"
}
]
}
Loading...