Skip to main content

Withdraw

Creates a withdrawal request

POST /v1/account/withdrawals

Headers:

ParamType
apikeystring

Parameters:

ParamTypeMandatoryDescription
currencystringYesCurrency
addressstringYesWithdrawal address
chainstringYesThe chain of currency
amountnumberYesWithdrawal amount, a positive number which is a multiple
of the amount precision (fees excluded)

Request Example

{
"success": true,
"data": {
"currency": "KLV",
"address": "klv1lwv996lr5vq8p6r2gmwyxtj7567fc089y9q3dwu24l8l4g5k8husl8psu4",
"chain": "KLV",
"amount": 99999
}
}

Response:

ParamTypeExampleDescription
withdrawalIdinteger65987Unique identifier

Response Example

{
"success": true,
"data": {
"withdrawalId": 65987
}
}