Skip to main content
POST
/
v1
/
get_withdrawal_status
Get Withdrawal Status
curl --request POST \
  --url https://api.ondoperps.xyz/v1/get_withdrawal_status \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "withdrawal_id": "w_9f8e7d6c5b4a3210",
  "customer_withdrawal_id": "my-withdrawal-001"
}
'
{
  "success": true,
  "result": {
    "original_request": {
      "account_id": "10458932786832481",
      "customer_withdrawal_id": "my-withdrawal-001",
      "symbol": "USDC",
      "amount": "100.00",
      "address": "0x054A94b753CBf65D1Bc484F6D41897b48251fbfF",
      "network": "ethereum"
    },
    "withdrawal_id": "w_9f8e7d6c5b4a3210",
    "txid": "0xabc123...",
    "confirmation_number": 12,
    "withdrawal_status": "complete"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json

Provide exactly one of withdrawal_id or customer_withdrawal_id

withdrawal_id
string

The platform-assigned withdrawal ID

Example:

"w_9f8e7d6c5b4a3210"

customer_withdrawal_id
string

The user-specified withdrawal ID

Example:

"my-withdrawal-001"

Response

Withdrawal status result

success
boolean
required

Whether the request was successful

Example:

true

error
string

Error message, present only on failure

Example:

""

error_code
string

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

deprecated
string

Deprecation notice, if applicable

Example:

""

result
object