---
title: "Returns initiated or pending finalize withdraws for the given subaccount"
method: GET
path: "/v1/token/withdraw"
tags: ["Token"]
---

# Returns initiated or pending finalize withdraws for the given subaccount

`GET /v1/token/withdraw`

## Query parameters

- `order` 'asc' | 'desc'
- `limit` integer
- `cursor` string
- `subaccountId` string, uuid, required
- `isActive` boolean
- `orderBy` 'createdAt'

## Response `200`

- PageOfWithdrawDtos
  - `data` WithdrawDto[], required — Array of subaccount withdraw objects
    - `amount` string, required — Amount of asset transferred expressed as a decimal
    - `createdAt` integer, required — Withdraw creation timestamp (ms since Unix Epoch)
    - `finalizedBlockNumber` string — Block number the withdraw was completed on
    - `id` string, uuid, required — Id representing the withdraw
    - `initiatedBlockNumber` string — Block number the withdraw was initiated on
    - `lzDestinationAddress` string, hex — LayerZero destination address (leading 0x bytes32 encoded) for the transfer (if withdraw)
    - `lzDestinationEid` integer — LayerZero destination endpoint ID for the transfer (if withdraw)
    - `status` 'SUBMITTED' | 'PENDING' | 'COMPLETED' | 'REJECTED', required — Current status of the withdraw
    - `subaccount` string, hex, required — Bytes32 encoded subaccount name (0x prefix, zero padded)
    - `token` string, hex, required — Address of asset to withdraw (non-checksummed)
    - `withdrawDigest` string, hex, required — Bytes32 hash of the withdraw data (with 0x prefix)
  - `hasNext` boolean, required — Whether there are more objects to paginate through
  - `nextCursor` string — Pointer to the next page in pagination dataset

## Other responses

- `400` — Bad Request
- `401` — Unauthorized
- `403` — Forbidden
- `404` — Not Found
- `422` — Unprocessable Entity
- `429` — Too Many Requests
- `500` — Internal Server Error

---

[API](https://skmtc.net/ethereal/apis/ethereal-exchange-api.md) · [All operations](https://skmtc.net/ethereal/apis/ethereal-exchange-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/ethereal/ethereal-exchange-api/revisions/6e6f8dad92bf/schema)
