> ## Documentation Index
> Fetch the complete documentation index at: https://docs.whitebit.com/llms.txt
> Use this file to discover all available pages before exploring further.

# List Unconfirmed Sub-Account Withdrawals

> Retrieve a paginated list of sub-account withdrawal transactions awaiting main account confirmation.



## OpenAPI

````yaml /openapi/private/main_api_v4.yaml POST /api/v4/sub-account/withdraw/unconfirmed-list
openapi: 3.0.3
info:
  title: WhiteBIT Private HTTP API V4
  description: |
    WhiteBIT Private HTTP API V4 for Main balance changes.

    Base URL: https://whitebit.com

    All endpoints return time in Unix-time format.
    All endpoints return either a JSON object or array.
    For receiving responses from API calls please use http method POST.
  version: 4.0.0
  contact:
    name: WhiteBIT Support
    email: support@whitebit.com
    url: https://whitebit.com
servers:
  - url: https://whitebit.com
    description: WhiteBIT Global Server
  - url: https://whitebit.eu
    description: WhiteBIT EU Server
security:
  - ApiKeyAuth: []
    PayloadAuth: []
    SignatureAuth: []
tags:
  - name: Main Account
    description: Main account balance and operations
  - name: Deposit
    description: Cryptocurrency and fiat deposit operations
  - name: Withdraw
    description: Cryptocurrency and fiat withdrawal operations
  - name: Transfer
    description: Balance transfer operations
  - name: Codes
    description: WhiteBIT codes operations
  - name: Crypto Lending - Fixed
    description: Fixed crypto lending plans
  - name: Crypto Lending - Flex
    description: Flexible crypto lending plans
  - name: Fees
    description: Fee information
  - name: Sub-Account
    description: Sub-account management
  - name: Sub-Account API Keys
    description: Sub-account API key management
  - name: Mining Pool
    description: Mining pool operations
  - name: Credit Line
    description: Credit line information
  - name: JWT
    description: JWT token management
paths:
  /api/v4/sub-account/withdraw/unconfirmed-list:
    post:
      tags:
        - Sub-Account
      summary: List Unconfirmed Sub-Account Withdrawals
      description: >
        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.


        Only withdrawals from sub-accounts of type **general** are returned.


        <Note>

        The authenticated user must have the **sub-account crypto service**
        permission.

        If the permission is missing, the endpoint returns `404 Not Found`.

        </Note>


        <Note>

        The sub-account feature must be enabled for the region.

        </Note>
      operationId: listUnconfirmedSubAccountWithdrawals
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                limit:
                  type: integer
                  minimum: 1
                  maximum: 100
                  default: 100
                  description: Number of records to return.
                  example: 100
                offset:
                  type: integer
                  minimum: 0
                  maximum: 10000
                  default: 0
                  description: Number of records to skip.
                  example: 0
                subAccountId:
                  type: string
                  description: >-
                    Filter by specific sub-account external ID. If omitted,
                    returns withdrawals from all sub-accounts.
                  example: a1b2c3d4-5678-90ab-cdef-1234567890ab
            example:
              limit: 100
              offset: 0
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    description: List of unconfirmed withdrawal transactions.
                    items:
                      type: object
                      properties:
                        id:
                          type: string
                          description: Transaction external ID (UUID).
                          example: f47ac10b-58cc-4372-a567-0e02b2c3d479
                        subAccountId:
                          type: string
                          description: Sub-account external ID.
                          example: a1b2c3d4-5678-90ab-cdef-1234567890ab
                        currency:
                          type: string
                          description: Currency ticker.
                          example: BTC
                        amount:
                          type: string
                          description: Withdrawal amount (trailing zeros trimmed).
                          example: '12'
                        createdAt:
                          type: integer
                          description: Unix timestamp of transaction creation.
                          example: 1711882345
                  limit:
                    type: integer
                    description: Applied limit value.
                    example: 100
                  offset:
                    type: integer
                    description: Applied offset value.
                    example: 0
              example:
                data:
                  - id: f47ac10b-58cc-4372-a567-0e02b2c3d479
                    subAccountId: a1b2c3d4-5678-90ab-cdef-1234567890ab
                    currency: BTC
                    amount: '12'
                    createdAt: 1711882345
                  - id: c56a4180-65aa-42ec-a945-5fd21dec0538
                    subAccountId: b2c3d4e5-6789-01ab-cdef-2345678901bc
                    currency: BTC
                    amount: '12'
                    createdAt: 1711882300
                limit: 100
                offset: 0
        '401':
          description: Unauthorized — invalid or missing API key
        '404':
          description: >-
            Not Found — user does not have the sub-account crypto service
            permission
        '422':
          description: Validation error — invalid parameter values
          content:
            application/json:
              schema:
                type: object
                properties:
                  errors:
                    type: object
                    additionalProperties:
                      type: array
                      items:
                        type: string
              example:
                errors:
                  limit:
                    - The limit field must be at least 1.
                  offset:
                    - The offset field must be at least 0.
components:
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-TXC-APIKEY
      description: The public WhiteBIT API key.
    PayloadAuth:
      type: apiKey
      in: header
      name: X-TXC-PAYLOAD
      description: Base64-encoded JSON request body.
    SignatureAuth:
      type: apiKey
      in: header
      name: X-TXC-SIGNATURE
      description: >-
        HMAC-SHA512 signature of the payload, hex-encoded. Computed as
        hex(HMAC-SHA512(payload, api_secret)).

````