Getting Started
Capabilities
Payout Report
Charge
Banking
Bank
List Banks
Get a list of banks. You can filter by group, capability and market.
POST
/
api
/
service
/
banks
/
list
Copy
curl --request POST \
--url https://api.sand.getivy.de/api/service/banks/list \
--header 'Content-Type: application/json' \
--header 'X-Ivy-Api-Key: <api-key>' \
--data '{
"group": "<string>",
"capability": "ais",
"market": "DE",
"currency": "EUR",
"limit": 500.5,
"skip": 1,
"sessionId": "<any>"
}'
Copy
{
"banks": [
{
"id": "<string>",
"name": "<string>",
"logo": "<string>",
"market": [
"AF"
],
"currencies": [
"EUR"
],
"group": "<string>",
"url": "<string>",
"default": true,
"test": true,
"capabilities": [
"ais"
],
"supportedPaymentSchemes": [
"SEPA_INSTANT"
]
}
],
"count": 123,
"skip": 123,
"hasNext": true
}
Authorizations
API key for authentication
Body
application/json
Response
200 - application/json
Returns a list of supported Banks
The response is of type object
.
Copy
curl --request POST \
--url https://api.sand.getivy.de/api/service/banks/list \
--header 'Content-Type: application/json' \
--header 'X-Ivy-Api-Key: <api-key>' \
--data '{
"group": "<string>",
"capability": "ais",
"market": "DE",
"currency": "EUR",
"limit": 500.5,
"skip": 1,
"sessionId": "<any>"
}'
Copy
{
"banks": [
{
"id": "<string>",
"name": "<string>",
"logo": "<string>",
"market": [
"AF"
],
"currencies": [
"EUR"
],
"group": "<string>",
"url": "<string>",
"default": true,
"test": true,
"capabilities": [
"ais"
],
"supportedPaymentSchemes": [
"SEPA_INSTANT"
]
}
],
"count": 123,
"skip": 123,
"hasNext": true
}
Assistant
Responses are generated using AI and may contain mistakes.