Rate Limits
Rate Limits
API rate limiting policies.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
API rate limiting policies.
| Plan | Requests/min | Concurrent |
|---|---|---|
| Free | 60 | 5 |
| Pro | 300 | 20 |
| Enterprise | Custom | Custom |
X-RateLimit-Limit: 300
X-RateLimit-Remaining: 299
X-RateLimit-Reset: 1640000000
from akhara.exceptions import RateLimitError
try:
client.calls.list()
except RateLimitError as e:
print(f"Rate limited. Retry after {e.retry_after}s")
