The rate limit is set to 100 requests per 10 seconds per IP address. The response headers for any request will include a X-RateLimit-Limit header with the rate limit value, a X-RateLimit-Remaining header with the number of requests remaining in the current minute, and a X-RateLimit-Reset header with the timestamp when the rate limit will reset. An example response for a request that exceeds the rate limit:
HTTP/1.1 429 Too Many Requests
Content-Type: application/json
X-RateLimit-Limit: 100
X-RateLimit-Remaining: 0
X-RateLimit-Reset: 1679481600
An example response for a request that is within the rate limit:
HTTP/1.1 200 OK
Content-Type: application/json
X-RateLimit-Limit: 100
X-RateLimit-Remaining: 99
X-RateLimit-Reset: 1679481600