POST
/
api
/
service
/
banks
/
list
curl --request POST \
  --url https://api.sand.getivy.de/api/service/banks/list \
  --header 'Content-Type: application/json' \
  --data '{
  "group": "<string>",
  "capability": "ais",
  "market": "DE",
  "currency": "EUR",
  "sessionId": "<string>"
}'
{
  "banks": [
    {
      "id": "<string>",
      "name": "<string>",
      "logo": "<string>",
      "market": [
        "AF"
      ],
      "currencies": [
        "EUR"
      ],
      "group": "<string>",
      "test": true,
      "default": true,
      "capabilities": [
        "pis"
      ],
      "supportedPaymentSchemes": [
        "SEPA_INSTANT"
      ]
    }
  ]
}

Body

application/json

Response

200 - application/json
Returns a list of supported Banks

The response is of type object.