GET /financial_institutions

Get a list with all supported financial institutions..

Responses

  • 200

    List of all supported financial institutions.

    Hide response attributes Show response attributes array[object]
    • name string

      Name of a financial institution.

    • code string

      code name of a financial institution.

  • 422

    The request is not valid.

    Hide response attributes Show response attributes object
    • error_message string

      Human readable error message.

    • error string

      Error code & short status

GET /financial_institutions
curl \
 -X GET https://link.goscore.me/finid-api/1.0/financial_institutions \
 -H "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
[
  {
    "name": "SVEA Finans",
    "code": "no-svea"
  }
]
Response examples (200)
[
  {
    "name": "SVEA Finans",
    "code": "no-svea"
  }
]
Response examples (422)
{
  "error_message": "Invalid requeet",
  "error": "ER-001"
}
Response examples (422)
{
  "error_message": "Invalid requeet",
  "error": "ER-001"
}