API Reference
Rate Limits
Understanding API rate limits
Rate Limits
The API implements rate limiting to ensure fair usage and maintain service quality for all users.
Rate Limit Overview
Plan | Requests per Minute | Requests per Hour | Requests per Day |
---|---|---|---|
Free | 6 | 360 | 8640 |
Pro | 6 | 360 | 8640 |
Enterprise | Custom | Custom | Custom |
Rate Limit Exceeded
When you exceed the rate limit, you'll receive a 429 Too Many Requests
response:
{
"status": "429",
"title": "Too Many Requests",
"detail": "You are exceeding the permitted number of requests allowed per minute.",
"meta": {
"quotaPerMinute": 6,
"expiresIn": 45
}
}
Response Fields
Field | Description |
---|---|
status | HTTP status code (429) |
title | Error title |
detail | Human-readable error message |
meta.quotaPerMinute | Your current rate limit |
meta.expiresIn | Seconds until you can make another request |