---
title: "List Unconfirmed Sub-Account Withdrawals"
method: POST
path: "/api/v4/sub-account/withdraw/unconfirmed-list"
tags: ["Sub-Account"]
---

# List Unconfirmed Sub-Account Withdrawals

`POST /api/v4/sub-account/withdraw/unconfirmed-list`

The endpoint returns a paginated list of withdrawal transactions in `unconfirmed_by_main_account` status,
created by [sub-accounts](/glossary#sub-account) of the authenticated main account and awaiting main account confirmation.
Results are ordered by creation time, newest first.

<Note>
The sub-account withdrawal endpoints are not available by default. To request access, contact institutional@whitebit.com.
A `404 Not Found` response indicates the endpoint is not enabled for the account.
</Note>

<Note>
The sub-account feature must be enabled for the region.
</Note>

## Request body

- object
  - `limit` integer — Number of records to return.
  - `offset` integer — Number of records to skip.
  - `subAccountId` string — Filter by specific sub-account external ID. If omitted, returns withdrawals from all sub-accounts.

## Response `200`

Successful response

- object
  - `data` object[] — List of unconfirmed withdrawal transactions.
    - `id` string — Transaction external ID (UUID).
    - `subAccountId` string — Sub-account external ID.
    - `currency` string — Currency ticker.
    - `amount` string — Withdrawal amount (trailing zeros trimmed).
    - `createdAt` integer — Unix timestamp of transaction creation.
  - `limit` integer — Applied limit value.
  - `offset` integer — Applied offset value.

## Other responses

- `401` — Unauthorized — invalid or missing API key
- `404` — Not Found — the sub-account withdrawal endpoints are not enabled for the account
- `422` — Validation error — invalid parameter values

---

[API](https://skmtc.net/whitebit/apis/whitebit-private-http-api-v4.md) · [All operations](https://skmtc.net/whitebit/apis/whitebit-private-http-api-v4/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/whitebit/whitebit-private-http-api-v4/revisions/76c9def9942f/schema)
