v1

latestOpenAPI 3.0.32026-07-2613529376.3 KB
Sub-Account

List Unconfirmed Sub-Account Withdrawals

The endpoint returns a paginated list of withdrawal transactions in unconfirmed_by_main_account status, created by sub-accounts 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>
post/api/v4/sub-account/withdraw/unconfirmed-list

Request body

limitinteger

Number of records to return.

offsetinteger

Number of records to skip.

subAccountIdstring

Filter by specific sub-account external ID. If omitted, returns withdrawals from all sub-accounts.

Example request

{
  "limit": 100,
  "subAccountId": "a1b2c3d4-5678-90ab-cdef-1234567890ab"
}

Response

Successful response

limitinteger

Applied limit value.

offsetinteger

Applied offset value.

Example response

{
  "data": [
    {
      "id": "f47ac10b-58cc-4372-a567-0e02b2c3d479",
      "subAccountId": "a1b2c3d4-5678-90ab-cdef-1234567890ab",
      "currency": "BTC",
      "amount": "12",
      "createdAt": 1711882345
    }
  ],
  "limit": 100
}