---
title: "Get Withdrawal Status"
method: POST
path: "/v1/get_withdrawal_status"
tags: ["Wallet"]
---

# Get Withdrawal Status

`POST /v1/get_withdrawal_status`

Get status of one or more withdrawals. For the withdrawal process and timing, see [Withdrawals](/withdrawals).

## Request body

- GetWithdrawalStatusRequest — Provide exactly one of withdrawal_id or customer_withdrawal_id
  - `withdrawal_id` string — The platform-assigned withdrawal ID
  - `customer_withdrawal_id` string — The user-specified withdrawal ID

## Response `200`

Withdrawal status result

- object
  - `success` boolean, required — Whether the request was successful
  - `error` string — Error message, present only on failure
  - `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
  - `result` WithdrawalStatusResult
    - `original_request` object, required — The original withdrawal request
      - `account_id` string
      - `customer_withdrawal_id` string
      - `symbol` string
      - `amount` string
      - `address` string
      - `network` 'avalanche' | 'ethereum' | 'solana'
      - `from` AccountWalletKey
        - `id` string, required — The account ID
        - `wallet` 'main' | 'margin', required — The wallet type
    - `withdrawal_id` string, required — Internal withdrawal ID
    - `txid` string, required — On-chain transaction ID
    - `confirmation_number` integer, required — Number of confirmations
    - `withdrawal_status` 'complete' | 'failure' | 'pending' | 'cancelled' | 'unknown', required — Current withdrawal status

## Other responses

- `401` — Authentication required. Provide a valid JWT or API key.
- `403` — Access denied. The authenticated account does not have permission.
- `429` — Rate limit exceeded. Slow down request frequency.
- `500` — Internal server error.

---

[API](https://skmtc.net/ondoperps/apis/ondo-perps-rest-api.md) · [All operations](https://skmtc.net/ondoperps/apis/ondo-perps-rest-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/ondoperps/ondo-perps-rest-api/versions/39df6b2fa672/schema)
