For the complete documentation index, see llms.txt. This page is also available as Markdown.

Get pending spot withdrawals

This endpoint returns pending spot asset withdrawals.

GET /api/v1/account/spot_asset/withdraw/pending

Query Parameters

Field
Type
Need
Description
Example

"account"

string

required

User's wallet address

42trU9A5...

/api/v1/account/spot_asset/withdraw/pending?account=42trU9A5...

Response

  • Status 200: Successfully retrieved pending spot withdrawals

{
  "success": true,
  "data": [
    {
      "symbol": "SOL",
      "amount": "1.00000000",
      "amount_requested": "1.00100000",
      "fee_amount": "0.00100000",
      "batch_nonce": 42,
      "created_at": 1716200000000
    }
    ...
  ]
}
Field
Type
Description

'symbol'

string

Spot asset symbol

'amount'

decimal string

Net amount to be received after fees

'amount_requested'

decimal string

Original amount requested for withdrawal

'fee_amount'

decimal string

Fee deducted from the withdrawal

'batch_nonce'

integer

Nonce of the withdrawal batch

'created_at'

integer

Timestamp in milliseconds of when the withdrawal was created

  • Status 400: Invalid request parameters

  • Status 401: Unauthorized access

  • Status 500: Internal server error

Code Example (Python)

Last updated