> For the complete documentation index, see [llms.txt](https://developers.copyfactory.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://developers.copyfactory.io/getting-started/overview/rate-limiting.md).

# Rate limiting

#### Handling rate limts <a href="#handling-rate-limts" id="handling-rate-limts"></a>

A  technique for handling rate limiting is to watch for `429` status codes and build in a retry mechanism. The retry mechanism should follow an exponential backoff schedule to reduce request volume when necessary.

When you are being rate limited you will receive a 'Retry-After' key in the response headers with how many seconds you should wait before trying again.

The current rate limit is **200 per minute.**

<br>
