Retrieve Banks

GET {{base_url}}/banking/v2/banks

Retrieve a list of all available banks with their corresponding bank ids and logos. Bank id is required to create an auth for a bank, or to retrieve accounts, balances, and transactions for a particular bank.

Attributes

FieldTypeDescription
idintegerUnique identifier for the bank
namestringName of the bank
logostring (link for logo in svg format)Link with bank's logo
pngLogostringBank logo URL
rdfNamestringBank name
aisStatusobjectStatus of Account information services (i.e. downloading accounts, balances, transactions etc.) consent
aisStatus->statusstringstatus {Up, Down}
aisStatus->lastTestedDateTimeLast time when AIS connection was tested
aisStatus->lastSuccessfulDateTimeLast time when AIS connection was successful
pisStatusobjectStatus of Payment information services consent
pisStatus->statusstringstatus {Up, Down}
pisStatus->lastTestedDateTimeLast time when PIS connection was tested
pisStatus->lastSuccessfulDateTimeLast time when PIS connection was successful

Query Parameters

FieldTypeDescription
pageIdstringPage offset of results
typestring{Account, Payment}

Request Params

KeyDatatypeRequiredDescription
pageIdnullPage offset of results

HEADERS

KeyDatatypeRequiredDescription
Content-Typestring
X-Api-Keystring
X-Partner-Idstring
Authorizationstring

RESPONSES

status: OK

{"results":[{"id":31,"name":"Monzo","logo":"bank logo","pnglogo":"https://bank-logos.tomatopay.co.uk/icon_Monzo.png","rdfName":"MONZO","aisStatus":{"status":"Up","lastTested":"2021-04-12T08:39:15.590Z","lastSuccessful":"2021-04-12T08:39:15.590Z"},"pisStatus":{"status":"Up","lastTested":"2021-04-12T09:06:10.868Z","lastSuccessful":"2021-04-12T09:06:13.983Z"}},{"id":7,"name":"Natwest","logo":"bank logo","pnglogo":"https://bank-logos.tomatopay.co.uk/icon_Natwest.png","rdfName":"Natwest","aisStatus":{"status":"Up","lastTested":"2021-04-12T08:39:15.590Z","lastSuccessful":"2021-04-12T08:39:15.590Z"},"pisStatus":{"status":"Up","lastTested":"2021-04-12T09:06:10.868Z","lastSuccessful":"2021-04-12T09:06:13.983Z"}}],"links":{}}