Rate limits
The Restore Hub API uses a sliding-window limiter measured in 10-second buckets. Limits are per API key (effectively per account), and they scale with your plan. Every authenticated response carries headers describing your current state.
Per-plan limits
| Plan | Requests / 10s | Effective requests / minute |
|---|---|---|
| Free | 50 | ~300 |
| Premium | 100 | ~600 |
| Business | 200 | ~1,200 |
| Enterprise | 200 | ~1,200 (contact sales for higher) |
Free-plan keys are also restricted to read-only methods (GET). Write operations return
403 with an upgradeUrl.Response headers
Every authenticated response includes these headers:
| Header | Meaning |
|---|---|
X-RateLimit-Limit | Your bucket size for the current plan (e.g. 100). |
X-RateLimit-Remaining | Requests left in the current 10-second window. |
X-RateLimit-Reset | Unix timestamp (seconds) at which the window resets. |
X-RateLimit-Window | Always 10s. Reserved for future flexibility. |
Retry-After | Seconds to wait. Sent only on 429 responses. |
When you exceed the limit
The server responds with HTTP 429 and a JSON body:
Backoff strategy
Recommended algorithm for clients:
- On
429, read theRetry-Afterheader. - Sleep for
Retry-After + jitterseconds (10–25% jitter). - Retry the same request. Cap at 3 attempts before giving up.
- If you keep hitting
429, slow your concurrency or upgrade.
Member pulls have their own budget
members:pull is throttled separately — Discord caps how fast bots can join users to a guild. Restore Hub paces pulls at 50 members per minute per target server, regardless of your plan's API rate limit. See API Reference for the full pull endpoint contract.
Guidance for AI agents
- List endpoints are paginated. Don't fetch every page in parallel — interleave.
- Cache the OpenAPI spec and data-model JSON locally; they rarely change.
- If you're orchestrating with the MCP server, the same limits apply (it proxies REST).
- Respect
Retry-After. Don't tight-loop after a429.
Need more?
Contact [email protected] for higher limits on the Enterprise plan, or upgrade in Billing.