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.

Fee tier and rates plus 30-day rolling volume. Response shape depends on params:
  • address + account_idflat object, one account
  • address + broker_id (no account_id) → sub_accounts[]
  • address only → accounts[]
Weight: 1

Request

{
  "type": "feeRate",
  "address": "0x1234567890abcdef1234567890abcdef12345678",
  "broker_id": "orderly",
  "account_id": "0xabc..."
}
FieldTypeRequiredDefaultNotes
addressstringYesWallet address
broker_idstringNoTriggers sub_accounts[] shape
account_idstringNoTriggers flat-object shape

Response

FieldTypeNotes
tierstring | nullPUBLIC / SILVER / GOLD / PLATINUM / DIAMOND
futures_tierstring | nullSame value as tier
maker_fee_rate, taker_fee_ratestring | nullDecimal (bps / 10000)
30d_volumestringSum of executed perp notional over the last 30 days; "0" if none

Notes

  • 60s cache keyed by (address, broker_id, account_id)
  • Throws ADDRESS_NOT_FOUND (404) if no accounts match
{
  "success": true,
  "data": {
    "tier": "PLATINUM",
    "futures_tier": "PLATINUM",
    "maker_fee_rate": "0.0001",
    "taker_fee_rate": "0.0005",
    "30d_volume": "250000"
  },
  "ts": 1779269143700
}