Rate limits
How many requests per key per minute and hour.
Each API key has its own rate-limit budget. By default:
- 60 requests per minute
- 1,000 requests per hour
These are per-key, sliding-window limits. If you hit the limit you’ll get a
429 Too Many Requests response with a Retry-After header telling you how
many seconds to wait.
Response headers
Every successful request (and most error responses) includes:
When you exceed a limit
Handling
- Honor the
Retry-Afterheader — it’s the simplest correct strategy. - For batch workloads, use the
X-RateLimit-Remaining-*headers to pace yourself proactively instead of waiting for a429. - Use exponential backoff if you see repeated
429s — they suggest you’re hammering the limit faster than the window resets.
Need higher limits?
If your use case requires more, contact us — we can set per-key overrides via
rate_limit_per_minute and rate_limit_per_hour columns. Reach out at
support@telecho.io with your expected request profile.
