Skip to content

BANKS/Connect Providers API

Not all banks are the same. Via the BANKS/Connect Providers API you get access to a comprehensive, machine-readable configuration database of banks and service providers supported by BANKS/Connect.

In addition to primary data such as name, banking group, bank code (BLZ), and BIC, you receive detailed information on login methods to help you optimize the user experience when setting up bank access.

INFO

The entry point to BANKS/Connect Providers API is https://banksapi.io/providers/v2.

Example Response

json
[
  {
    "id": "00000000-0000-0000-0000-000000000000",
    "name": "Demo Provider",
    "consumerRelevant": true,
    "group": "demo",
    "blz": "12345678",
    "bic": "DEMO1234",
    "relations": [
      {
        "rel": "self",
        "href": "https://banksapi.io/providers/v2/00000000-0000-0000-0000-000000000000"
      },
      {
        "rel": "logo",
        "href": "https://banksapi.io/providers/v2/demo.svg"
      }
    ],
    "capabilities": [
      "KONTEN",
      "KARTEN",
      "DEPOTS"
    ],
    "channels": [
      [
        "GIROKONTO"
      ],
      [
        "KREDITKARTE",
        "TAGESGELDKONTO"
      ]
    ],
    "authenticationInfo": {
      "loginHint": "Der Demo Provider bietet drei Zugänge demo1/demo1, demo2/demo2 und demo3/demo3",
      "fields": [
        {
          "fieldkey": "userid",
          "label": "Demo-User",
          "secret": false,
          "hint": "demo1, demo2 oder demo3",
          "format": "^.{1,50}$"
        },
        {
          "fieldkey": "pin",
          "label": "Demo-Passwort",
          "secret": true,
          "hint": "demo1, demo2 oder demo3",
          "format": "^.{1,50}$"
        }
      ]
    }
  }
]

API Reference