> For the complete documentation index, see [llms.txt](https://docs.algenta.ai/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.algenta.ai/http-api/rate-limits.md).

# Rate limits & quotas

Algenta enforces per-plan **quotas** (monthly usage) and per-endpoint **rate limits** (abuse protection). The values below are the authoritative numbers the engine enforces. Plan tiers are on [Plans, billing & credits](/deploy-and-operate/billing.md).

| Setting                                | Default   | What it limits                                    |
| -------------------------------------- | --------- | ------------------------------------------------- |
| `API_KEY_CREATE_RATE_LIMIT_PER_MINUTE` | `10`      | API-key creations per minute.                     |
| `LOGIN_RATE_LIMIT_PER_MINUTE`          | `10`      | Login attempts per minute.                        |
| `MAX_BATCH_ITEMS_FREE`                 | `10`      | Maximum batch items on the Free plan.             |
| `MAX_BATCH_ITEMS_PRO`                  | `100`     | Maximum batch items on the Pro plan.              |
| `MAX_PAYLOAD_SIZE_BYTES`               | `1048576` | Maximum request body size.                        |
| `MAX_SYNC_RUNS`                        | `100000`  | Maximum simulation runs in a synchronous request. |
| `MOJO_MAX_CONCURRENT`                  | `4`       | —                                                 |
| `QUOTA_DEVELOPER_SIMULATIONS_MONTH`    | `10000`   | Monthly simulations on the Developer plan.        |
| `QUOTA_FREE_SIMULATIONS_MONTH`         | `500`     | Monthly simulations on the Free plan.             |
| `QUOTA_PRO_SIMULATIONS_MONTH`          | `100000`  | Monthly simulations on the Pro plan.              |
| `SIGNUP_MAX_PER_DAY_PER_EMAIL`         | `2`       | Sign-ups per day per email.                       |
| `SIGNUP_RATE_LIMIT_PER_MINUTE`         | `3`       | Sign-up attempts per minute (abuse protection).   |
| `WEBHOOK_MAX_RETRIES`                  | `3`       | —                                                 |

## Handling limits

{% hint style="info" %}
A quota or rate-limit rejection returns the standard error envelope (for example `quota_exceeded` or a `429`). Back off and retry with jitter on `429`; for `quota_exceeded`, upgrade the plan or wait for the monthly reset. See [Error codes](/http-api/errors.md).
{% endhint %}

## Related

{% content-ref url="/pages/LtqjHw8bwZ1rd0qQ3xgl" %}
[Usage & limits](/deploy-and-operate/billing.md)
{% endcontent-ref %}


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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, and the optional `goal` query parameter:

```
GET https://docs.algenta.ai/http-api/rate-limits.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
