PixelWave

Banks

Get the list of supported banks

GET /masterdata/bank/list

Returns the list of banks supported by the platform.

Authentication

Authorization: Bearer YOUR_JWT_TOKEN

Example Request

curl -X GET 'https://api.admin-pixelwave.com/masterdata/bank/list' \
  -H 'Authorization: Bearer YOUR_JWT_TOKEN' \
  -H 'Accept: application/json'

Success Response

{
  "result": {
    "status": "success",
    "x-request-id": "uuid",
    "codeError": "none",
    "codeErrorExt": "none",
    "message": ""
  },
  "data": [
    {
      "id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
      "name": "Сбербанк",
      "bankCode": "100000000111",
      "logoURL": "bank100000000111.png"
    },
    {
      "id": "b2c3d4e5-f6a7-8901-bcde-f12345678901",
      "name": "Т-Банк",
      "bankCode": "100000000004",
      "logoURL": "bank100000000004.png"
    }
  ],
  "totalNumberRecords": 0
}

Response Fields

FieldTypeDescription
iduuidBank unique identifier
namestringBank display name
bankCodestringSBP (NSPK) member id. Accepted in bankName on sbp payouts, interchangeably with name
logoURLstringBank logo file name, bank<bankCode>.png

Using this list

This classifier is what bankName is validated against on sbp payouts — either name or bankCode may be sent, and both resolve to the same bank. bankCode is the more stable of the two: display names get renamed, member ids do not. Some banks predate SBP or have left it and carry an empty bankCode; those can only be addressed by name.

For every other payout method bankName is free-form and is not checked against this list — see Identifying the bank.

Bank Codes Reference

Russian Banks

CodeBank
sberSberbank
tbankT-Bank (Tinkoff)
alfaAlfa-Bank
vtbVTB
ozonOzon Bank
gazpromGazprombank
psbPSB (Promsvyazbank)
raiffeisenRaiffeisen Bank
rosbankRosbank
mkbMKB (Moscow Credit Bank)
bspbBank Saint-Petersburg
rshbRosselkhozbank
ubrrUBRR
expobankExpobank
bcsbankBCS Bank
primoryeBank Primorye
solidarnostBank Solidarnost
svoibankSvoi Bank
mbankMBank

Azerbaijani Banks

CodeBank
kapital_bankKapital Bank
pasha_bankPASHA Bank
abbInternational Bank of Azerbaijan
bank_respublikaBank Respublika
rabitabankRabitabank

On this page