Rate Limits
The bitbybit Open API enforces rate limits to ensure fair usage and platform stability.Current Limits
| Limit | Value |
|---|---|
| Requests per minute per API key | 100 |
Rate Limit Headers
Every API response includes standard rate limit headers:| Header | Description |
|---|---|
RateLimit-Limit | Maximum requests allowed in the current window |
RateLimit-Remaining | Remaining requests in the current window |
RateLimit-Reset | Seconds until the rate limit window resets |
Handling Rate Limits
When you exceed the rate limit, you’ll receive a429 response:
- Check the
RateLimit-Resetheader for when to retry - Use exponential backoff: wait 1s, then 2s, then 4s, etc.
- Add random jitter to avoid thundering herd

