---
title: "GET /private/get_withdrawals"
method: GET
path: "/private/get_withdrawals"
tags: ["Wallet", "Private"]
---

# GET /private/get_withdrawals

`GET /private/get_withdrawals`

Retrieve the latest user withdrawals. Returns a list of withdrawal requests with their status, amounts, addresses, and other relevant details.

**📖 Related Article:** [Managing Withdrawals](https://docs.deribit.com/articles/managing-withdrawals-api)

**Scope:** `wallet:read`

[Try in API console](https://test.deribit.com/api_console?method=%2Fprivate%2Fget_withdrawals)

## Query parameters

- `currency` 'BTC' | 'ETH' | 'USDC' | 'USDT' | 'EURR', required — Currency, i.e `"BTC"`, `"ETH"`, `"USDC"`
- `count` integer
- `offset` integer

## Response `200`

Success response

- PrivateGetWithdrawalsResponse
  - `jsonrpc` '2.0', required — The JSON-RPC version (2.0)
  - `id` integer — The id that was sent in the request
  - `result` object, required
    - `data` Withdrawal[], required
      - `address` string, required — Address in proper format for currency
      - `amount` number, required — Amount of funds in given currency
      - `confirmed_timestamp` integer, nullable — The timestamp (milliseconds since the Unix epoch) of withdrawal confirmation, `null` when not confirmed
      - `created_timestamp` integer — The timestamp (milliseconds since the Unix epoch)
      - `currency` 'BTC' | 'ETH' | 'USDC' | 'USDT' | 'EURR', required — Currency, i.e `"BTC"`, `"ETH"`, `"USDC"`
      - `fee` number — Fee in currency
      - `id` integer — Withdrawal id in Deribit system
      - `priority` number — Id of priority level
      - `state` 'unconfirmed' | 'confirmed' | 'cancelled' | 'completed' | 'interrupted' | 'rejected', required — Withdrawal state, allowed values : `unconfirmed`, `confirmed`, `cancelled`, `completed`, `interrupted`, `rejected`
      - `transaction_id` string, nullable, required — Transaction id in proper format for currency, `null` if id is not available
      - `updated_timestamp` integer, required — The timestamp (milliseconds since the Unix epoch)
      - `nonce` string — Optional idempotency nonce if provided in the request
    - `count` integer, required — Total number of results available

---

[API](https://skmtc.net/deribit/apis/deribit-api.md) · [All operations](https://skmtc.net/deribit/apis/deribit-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/deribit/deribit-api/versions/78a0783dbfcc/schema)
