Skip to main content

List Withdrawals

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)
LimitintegerNumber of results per requested
OffsetintegerThe number of elements skiped
totalPageintegerTotal number of pages
TotalItemintegerTotal items returned from the request

Response Example

{
"success": true,
"data": {
"items": [
{
"withdrawalId": 65987,
"amount": 99999,
"transactionFee": 0.0005,
"confirmations": 0,
"txId": "624d5e2d436e8f48d1399898fd421ef18f115d9f8951bc2c4776981d29839c6c",
"currency": "KLV",
"address": "klv1lwv996lr5vq8p6r2gmwyxtj7567fc089y9q3dwu24l8l4g5k8husl8psu4",
"chain": "KLV",
"status": "OPEN",
"info": "",
"createdAt": 1671568671,
"updatedAt": 1671568671
},
{
"withdrawalId": 65988,
"amount": 10000.9996,
"transactionFee": 100.0005,
"confirmations": 6,
"txId": "624d5e2d436e8f48d1399898fd421ef18f115d9f8951bc2c4776981d29839c6c",
"currency": "KLV",
"address": "klv1lwv996lr5vq8p6r2gmwyxtj7567fc089y9q3dwu24l8l4g5k8husl8psu4",
"chain": "KLV",
"status": "OPEN",
"info": "",
"createdAt": 1671568425,
"updatedAt": 1671568425
}
],
"totalPage": 1,
"offset": 2,
"limit": 100,
"totalItem": 2
}
}