v1

latestOpenAPI 3.0.02026-08-0641318.9 KB
Fund

Get withdrawal status

Returns the current withdrawal status for the authenticated merchant. Requires fund.withdraw permission.

get/withdraw/status

Query parameters

request_idstring uuid required
Example:e94b4e88-36c2-4550-907e-839742cf5fae

Withdrawal request ID. Must be a UUID.

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.

Response

Standard response envelope

OR

Example response

{
  "data": {
    "request_id": "e94b4e88-36c2-4550-907e-839742cf5fae",
    "status": "completed",
    "amount": "11",
    "fee": "0.1",
    "actual_amount": "10.9",
    "transaction_hash": "0xabc123",
    "chain": "ETHEREUM",
    "token_type": "USDT"
  }
}