Skip to main content

Documentation Index

Fetch the complete documentation index at: https://orderly.network/docs/llms.txt

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

Deposit / withdraw transaction history for an address. Optional filters for direction, token, and time window. Weight: 5

Request

{
  "type": "userDepositsWithdrawals",
  "address": "0x1234567890abcdef1234567890abcdef12345678",
  "side": "deposit",
  "token": "USDC",
  "limit": 100
}
FieldTypeRequiredDefaultNotes
addressstringYesWallet address
broker_idstringNoOptional
account_idstringNoOptional
sidestringNo"deposit" / "withdraw" (case-insensitive); anything else → INVALID_PARAM
tokenstringNoToken filter (e.g. "USDC")
start_timeint64Noms epoch
end_timeint64Noms epoch
limitintNo1001..500
cursorstringNoOpaque cursor

Response

FieldTypeNotes
idstringAuto-increment transaction ID encoded as string
sidestring"deposit" or "withdraw"
statusstringSUCCESS / PENDING / FAILED / …
chain_idstringEVM chain ID of the transaction
tx_idstringOn-chain transaction hash
created_timeint64ms epoch
{
  "success": true,
  "data": {
    "rows": [
      {
        "id": "12345",
        "token": "USDC",
        "side": "deposit",
        "amount": "1000.5",
        "fee": "0.5",
        "chain_id": "1",
        "tx_id": "0xabc...",
        "status": "SUCCESS",
        "created_time": 1715000000000
      }
    ],
    "next_cursor": null
  },
  "ts": 1779269143700
}