v2

latestOpenAPI 3.0.3Apache 2.02026-07-3149289180.2 KB

Get Account Limits

Get the authenticated account's effective rate-limit allowances for its current volume-based tier: order-action rate, open-order cap, and the display-only messages-per-minute figure. open_orders reflects the account's current live open-order count; the rate-usage counters (actions_per_minute, actions_burst, and reset) are not tracked here and are reported as 0.

get/v1/account/limits

Response

Account limits response.

actions_per_minuteinteger required

Order action tokens used by the account in the current minute

actions_per_minute_limitinteger required

Maximum order action tokens per account per minute

actions_burstinteger required

Additional account action allowance remaining

actions_burst_limitinteger required

Additional account action allowance limit

open_ordersinteger required

Current number of open orders

open_orders_limitinteger required

Maximum number of open orders per account

resetinteger required

Timestamp in milliseconds when the current interval resets

messages_per_minuteinteger required

Display-only per-minute action/message allowance, equal to actions_per_minute_limit. Not separately configured or enforced.

Example response

{
  "actions_per_minute": 23,
  "actions_per_minute_limit": 300,
  "open_orders": 42,
  "open_orders_limit": 1000,
  "reset": 1767225660000,
  "messages_per_minute": 300
}