Documentation Index
Fetch the complete documentation index at: https://docs.maxcare.ai/llms.txt
Use this file to discover all available pages before exploring further.
Limits
Rate limits are enforced per app using a sliding window counter. Every response includes rate limit headers so you can track your usage in real time.| Environment | Requests per minute |
|---|---|
| All environments | 1,000 |
Rate Limit Headers
Rate-limited API responses include these headers:| Header | Description |
|---|---|
X-RateLimit-Limit | Maximum requests allowed per window |
X-RateLimit-Remaining | Requests remaining in the current window |
X-RateLimit-Reset | Unix timestamp when the window resets |
Retry-After | Seconds until the window resets (only on 429 responses) |
Handling Rate Limits
When you exceed the limit, the API returns429 Too Many Requests:
Recommended Approach
Use theX-RateLimit-Reset header to wait until the window resets before retrying. Fall back to exponential backoff with jitter if the header is missing:
Best Practices
- Batch requests where possible instead of making many individual calls
- Cache responses for data that doesn’t change frequently (providers, facilities)
- Use pagination with larger page sizes to reduce the number of requests
- Monitor headers — check
X-RateLimit-Remainingto throttle proactively before hitting the limit
