ASPSPs
Open Banking Providers
Used by TPP for obtaining the list of ASPSPs which support OpenBanking standard.
CURL
![]()
curl -i \
-H "Content-Type: application/json" \
-H "Client-Id: client_application_identifier" \
-H "x-fapi-interaction-id: some-uuid" \
-d 'eyJhbGciOiJQUzI1NiIsImtpZCI6InRlc3QifQ.e30.jIzGK5G2S_0qwgZDGQaw5VnptI_dMGTX3QZ6lM-EyLLWMvv98SsXCo5Gv9QLjyKy3Yk-MMOm5mUFKaviV3TIHoolTWMHnfvMHeB9gaUFqeizDQH8sE7OyWI9KskaTzxBkBRMSnPvz1YaIrZ11mt0ght6zmGVbrO1LhrVfOm37fuwjxbKCuWGFxm9cR6CDxO5cZqJ-W7lCGv7jjjiFtGc_oiaWlOFqoCtTbOHG11CVohSf36FJNhw8QVuzWKPYP6S6kbd5KLW4VJlMTHKeo2WLt2DuE5goJw-Y_tA6NBsSyYDMkqztp2Jw2Xrj_pDo32Qf58oX2rygHLUWcvyUTuiUQ' \
-X GET "/api/open-banking/v3.1/aspsps"
Example of response
![]()
{"Data":[{"AspspCode":"ob_demobank","Name":"Open Banking Demobank","Status":"live","LogoUrl":"https://priora.saltedge.com/images/demobank_logo.svg","CountryCode":"XF","SupportedFlows":["AIS","PIS"],"SandboxCredentials":[{"AuthorisationType":"oauth","RequiredFields":[{"Code":"required_field","Example":"reqField"}],"MfaFields":[{"Code":"mfa_field","Example":"mfaField"}]}],"PisParams":{"ObPaymentsProducts":["domestic-payments","international-payments"],"DomesticInstruments":["UK.OBIE.BACS","UK.OBIE.CHAPS","UK.OBIE.FPS"],"InternationalInstruments":["UK.OBIE.SWIFT"],"CreditorIdentificationSchemes":["UK.OBIE.SortCodeAccountNumber","UK.OBIE.IBAN","UK.OBIE.PAN","UK.OBIE.BBAN"]}}]}
Request
GET
/api/open-banking/v3.1/aspsps
Headers
| Header | Type | Description |
|---|---|---|
Content-Type
|
string, optional | The media type of the body of the request. Default value: application/json |
x-fapi-interaction-id
|
string, optional | An RFC4122 UID used as a correlation Id. |
Client-Id
|
string, required | Client application identifier. Can raise: ResourceNotFound |
Request parameters
Response headers
| Header | Type | Description |
|---|---|---|
Content-Type
|
string, required | The media type of the body of the request. |
Retry-After
|
integer, optional | Amount of time in seconds after which Salt Edge PSD2 Compliance Solution resends the previously failed request. |
Response
Upon successful request, 200 status code will be returned. See ‘Related Errors’ table for other possibilities.
Related Errors
| Class | Code | Description |
|---|---|---|
| ResourceNotFound | 400 | Specified resource doesn't exist. |
×