get
https://api.followupboss.com/v1/v1/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
| Time | Status | User Agent | |
|---|---|---|---|
Retrieving recent requests… | |||
Loading…
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-SystemandX-System-Keyas request headers.
Response
| Field | Type | Description |
|---|---|---|
system | string | The calling system's registered name. |
current_limits.across_all_accounts | object | Per-route global ceilings shared across all accounts using this system. default is the catch-all; named keys are per-route overrides. |
current_limits.per_account | object | Per-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
| Status | Meaning |
|---|---|
| 401 | Missing or invalid user API key. |
| 403 | Only registered systems can call this endpoint. |
Related
- GET /v1/rateLimit/usage — same
current_limitsplus 24h usage totals. - Rate Limiting — overview of how rate limiting is enforced.
