Banks
You can use the following GET endpoint to retrieve available bank names:
GET https://api.transavex.com/api/v1/bank/available?country=RU
Where country is a required parameter in a form of an alpha-2 code.
Request example
curl --request GET \
--url 'https://api.transavex.com/api/v1/bank/available?country=RU' \
--header 'Content-Type: application/json' \
--header 'X-Client-Id: {{token}}' \
--header 'X-Signature: {{signature}}'
Response example
[
{
"id": 24,
"name": "Газпромбанк",
"alpha2": "RU",
"nspk": "100000000001"
},
{
"id": 27,
"name": "Россельхозбанк",
"alpha2": "RU",
"nspk": "100000000020"
},
...
]