---
title: "Get Withdrawals"
method: GET
path: "/api/v2/accounts/{account_id}/withdrawals"
tags: ["Withdrawals"]
---

# Get Withdrawals

`GET /api/v2/accounts/{account_id}/withdrawals`

Get a list of all `Withdrawals` under the `Account`, sorted by most recent.

## Query parameters

- `withdrawal_request_id` string, uuid, nullable
- `limit` integer
- `order` 'asc' | 'desc'
- `next` string, nullable
- `previous` string, nullable

## Response `200`

OK

- PaginatedWithdrawalResponse
  - `_sv` 'PaginatedWithdrawalResponse:v1' — Version
  - `data` Withdrawal[], required — List of Withdrawal
    - `id` string, uuid, required — ID of the `Withdrawal`.
    - `chain_id` string, required — CAIP-2 chain ID of the blockchain where the `Withdrawal` is made.
    - `account_id` string, uuid, required — ID of the `Account` from which the `Withdrawal` is made.
    - `recipient_account_id` string, uuid, required — ID of the `Account` that will receive payment tokens from the `Withdrawal`. This `Account` must be connected to a non-managed `Wallet` and belong to the same `Entity`.
    - `payment_token_amount` number, required — Amount of USDC payment tokens to be withdrawn.
    - `payment_token_address` string, eth_address, required — Address of USDC payment token that the `Withdrawal` will be received in.
    - `withdrawal_request_id` string, uuid, required — ID of the `WithdrawalRequest` associated with this `Withdrawal`.
    - `status` 'PENDING_SUBMIT' | 'PENDING_CANCEL' | 'PENDING_ESCROW' | 'PENDING_FILL' | 'ESCROWED' | 'SUBMITTED' | 'CANCELLED' | 'PARTIALLY_FILLED' | 'FILLED' | 'REJECTED' | 'REQUIRING_CONTACT' | 'ERROR', required
    - `transaction_hash` string, hex_string, required — Hash of the transaction for the `Withdrawal`.
    - `transaction_dt` string, date-time, required — Datetime at which the `Withdrawal` was transacted. ISO 8601 timestamp.
  - `pagination_metadata` BaseOpenApiPaginationMetadata, required
    - `previous` string — Cursor for previous page
    - `next` string — Cursor for next page

## Other responses

- `422` — Unprocessable Entity
- `default` — Default error response

---

[API](https://skmtc.net/dinaricrypto/apis/dinari-enterprise-api.md) · [All operations](https://skmtc.net/dinaricrypto/apis/dinari-enterprise-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/dinaricrypto/dinari-enterprise-api/revisions/5403e9118588/schema)
