Standard Throttling
Requests Limit: Partners are allowed up to 25 requests per second across all their API keys. Concurrency Limit: A maximum of 50 concurrent requests per partner is enforced to prevent overload.Handling Limits
When a request exceeds the allowed rate, a429
HTTP status code is returned, indicating that the request has been throttled. The response provides details on when to retry:
Retry-After
header offers the exact wait time before the next request attempt, simplifying automated retry logic.
Strategies for Managing Limits
Proactive Throttling: Clients should monitor their request frequency to stay within the imposed limits. Automated Retries: Implementing automatic retries with respect to theRetry-After
timeframe is recommended for handling 429
responses efficiently.