---
title: "Get Account Limits"
method: GET
path: "/v1/account/limits"
---

# Get Account Limits

`GET /v1/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.

## Response `200`

Account limits response.

- AccountLimits
  - `actions_per_minute` integer, required — Order action tokens used by the account in the current minute
  - `actions_per_minute_limit` integer, required — Maximum order action tokens per account per minute
  - `actions_burst` integer, required — Additional account action allowance remaining
  - `actions_burst_limit` integer, required — Additional account action allowance limit
  - `open_orders` integer, required — Current number of open orders
  - `open_orders_limit` integer, required — Maximum number of open orders per account
  - `reset` integer, required — Timestamp in milliseconds when the current interval resets
  - `messages_per_minute` integer, required — Display-only per-minute action/message allowance, equal to actions_per_minute_limit. Not separately configured or enforced.

## Other responses

- `401` — Unauthorized — missing or invalid `POLYMARKET-PROXY` / `POLYMARKET-SECRET` credentials. `error` is `unauthorized`.
- `429` — Too Many Requests. `error` distinguishes the limit that was hit: `ip_rate_limited` (per-IP token bucket), `action_rate_limited` (per-account action rate), or `open_orders_limit` (resting open-order cap).
- `500` — Internal server error. `error` is `internal_error`.

---

[API](https://skmtc.net/polymarket/apis/polymarket-perps-http-api.md) · [All operations](https://skmtc.net/polymarket/apis/polymarket-perps-http-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/polymarket/polymarket-perps-http-api/revisions/e17c4709273e/schema)
