# API Rate Limit

For obvious security reasons we prevent users to perform too many API requests and in this page we will list the different limitations.

The rate limit applies mainly to POST operations, GET endpoints are not limited.

## General Rules

```json
[
    {
        "Endpoint": "post:/v2/Authentication/SignUp",
        "Period": "1m",
        "Limit": 1
    },
    {
        "Endpoint": "post:/v2/Authentication/SignIn",
        "Period": "1m",
        "Limit": 5
    },
    {
        "Endpoint": "post:/v2/Orders/Validate",
        "Period": "1s",
        "Limit": 1
    },
    {
        "Endpoint": "post:/v2/Orders/Create",
        "Period": "15s",
        "Limit": 1
    },
    {
        "Endpoint": "post:/v2/Profile",
        "Period": "5s",
        "Limit": 1
    },
    {
        "Endpoint": "post:/v2/Tickets",
        "Period": "1m",
        "Limit": 1
    },
    {
        "Endpoint": "post:/v2/TicketAnswers/*",
        "Period": "1m",
        "Limit": 3
    },
    {
        "Endpoint": "post:/v2/Credentials/*",
        "Period": "1m",
        "Limit": 5
    },
    {
        "Endpoint": "post:/v2/Comments/*",
        "Period": "1m",
        "Limit": 5
    },
    {
        "Endpoint": "get:/v2/Renews/Execute/*",
        "Period": "30s",
        "Limit": 1
    },
    {
        "Endpoint": "get:/v2/Insight/*",
        "Period": "30s",
        "Limit": 1
    }
]
```


---

# 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.hypeproxy.io/basic-concepts/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.
