v1

latestOpenAPI 3.0.32026-07-267278168.1 KB
Wallet

List Withdrawals

Returns withdrawal history for the authenticated account. For the withdrawal process and timing, see Withdrawals.

get/v1/wallet/withdrawals

Response

List of withdrawals

successboolean required

Whether the request was successful

errorstring

Error message, present only on failure

error_codestring

Semantic error code. See each endpoint's error responses for the specific codes it can return.

deprecatedstring

Deprecation notice, if applicable

Example response

{
  "success": true,
  "result": [
    {
      "coin": "USDC",
      "size": "100.00",
      "status": "complete",
      "chainId": "eth-mainnet",
      "from": {
        "id": "10458932786832481",
        "wallet": "margin"
      }
    }
  ]
}