Skip to main content
POST
/
api
/
v4
/
sub-account
/
withdraw
/
unconfirmed-list
List Unconfirmed Sub-Account Withdrawals
curl --request POST \
  --url https://whitebit.com/api/v4/sub-account/withdraw/unconfirmed-list \
  --header 'Content-Type: application/json' \
  --header 'X-TXC-APIKEY: <api-key>' \
  --header 'X-TXC-PAYLOAD: <api-key>' \
  --header 'X-TXC-SIGNATURE: <api-key>' \
  --data '
{
  "limit": 100,
  "offset": 0
}
'
{
  "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
}

Authorizations

X-TXC-APIKEY
string
header
required

The public WhiteBIT API key.

X-TXC-PAYLOAD
string
header
required

Base64-encoded JSON request body.

X-TXC-SIGNATURE
string
header
required

HMAC-SHA512 signature of the payload, hex-encoded. Computed as hex(HMAC-SHA512(payload, api_secret)).

Body

application/json
limit
integer
default:100

Number of records to return.

Required range: 1 <= x <= 100
Example:

100

offset
integer
default:0

Number of records to skip.

Required range: 0 <= x <= 10000
Example:

0

subAccountId
string

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

Example:

"a1b2c3d4-5678-90ab-cdef-1234567890ab"

Response

Successful response

data
object[]

List of unconfirmed withdrawal transactions.

limit
integer

Applied limit value.

Example:

100

offset
integer

Applied offset value.

Example:

0