List all financial institutions available, sorted alphabetically. The “id” fields in the response are to be used with the POST /accounts request.
The response of this endpoint is paginated. If the response is an empty list then you’ve reached the last page.
Headers
Name | Value |
---|---|
Authorization | Bearer {JWT} |
URL parameters
Name | Value |
---|---|
offset | integer. Default 0. |
limit | integer. Default 1000. Maximum allowed 1000. |
Response
Name | Value |
---|---|
institutions | JSON array. |
institutions[].id | string. To be used with POST /accounts. |
institutions[].name | string. Human readable name for the institutions. |
institutions[].oauth | boolean. True if the connection to this institution is according oAuth RFC. |
institutions[].logo | string. URL for the institution icon. |
Response status
Code | Value |
---|---|
200 | OK |
401 | Not authorized |
403 | Forbidden |