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

# Get Withdrawal Requests

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

List `WithdrawalRequests` under the `Account`, sorted by most recent.

## Query parameters

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

## Response `200`

OK

- PaginatedWithdrawalRequestResponse
  - `_sv` 'PaginatedWithdrawalRequestResponse:v1' — Version
  - `data` WithdrawalRequest[], required — List of WithdrawalRequest
    - `id` string, uuid, required — ID of the `WithdrawalRequest`.
    - `account_id` string, uuid, required — ID of the `Account` of the `WithdrawalRequest`.
    - `recipient_account_id` string, uuid, required — ID of the `Account` that will receive USDC 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 USD+ payment tokens submitted for withdrawal.
    - `status` 'PENDING' | 'SUBMITTED' | 'ERROR' | 'CANCELLED', required
    - `created_dt` string, date-time, required — Datetime at which the `WithdrawalRequest` was created. ISO 8601 timestamp.
    - `updated_dt` string, date-time, required — Datetime at which the `WithdrawalRequest` was updated. 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/versions/5403e9118588/schema)
