Rate Limit
All APIs are subjected to rate limit and throttling. Different policies are applied for different APIs.
Default Limit
The default API rate limit is 1000 requests per hour.
note
API keys offered for trial purpose may have lower rate limit.
API Specific Limit
No API specific limits are defined currently.
How to handle API rate limits
API servers will provide HTTP response headers with rate limit information
x-ratelimit-limit: 1000
x-ratelimit-remaining: 969
x-ratelimit-reset: 1710242398
API clients must use this information to implement client side retries and error handling.