> 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/en/mass-payouts/getting-a-list-of-banks-that-are-part-of-the-sbp-api.md).

# 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:

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

method    = getSbpBankList
login     = email account
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>
