# Rate Limit

To ensure fair usage and maintain the stability of our service, the following rate limit policy is enforced:

## **Order Submission Rate Limit**

* Limit: Users can submit a maximum of **10 concurrent (simultaneous) orders within 10 minutes**.&#x20;
* Scope: The rate limit is applied per user. (Excluding regenerations)
* HTTP Status Code: If a user exceeds this rate limit, they will receive a `429 Too Many Requests` response.

{% hint style="info" %}
If you have any issues with the current rate limit or are looking for a unique rate limit for your business operations, [feel free to schedule a meeting here](https://calendly.com/aihomedesign/30min).&#x20;

Also, you can send your request to <support@aihomedesign.com>.&#x20;
{% endhint %}

## Response

```
{
  "error": "rate-limit exceeded, 10 generates per 10 minutes only",
}
```

## Best Practices to Avoid Rate Limit Errors

* Implement client-side rate limiting.
* Handle `429` responses by pausing for the appropriate duration.


---

# 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://doc.aihomedesign.com/usage-limits-and-policies/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.
