Limits
Rate limiting uses a 60-second sliding window. The limit is applied per API key (when a Bearer token is present) or per IP address (for unauthenticated endpoints).Response headers
Every response includes rate limit headers:X-RateLimit-Limit— the maximum number of requests in the windowX-RateLimit-Remaining— how many requests remain after this oneX-RateLimit-Reset— Unix timestamp when the oldest entry in the window expiresRetry-After— seconds until the oldest entry expires (only on 429)