Rate Limiting
To ensure fair usage of our API and to prevent abuse, we implement rate limiting. The current rate limit is set to 60 requests per minute.
Rate Limit Headers
When making a request to our API, you will receive the following headers related to rate limiting:
- ratelimit: Provides details about the current rate limit status.
- limit=60 - The maximum number of requests allowed per minute.
- remaining=60 - The number of requests remaining in the current time window.
- reset=60 - The time (in seconds) until the rate limit window resets.
- ratelimit-policy: Indicates the rate limit policy in effect.
- 60;w=60 - Indicates that the rate limit is 60 requests per minute, with a window size of 60 seconds.
How to Use This Information
- Monitor Your Usage: Check the remaining value to see how many requests you have left before hitting the rate limit. This helps you avoid interruptions in service.
- Plan Requests: If you are close to the limit, you may need to space out your requests or optimize your API usage.
- Plan Requests: If you are close to the limit, you may need to space out your requests or optimize your API usage.
By adhering to these limits, you help us provide a stable and reliable service for all users.