### How It Works
The rate limiter allows for requests to be made in bursts. For example, an
endpoint with a limit of `50 requests per 1 minute` does **not** strictly
mean you can only make one request every 1.2 seconds. Instead, you could:
* Make a burst of all 50 requests in the first 5 seconds of a minute. You
would then need to wait for the reset time indicated by the
`x-ratelimit-reset` header before making more requests.
* Pace your requests evenly, for example, by making one call every 1.2
seconds, ensuring you always stay within the limit.

