This API is used to retrieve information about supported Account Servicing Payment Service Providers (ASPSP) that Open Payments Platform currently support. You will also get information about the specific ASPSP that will be used to call the other APIs.
Hosts
Available AUTH_HOST values
| Environment | URL |
|---|---|
| Sandbox | https://auth.sandbox.openbankingplatform.com |
| Production | https://auth.openbankingplatform.com |
Available API_HOST values
| Environment | URL |
|---|---|
| Sandbox | https://api.sandbox.openbankingplatform.com |
| Production | https://api.openbankingplatform.com |
Account Servicing Payment Service Provider (ASPSP) Flow
Acquire an access token for ASPSP Information
Code
This post will return a JSON object that looks like this:
Code
Bring the ACCESS_TOKEN forward to subsequent calls.
Get Country List
Code
Query parameters
isoCountryCodesa comma separated list of countries to retrieve. Optional.
Response
Code
Where the country code and name will be according to the ISO 3166-1 alpha-2 standard.
Get Country Details
Code
Path parameter
The COUNTRY_CODE parameter should be one of the codes in the ISO 3166-1 alpha-2 standard.
Response
Code
This is exactly the same as in the country list.
Get City List
Code
Query parameters
isoCountryCodesa comma separated list of countries to retrieve cities for. Optional.
The service will return all matches for the queries. So querying for SE and ba9dd929-1408-33a6-3ce2-bc45fcfaaa5c will result in both Stockholm and Helsinki being returned.
Response
Code
Get City Details
Code
Path parameter
CITY_ID should be one of the ids returned from the "get cities" endpoint.
Response
Code
This is exactly as one item in the list returned from the "get cities" endpoint.
Get ASPSP List
Code
Query parameters
isoCountryCodesa comma separated list of countries to retrieve ASPSPs for. Optional.
The service will return all matches for the query.
Response
Code
Get ASPSP Details
Code
Path parameter
BICFIASPSP identifier. It can be known upfront or it can be picked from the previous response.
Response
Code
This result contains contact details for the bank and information about how to access its services through Open Payments API.
The list of global payment products defines a subset of payment products supported for a specific bank. The models for each product is unified across all banks that support it.
The list of affiliatedAspsps includes any affiliated ASPSPs to the main entry that can be accessed when using the BICFI. Please see ASPSP specific documentation here for usage.
Read more about the payment initiation API.
Flows of usage
The APIs in this product does not interface directly with the banks but provide information to be able to access banks dynamically. We will add banks continuously and if you get the list of banks from this API you will get access to these new banks automatically without the need to do any coding.
A typical flow in the system may be like this:
- the user is presented a list of supported countries
- the user selects a country
- the system retrieves a list of banks for that country
- the user selects their bank
- the system moves on to one of the other APIs to get account information or to initiate a payment

