Skip to content

Wallet Withdrawal

Endpoint: /v1/wallet/withdraw

Request

Required

Method

POST

API Key Permission

Withdrawal

Example

Bash
curl -d /v1/wallet/withdraw

Request Parameters

Parameter Required Type Example Description
address Yes string 0x77a41... Withdrawal address (only addresses whitelisted on the official withdrawal address list are supported)
amount Yes string 0.5 Withdrawal amount
currency Yes string BTC Asset symbol (only assets supported for withdrawal on the official asset list)
chain Yes string ERC20 Blockchain network (refer to deposit/withdraw chain information for supported networks)
memo No string 598 Address tag / memo

Response Parameters

Parameter Required Type Example Description
errno Yes int 0 Status code
errmsg Yes string success Status message
result Yes object See example Result data

Result Fields

Parameter Required Type Example Description
withdrawId Yes string 500 Withdrawal record ID

Response Example

JSON
{
  "errno": 0,
  "errmsg": "success",
  "result": {
    "withdrawId": "500"
  }
}