Rate Limits
هذا المحتوى غير متوفر بلغتك بعد.
Rate Limit Headers
Responses include headers indicating your rate limit status:
| Header | Description |
|---|---|
X-RateLimit-Limit | Maximum requests per window |
X-RateLimit-Remaining | Remaining requests in current window |
X-RateLimit-Reset | Unix timestamp when the window resets |
Rate Limit Response
When rate limited, you receive a 429 response:
{ "error": { "message": "Rate limit exceeded. Try again in 60 seconds.", "type": "rate_limit_exceeded" }}Endpoint-Specific Limits
| Endpoint | Limit |
|---|---|
/v1/chat/completions | Configurable per instance |
/v1/audio/generations | Configurable per instance |
/v1/audio/transcriptions | Configurable per instance |
Quota vs Rate Limit
- Rate limit — Short-term request frequency (per minute)
- Quota — Long-term usage limits (per day/month, per workspace)
Both are enforced independently. Hitting either will result in a 429 response.