Rate Limits
Each API key has a per-minute request limit based on your plan tier. Limits are enforced via a sliding window.| Plan | Requests per Minute |
|---|---|
| Starter | 1 |
| Pro | 30 |
Rate Limit Headers
When you’re rate limited, the API returns429 Too Many Requests:
Best Practices
- Cache responses — if you’re polling
/v1/newsfrequently, cache results for a few seconds - Use WebSocket for real-time data instead of polling the REST API (Pro plan)
- Spread requests — avoid bursting all requests in the first second of each minute