Limits et quotas

You can use a certain number of requests per month, defined according to your profile:

ProfileLimit
User1000 requests/month
Partner12000 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-LimitThe maximum number of requests allowed according to your profile.
RateLimit-RemainingThe number of requests remaining before the quota is reloaded.
RateLimit-ResetThe time remaining before quota reloads, in seconds (UTC Epoch).