Skip to main content

Get Withdraw

Fetch withdrawals.

GET /v1/account/withdrawals

Headers:

ParamType
apikeystring

Query Parameters:

ParamTypeMandatoryDescription
withdrawalIdintegerNoUnique withdrawal identifier
currencystringNoCurrency
limitintegerNoNumber of results per request. Minimum is 1, maximum is 100, default is 100.
offsetintegerNoThe number of elements to skip
info

If withdrawalId and currency has provided in the same request, the withdrawalId will take precedence in the request.

Response:

ParamTypeDescription
withdrawalIdintegerUnique withdrawal identifier
amountdecimalWithdrawal amount
transactionFeedecimalWithdrawal fee
confirmationsintegerNumber of confirmations to make an transaction on chain
txIdstringThe blockchain hash of the transaction
currencystringCurrency
addressstringWithdrawal address
chainstringThe blockchain of the currency
statusstringStatus. available values: PROGRESS, DONE, OPEN, CANCELED and ERROR.
infostringInformation when something goes wrong
createdAttimestampcreated at (milisecond)
updatedAttimestamplast updated (milisecond)

Response Example

{
"success": true,
"data": {
"withdrawalId": 65987,
"amount": 99999,
"transactionFee": 0.0005,
"confirmations": 0,
"txId": "624d5e2d436e8f48d1399898fd421ef18f115d9f8951bc2c4776981d29839c6c",
"currency": "KLV",
"address": "klv1lwv996lr5vq8p6r2gmwyxtj7567fc089y9q3dwu24l8l4g5k8husl8psu4",
"chain": "KLV",
"status": "ERROR",
"info": "Transaction not succeded",
"createdAt": 1550653727731,
"updatedAt": 1550653727731
}
}