# Getting a list of banks that are part of the SBP (API)

To create a SBP payment, you will need to specify the identifier of the SBP participating bank in the request. You can get the identifier using this API request:

```
https://unitpay.ru/api?
method=getSbpBankList
params[login]=email account
params[secretKey]=account secret key
```

**Обязательные параметры:**

<table><thead><tr><th width="149.888916015625"> name</th><th width="166">type</th><th>description</th></tr></thead><tbody><tr><td><strong>login</strong></td><td>string</td><td>Email account in the UnitPay system</td></tr><tr><td><strong>secretKey</strong></td><td>string</td><td>Account secret key, available in <a href="https://unitpay.ru/partner/profile/edit"><strong>profile</strong> settings</a></td></tr></tbody></table>

#### Example of a successful response:

```
{
    "result": [
        {
            "member_id": "100000000001",
            "name": "Газпромбанк",
            "name_en": "Gazprombank"
        },
        {
            "member_id": "100000000002",
            "name": "Золотая Корона (РНКО Платежный Центр)",
            "name_en": "Korona Pay (Credit Union Payment Center)"
        }
    ]
}
```

#### Example of an erroneous answer:

```
{
    "error": {
        "message": "Incorrect authorization parameters",
        "code": -32000
    }
}
```

<table><thead><tr><th width="127"> name</th><th width="620.3333740234375">decription</th></tr></thead><tbody><tr><td>3200</td><td>Incorrect authorization parameters. Check the correctness of the specified data</td></tr></tbody></table>


---

# 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://help.unitpay.ru/en/mass-payouts/getting-a-list-of-banks-that-are-part-of-the-sbp-api.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.
