# Курсы валют

### Формула <a href="#metod-zaprosa" id="metod-zaprosa"></a>

Курсы формируются исходя из Bybit по фильтрам:

1\. Local Card (Green)

2\. Объём от 100 000.00 ₽

3\. Фильтр «только проверенные продавцы»

4\. Среднее число между 3 и 4 объявлением

### Метод запроса <a href="#metod-zaprosa" id="metod-zaprosa"></a>

GET

### URL запроса <a href="#url-zaprosa" id="url-zaprosa"></a>

/v2/merchant/currency-rates

### Параметры запроса <a href="#parametry-zaprosa" id="parametry-zaprosa"></a>

<table><thead><tr><th width="318">Название</th><th>Формат</th><th>Описание</th></tr></thead><tbody><tr><td>direction (опционально)</td><td>string</td><td>Фильтр по DEPOSIT/WITHDRAW</td></tr><tr><td>method  (опционально)</td><td>string</td><td>Фильтр по методу (card, sbp)</td></tr><tr><td>incomeCurrency  (опционально)</td><td>string</td><td>Фильтр по валюте</td></tr><tr><td>outcomeCurrency  (опционально)</td><td>string</td><td>Фильтр по валюте</td></tr></tbody></table>

**Пример запроса**

{% tabs %}
{% tab title="CURL" %}

```bash
curl --request GET \
  --url https://{{domain}}/v2/merchant/currency-rates 
```

{% endtab %}

{% tab title="PHP + GuzzleHttp" %}

```php
$httpClient = new \GuzzleHttp\Client();
$response = $httpClient->get('https://{{domain}}//v2/merchant/currency-rates');
```

{% endtab %}
{% endtabs %}

**Параметры ответа**

<table><thead><tr><th width="299">Название</th><th>Формат</th><th>Описание</th></tr></thead><tbody><tr><td>sourceRate</td><td>decimal</td><td>Курс</td></tr><tr><td>reversedSourceRate (опционально)</td><td>decimal</td><td>Обратный курс</td></tr><tr><td>method</td><td>string</td><td>card/sbp</td></tr><tr><td>direction</td><td>string</td><td>DEPOSIT/WITHDRAW</td></tr><tr><td>min</td><td>decimal</td><td>Минимальная сумма</td></tr><tr><td>max</td><td>decimal</td><td>Максимальная сумма</td></tr><tr><td>incomeCurrency</td><td>string</td><td>Валюта</td></tr><tr><td>outcomeCurrency</td><td>string</td><td>Валюта</td></tr></tbody></table>

**Пример ответа**

```json
[
  {
    "sourceRate": 92.88,
    "incomeCurrency": "RUB",
    "outcomeCurrency": "USDT",
    "method": "card",
    "direction": "DEPOSIT",
    "min": 500,
    "max": 1000000
  },
  {
    "sourceRate": 0.0108,
    "incomeCurrency": "USDT",
    "outcomeCurrency": "RUB",
    "method": "card",
    "direction": "DEPOSIT",
    "min": 500,
    "max": 1000000
  },
  {
    "sourceRate": 92.88,
    "incomeCurrency": "RUB",
    "outcomeCurrency": "USDT",
    "method": "sbp",
    "direction": "DEPOSIT",
    "min": 500,
    "max": 1000000
  },
  {
    "sourceRate": 0.0108,
    "incomeCurrency": "USDT",
    "outcomeCurrency": "RUB",
    "method": "sbp",
    "direction": "DEPOSIT",
    "min": 500,
    "max": 1000000
  },
  {
    "sourceRate": 92.88,
    "reversedSourceRate": 0.0108,
    "incomeCurrency": "RUB",
    "outcomeCurrency": "USDT",
    "method": "card",
    "direction": "WITHDRAW",
    "min": 500,
    "max": 1000000
  },
  {
    "sourceRate": 0.0108,
    "reversedSourceRate": 92.88,
    "incomeCurrency": "USDT",
    "outcomeCurrency": "RUB",
    "method": "card",
    "direction": "WITHDRAW",
    "min": 500,
    "max": 1000000
  }
]

```


---

# 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://merch-int.moneyhoney.io/api/kursy-valyut.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.
