Appearance
Rate Limits
API requests are rate-limited per API key to ensure fair usage and platform stability.
Limits
| Plan | Daily Limit |
|---|---|
| Free | 100 calls |
| Solo | 1,000 calls |
| Professional | 10,000 calls |
| Enterprise | Unlimited |
When You're Rate Limited
The API returns 429 Too Many Requests:
json
{
"success": false,
"error": "You have exceeded your usage limit. Please contact support if you need higher limits."
}Best Practices
- Cache responses — avoid repeated calls for the same data
- Use pagination — fetch records in pages instead of requesting everything at once
- Implement backoff — add exponential backoff on retries to avoid hitting limits in bursts
- Upgrade your plan if you consistently need higher limits