Limits et quotas
You can use a certain number of requests per month, defined according to your profile:
| Profile | Limit |
|---|---|
| User | 1000 requests/month |
| Partner | 12000 requests/month |
Once this quota is exceeded, the API returns an HTTP status 429. You will then have to wait until the end of the month for this quota to be recharged.
API response once quota exceeded:
{
"success": false,
"statusCode": 429,
"code": "quota_exceeded",
"message": "Quota exceeded for this API key"
}
Response header
The API also returns, via the response header, information about your quota:
RateLimit-Limit: 1000
RateLimit-Remaining: 42
RateLimit-Reset: 392360
RateLimit-Limit | The maximum number of requests allowed according to your profile. |
RateLimit-Remaining | The number of requests remaining before the quota is reloaded. |
RateLimit-Reset | The time remaining before quota reloads, in seconds (UTC Epoch). |