Get Withdrawal Information
POST/private/WithdrawInfo
Retrieve fee information about potential withdrawals for a particular asset, key and amount.
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 stringrequired
Asset being withdrawn
key stringrequired
Withdrawal key name, as set up on your account
amount stringrequired
Amount to be withdrawn
Responses
- 200
Withdrawal information retrieved.
- application/json
- Schema
- Example (from schema)
Schema
result object
Withdrawal Info
method string
Name of the withdrawal method that will be used
limit string
Maximum net amount that can be withdrawn right now
amount string
Net amount that will be sent, after fees
fee string
Amount of fees that will be paid
error string[]
{
"error": [],
"result": {
"method": "Bitcoin",
"limit": "332.00956139",
"amount": "0.72485000",
"fee": "0.00020000"
}
}
Loading...