# Rate Limit

## Rate Limiting Rules

| Dimension         | Rule                       |
| ----------------- | -------------------------- |
| Scope             | Per API Key                |
| Monthly quota     | 100,000 requests per month |
| Request frequency | 20 requests per minute     |

## Response Headers

| Header                | Description                                                          |
| --------------------- | -------------------------------------------------------------------- |
| X-RateLimit-Limit     | Maximum requests allowed in the current minute window                |
| X-RateLimit-Remaining | Remaining requests available in the current minute window            |
| X-RateLimit-Reset     | Reset time of the current minute window (Unix millisecond timestamp) |

## Rate Limit Exceeded

When the rate limit is triggered, a **429 Too Many Requests** response is returned:

```json
{
    "code": 42901,
    "message": "Rate limit exceeded",
    "details": {
        "limit": 20,
        "window": "60s",
        "retry_after": 45
    }
}
```


---

# 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://sosovalue-1.gitbook.io/sosovalue-api-doc/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.
