The Rate Limits API provides information about the rate limits for various API endpoints. These limits help ensure fair usage and prevent abuse of our services.
Usage
To retrieve the rate limits for a specific API endpoint, make a GET request to /en/developer/api/rate-limits/<endpoint>
.
For example, to get the rate limits for the "Search" API endpoint, you would make a GET request to /en/developer/api/rate-limits/search
.
Response Format
The response will be in JSON format and will include the following fields:
limit
: The maximum number of requests allowed per minute.remaining
: The number of requests remaining in the current minute.reset
: The timestamp when the rate limit will reset.
Example
{
"limit": 100,
"remaining": 90,
"reset": "2023-04-01T12:34:56Z"
}
For more information about the API, please visit our Developer Documentation.
Rate Limits