The limits
10 requests per second, with a burst of 20. The bucket is per API key, so one key’s traffic cannot exhaust another’s.The headers
Every response carries:There is no
X-RateLimit-Reset. The bucket refills continuously rather than at
a fixed boundary, so there is no instant to report.When you exceed it
429, with a Retry-After header in seconds. A rate-limited request is never
charged — it did no work.
Back off and retry. Retry-After is the honest answer; exponential backoff on
top of it is polite.

