v1

latestOpenAPI 3.0.32026-07-267278168.1 KB
Wallet

Get Withdrawal Status

Get status of one or more withdrawals. For the withdrawal process and timing, see Withdrawals.

post/v1/get_withdrawal_status

Request body

withdrawal_idstring

The platform-assigned withdrawal ID

customer_withdrawal_idstring

The user-specified withdrawal ID

Example request

{
  "withdrawal_id": "w_9f8e7d6c5b4a3210",
  "customer_withdrawal_id": "my-withdrawal-001"
}

Response

Withdrawal status result

successboolean required

Whether the request was successful

errorstring

Error message, present only on failure

error_codestring

Semantic error code. See each endpoint's error responses for the specific codes it can return.

deprecatedstring

Deprecation notice, if applicable

Example response

{
  "success": true,
  "result": {
    "original_request": {
      "from": {
        "id": "10458932786832481",
        "wallet": "margin"
      }
    }
  }
}