Guides
Banks
The ASPSP Information Service retrieves a list of all ASPSPs (banks and financial institutions) currently supported by the Open Payments platform. This allows your application to display available banks to the PSU before creating consents or initiating payments. In this guide, we will query Swedish banks via the isoCountryCodes
parameter.
For requests to the ASPSP Information Service API, you need an access token with scope
set to aspspinformation corporate
.
Get ASPSP List
Endpoint
GET /psd2/aspspinformation/v1/aspspshttp
Query Parameters
Name | Type | Description |
---|---|---|
isoCountryCodes | array | ISO Country Codes for the countries to get banks for. |
Request Headers
Name | Type | Description |
---|---|---|
X-Request-ID | string(uuid) | The ID of the request, unique to the call, as determined by the initiating party. |
curl -X GET "https://api.openbankingplatform.com/psd2/aspspinformation/v1/aspsps?isoCountryCodes=SE" \ -H "Accept: application/json" \ -H "Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCIgOiAiSldUIn0..." \ -H "Content-Type: application/json" \ -H "X-Request-ID: 0388a0b5-c8e4-4c37-89ae-058b74899170"bash
Response
{ "aspsps": [ { "bicFi": "ESSESESS", "name": "Skandinaviska Enskilda Banken AB", "logoUrl": "https://opeopenbanking.blob.core.windows.net/images/ESSESESS.jpg" }, { "bicFi": "HANDSESS", "name": "Handelsbanken", "logoUrl": "https://opeopenbanking.blob.core.windows.net/images/HANDSESS.svg" }, { "bicFi": "NDEASESS", "name": "Nordea Bank AB", "logoUrl": "https://opeopenbanking.blob.core.windows.net/images/NDEASESS.png" } ] }json
You now have a list of Swedish banks that you can use to create a UI that let your PSU select a bank to authenticate to.