Rate Limit Tiers
1. Free Models (Model IDs ending in :free)
Free models (e.g., deepseek-r1:free) are subject to the following rate limits:
- 5 Requests Per Minute (RPM)
- 200 Requests Per Day (RPD)
429 status code.
2. Pay-As-You-Go Models
For Pay-As-You-Go models (all model IDs without the:free suffix), Routeway does not enforce API-level rate limits.
To protect service availability and prevent abuse, standard rate limits and DDoS protection are active at the network edge.
Rate Limit Response Schema
When you exceed a rate limit, the API returns anHTTP 429 Too Many Requests status code with the following JSON payload:
Rate Limit Headers
Rate-limited responses include headers to help you manage retry timing.All Rate-Limited Responses
Minute-based Limits
Day-based Limits
Best Practices: Handling 429 Errors
We recommend implementing client-side retry logic using exponential backoff with jitter to handle rate limits gracefully.- Node.js
- Python