/rateLimit/limits

Currently-configured rate limits for the calling partner system. Cheaper than /v1/rateLimit/usage (no Redis fan-out).

Recent Requests
Log in to see full request history
TimeStatusUser Agent
Retrieving recent requests…
LoadingLoading…

📘

Currently-configured limits

Returns the rate-limit configuration applied to the calling registered system.

📘

Use this for cheap polling

If you only need to know your limits — not your usage — call this endpoint. It avoids the Redis aggregation that powers /v1/rateLimit/usage.

📘

Authentication

Requires valid X-System and X-System-Key as request headers.

Response

FieldTypeDescription
systemstringThe calling system's registered name.
current_limits.across_all_accountsobjectPer-route global ceilings shared across all accounts using this system. default is the catch-all; named keys are per-route overrides.
current_limits.per_accountobjectPer-account ceilings (each individual account using this system gets this many requests).

Example response

{
  "system": "your-system",
  "current_limits": {
    "across_all_accounts": { "default": 750, "GET.people": 100 },
    "per_account": { "default": 25 }
  }
}

Errors

StatusMeaning
401Missing or invalid user API key.
403Only registered systems can call this endpoint.

Related

Headers
string
required

The name of the registered system.

string
required

The key of the registered system.

Responses

Language
Credentials
Basic
base64
:
LoadingLoading…
Response
Click Try It! to start a request and see the response here! Or choose an example:
application/json