Rate Limits
The Rebased API has rate limits to ensure fair usage and system stability.
Limits
| Limit Type | Value |
|---|---|
| Per API Key | 60 requests/minute |
| Per API Key | 1,000 requests/hour |
| Per Business | 120 requests/minute (across all keys) |
Monthly Quotas
Each subscription tier includes a monthly API request quota:
| Tier | Monthly Requests |
|---|---|
| Starter | 5,000 |
| Pro | 50,000 |
| Business | 250,000 |
Rate Limit Headers
API responses include headers to help you track your usage:
X-RateLimit-Limit: 60
X-RateLimit-Remaining: 45
X-RateLimit-Reset: 1709812800Rate Limit Exceeded
If you exceed the rate limit, you’ll receive:
{
"detail": "Rate limit exceeded. Try again in 30 seconds."
}Status: 429 Too Many Requests
Best Practices
- Cache responses where possible to reduce API calls
- Implement exponential backoff when retrying failed requests
- Batch operations by fetching multiple records per request using pagination
- Monitor your usage in Settings → Integrations
Quota Exceeded
If you exceed your monthly quota, API requests will return:
{
"detail": "Monthly API quota exceeded. Upgrade your plan or wait until next billing cycle."
}Status: 429 Too Many Requests
Contact support to discuss higher limits or prepaid request packages.
Last updated on