Overview
The API implements rate limiting to ensure fair usage and protect against abuse.Rate Limits
Rate Limit Response
When you exceed a rate limit, you’ll receive a429 Too Many Requests response:
Retry-After header indicates how many seconds to wait before retrying.
Handling Rate Limits
Best Practices
- Cache responses to reduce API calls
- Batch operations when possible
- Implement retry logic with exponential backoff

