Fund

List withdrawal statuses

Returns withdrawals owned by the authenticated merchant whose creation times fall within the inclusive Unix-second range. Requires fund.withdraw permission.

Results are ordered by created_at descending. page defaults to 1 and page_size defaults to 20 with a maximum of 100. A range with no matching withdrawals returns HTTP 200 with an empty withdrawals array. Invalid time ranges or pagination values return HTTP 400.

post/withdraw/status/batch

Headers

Datestring

GMT server time, e.g. Tue, 21 Jan 2025 12:00:00 GMT. Required on the wire; the Try it signer injects it automatically.

Authorizationstring

HMAC-SHA256 Signature header. Required on the wire; the Try it signer injects it automatically. See the Authentication guide.

Digeststring

SHA-256 digest required on the wire when a body is present; the Try it signer injects it automatically.

Request body

start_timeinteger required

Inclusive withdrawal creation start time, as a Unix timestamp in seconds.

end_timeinteger required

Inclusive withdrawal creation end time, as a Unix timestamp in seconds. Must be greater than or equal to start_time.

pageinteger

Page number.

page_sizeinteger

Number of withdrawals per page.

Example request

{
  "start_time": 1787500000,
  "end_time": 1787599999,
  "page": 1,
  "page_size": 20
}

Response

Standard response envelope with paginated withdrawal statuses

OR

Example response

{
  "data": {
    "withdrawals": [
      {
        "request_id": "e94b4e88-36c2-4550-907e-839742cf5fae",
        "created_at": 1787564636,
        "status": "completed",
        "amount": "11",
        "fee": "0.1",
        "actual_amount": "10.9",
        "transaction_hash": "0xabc123",
        "chain": "ETHEREUM",
        "token_type": "USDT",
        "source_currency": "USDT",
        "gas_fee": "0.1",
        "gas_fee_currency": "USDT",
        "fx_fee": "0",
        "fx_fee_currency": "USDT",
        "fee_paid_by": "BENEFICIARY"
      }
    ],
    "total": 1,
    "page": 1,
    "page_size": 20,
    "total_pages": 1
  }
}

Changes

Changed in 1 of the 5 revisions of this API.1