Skip to main content
GET
/
v1
/
account
/
limits
Get Account Limits
curl --request GET \
  --url https://api.perpetuals.polymarket.com/v1/account/limits \
  --header 'POLYMARKET-PROXY: <api-key>' \
  --header 'POLYMARKET-SECRET: <api-key>'
{
  "actions_per_minute": 23,
  "actions_per_minute_limit": 300,
  "actions_burst": 123,
  "actions_burst_limit": 123,
  "open_orders": 42,
  "open_orders_limit": 1000,
  "reset": 1767225660000,
  "messages_per_minute": 300
}
Request Weight: 2

Authorizations

POLYMARKET-PROXY
string
header
required

Proxy address

POLYMARKET-SECRET
string
header
required

Correponding proxy secret

Response

Account limits response.

actions_per_minute
integer
required

Order action tokens used by the account in the current minute

Example:

23

actions_per_minute_limit
integer
required

Maximum order action tokens per account per minute

Example:

300

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

Example:

42

open_orders_limit
integer
required

Maximum number of open orders per account

Example:

1000

reset
integer
required

Timestamp in milliseconds when the current interval resets

Example:

1767225660000

messages_per_minute
integer
required

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

Example:

300