Skip to Content
DevelopersRate Limits

Rate Limits

The Rebased API has rate limits to ensure fair usage and system stability.

Limits

Limit TypeValue
Per API Key60 requests/minute
Per API Key1,000 requests/hour
Per Business120 requests/minute (across all keys)

Monthly Quotas

Each subscription tier includes a monthly API request quota:

TierMonthly Requests
Starter5,000
Pro50,000
Business250,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: 1709812800

Rate 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