Skip to main content
GET
/
api
/
v1
/
withdraw_queue
Get withdrawal queue entries for an account
curl --request GET \
  --url https://api.mainnet.aptoslabs.com/decibel/api/v1/withdraw_queue \
  --header 'Authorization: Bearer <token>'
{
  "items": [
    {
      "fungible_amount": 123,
      "processed_amount": 123,
      "request_id": "<string>",
      "timestamp_ms": 123,
      "transaction_version": 1,
      "user": "<string>",
      "market": "<string>",
      "queued_at_ms": 123,
      "recipient": "<string>"
    }
  ],
  "total_count": 1
}

Documentation Index

Fetch the complete documentation index at: https://docs.decibel.trade/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer token from Geomi. See Authentication for setup instructions.

Query Parameters

account
string
required

Account address

status
enum<string>

Optional status filter (Queued, Processed, Cancelled)

Available options:
Queued,
Processed,
Cancelled
limit
integer<int32>
default:10

Page size

Required range: 0 <= x <= 200
offset
integer<int32>
default:0

Page offset

Required range: 0 <= x <= 10000

Response

Withdraw queue entries retrieved successfully

items
object[]
required

The items in the current page

total_count
integer<int32> | null

The total number of items across all pages. Optional: history endpoints omit this field to avoid expensive COUNT(*) queries.

Required range: x >= 0