# Limitation

At Laevitas Api GateWay v1.0, we implement certain limitations to ensure fair usage, maintain the performance, and protect our services. This page provides details on the different types of limitations and how to handle them in your applications.

## Rate Limiting

Rate limiting restricts the number of API calls a user can make within a specific time frame.

### Rate Limits

* **All Users**: 240 requests per 60 seconds.

### Handling Rate Limits

1. **Implement Retries**: If you hit a rate limit, consider implementing a retry mechanism with exponential backoff.
2. **Spread Out Requests**: If possible, spread out your requests to avoid hitting the rate limit in short bursts.

### Exceeding Rate Limits

If you exceed the rate limits, the API will return a `429 Too Many Requests` response. It's crucial to handle this response in your application and implement a wait or retry mechanism.

## Historical Data Limitation

For historical data, we have a pagination system in place. Each page has a limitation on the number of items it can display.

* **Limit**: 144 items per page.

To access more historical data, you'll need to navigate through the pagination system, ensuring you don't exceed the item limit per page.

## Questions?

If you have questions about our limitations or need assistance, please [contact our support team](https://www.laevitas.ch/contact/).


---

# 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.laevitas.ch/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.
