Rate limit headers
The headers on every response that tell you where you stand against your limit.
| Header | Type | Description |
|---|---|---|
X-RateLimit-Limit |
integer | The maximum number of requests allowed in the current 60-second window. |
X-RateLimit-Remaining |
integer | The number of requests still available before the limit is reached. `0` on a 429. |
Retry-After |
integer | Number of seconds to wait before the next request will be accepted. Use this value to schedule your retry rather than a fixed sleep. Only present on `429` responses. |
X-RateLimit-Reset |
integer | Unix timestamp (seconds since the epoch) at which the current rate-limit window resets. Only present on `429` responses. |