> For the complete documentation index, see [llms.txt](https://help.unitpay.ru/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://help.unitpay.ru/unitpay-management/commissions.md).

# Комиссии проекта (API)

Вы можете уточнить комиссии конкретного проекта с помощью API запроса:

```bash
GET https://unitpay.ru/api

method    = getCommissions
projectId = 123456
login     = partner@example.com
secretKey = sk_live_2YQt9m
```

<table data-header-hidden><thead><tr><th width="211.7777099609375"></th><th width="135.99995930989581">Значение</th><th>Описание</th></tr></thead><tbody><tr><td><strong>projectId</strong></td><td>число</td><td>ID проекта в системе  UnitPay</td></tr><tr><td><strong>login</strong></td><td>строка</td><td>Email аккаунта в системе UnitPay</td></tr><tr><td><strong>secretKey</strong></td><td>строка</td><td>Секретный ключ партнера, доступен в <strong>настройках аккаунта</strong> Unitpay</td></tr></tbody></table>

#### Пример успешного ответа:

```
{
    "result": {
        "webmoney": 2,
        "card": 3.5,
        "card_not_rf": 10,
        "sbp": 0.7
    }
}
```

<table data-header-hidden><thead><tr><th width="226.55560302734375"></th><th width="184.88887532552081">Значение</th><th>Описание</th></tr></thead><tbody><tr><td>name</td><td>текст</td><td>Наименование метода оплаты</td></tr><tr><td>commission</td><td>число</td><td>Полная комиссия за проведение платежа</td></tr></tbody></table>

#### Пример ошибочного ответа:

```
{
    "error": {
        "message": "Неверные параметры авторизации",
        "code": -32000
    }
}
```

**Описание возможных ошибок:**

<table data-header-hidden><thead><tr><th width="251.77783203125"></th><th>Описание</th></tr></thead><tbody><tr><td><strong>-32000</strong></td><td>Неверные параметры авторизации (логин, секретный ключ)</td></tr><tr><td><strong>-32602</strong></td><td>Неверные параметры запроса</td></tr><tr><td><strong>-32603</strong></td><td>Внутренняя техническая ошибка</td></tr></tbody></table>


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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://help.unitpay.ru/unitpay-management/commissions.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.
