# Rate limit

The Forest Admin API utilizes rate limiting to ensure optimal performance, prevent abuse, and guarantee fair access for all users. This mechanism restricts the number of API requests you can make within a specific timeframe.

## Rate limit details

* Limit: 300 requests per minute
* Window: fixed window (all requests within a one-minute interval are counted)
* Scope: This limit applies to both user credentials and IP address.

{% hint style="info" %}
Two users sharing the same IP address will be subject to the same rate limit counter.
{% endhint %}

## Error handling

Upon encountering a rate limit error, the server will respond with a specific HTTP status code and header:

* HTTP Status Code: `429`. This code signifies that your client (user or IP) has surpassed the allowed request quota within the defined window.
* Header: `Retry-After`. This header accompanies the 429 code and suggests a waiting period before retrying the request. The value is specified **in seconds**.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.forestadmin.com/public-api/rate-limit.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
