v1

latestOpenAPI 3.0.22026-07-26123510445.2 KB
Withdrawals

Create Withdraw

Initiate cryptocurrency withdrawal request. When the destination address routes to the Binance channel, the withdrawal is rejected if the address book entry is missing Travel Rule data; populate it first via Update Address Book. Stablecoin Account API Publisher Disclaimer

post/v1/ramp/withdraw

Headers

x-on-behalf-ofstring

Specifies the sub-account on whose behalf the request is made. This should be set to the account_id, which can be retrieved via the List Connected Accounts API. If omitted or empty, the request is executed using the master account. More information at Connected Accounts.

x-idempotency-keystring uuid

A unique identifier (UUID) used to maintain operation idempotency, ensuring that repeated executions of the same operation do not result in unintended effects or duplication. It helps preserve data consistency in the face of network errors, retries, or failures.

Request body

currencystring required

Withdrawal currency

networkstring required

Network code

amountstring required

Withdrawal amount

withdraw_addressstring required

Withdrawal address

memostring

Withdrawal memo

reasonstring required

Withdrawal reason

Example request

{
  "currency": "USDC",
  "network": "ETH",
  "amount": "100",
  "withdraw_address": "0x0993446fBB19f4e828768515eF7A9408B5F1A000",
  "memo": "test",
  "reason": "test"
}

Response

Withdrawal created successfully

codeinteger required
messagestring required

Example response

{
  "code": 200,
  "message": "Success",
  "data": {
    "order_id": "f75fdee5-0cc1-4b52-818e-497dd376cced",
    "short_order_id": "WD260124-N1PAAIXX",
    "order_status": "Pending",
    "order_type": "Withdraw",
    "currency": "USDC",
    "network": "ETH",
    "amount": "100",
    "withdraw_address": "0x0993446fBB19f4e828768515eF7A9408B5F1A000",
    "network_fee": "0.66",
    "processing_fee": "0",
    "actual_amount": "99.34",
    "reason": "test",
    "create_time": "2026-01-24 11:41:37 +08:00"
  }
}