API Rate Limits
Understanding API rate limits and how to handle them.
API Rate Limits
Limits by Plan
Plan — Requests/Hour —
Free — 100 —
Pro — 1,000 —
Agency — 5,000 —
Enterprise — Unlimited —
Rate Limit Headers
Every response includes:
When You Hit the Limit
You'll receive a 429 Too Many Requests response. The X-RateLimit-Reset header tells you when you can retry (Unix timestamp).
Best Practices
- Cache responses when possible
- Use webhooks for real-time updates instead of polling
- Implement exponential backoff on 429 errors
- Monitor your remaining quota via response headers