Javascript
import Ivy from '@getivy/node-sdk'; const client = new Ivy({ apiKey: 'My API Key', }); const banks = await client.banks.list(); console.log(banks.banks);
{ "banks": [ { "id": "<string>", "name": "<string>", "logo": "<string>", "market": [ "AF" ], "currencies": [ "EUR" ], "group": "<string>", "url": "<string>", "default": true, "test": true, "capabilities": [ "ais" ], "supportedPaymentSchemes": [ "SEPA_INSTANT" ] } ], "count": 123, "skip": 123, "hasNext": true }
Get a list of banks. You can filter by group, capability and market.
API key for authentication
Returns a list of supported Banks
The response is of type object.
object
Was this page helpful?