# Limiters

iyzico rate limiters, from a fintech perspective, play a crucial role in maintaining the security, reliability, and stability of financial services provided through HTTP-based APIs.

### Fundamental Rate Limiters Table

Table below represents list of essentials services

| Method                  | Limit | Time Frame |
| ----------------------- | ----- | ---------- |
| initialize Payment      | 50    | per Minute |
| retrieve Payment Result | 50    | per Minute |
| initialize HPP          | 100   | per Minute |
| retrieve HPP Result     | 100   | per Minute |
| refund                  | 50    | per Minute |
| cancel                  | 50    | per Minute |

{% hint style="info" %}
In case you exceed the limit, the response message will be as below:
{% endhint %}

```http
curl -X POST "BASE_URL" \
     -H "Content-Type: application/json" \
     -d '{
           "status": "failure",
           "errorCode": 50000,
           "errorMessage": "Request Limit Exceeded",
           "locale": "en"
         }'

```


---

# 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.iyzico.com/en/getting-started/preliminaries/limiters.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.
