Getting Started
Capabilities
Payout Report
Charge
Banking
Bank
Retrieve a Bank
Retrieve a bank object by its id. The id is a unique identifier of the bank within Ivy.
POST
/
api
/
service
/
banks
/
details
Copy
Ask AI
curl --request POST \
--url https://api.sand.getivy.de/api/service/banks/details \
--header 'Content-Type: application/json' \
--data '{
"id": "<string>"
}'
Copy
Ask AI
{
"id": "<string>",
"name": "<string>",
"logo": "<string>",
"market": [
"AF"
],
"currencies": [
"EUR"
],
"group": "<string>",
"url": "<string>",
"default": true,
"test": true,
"capabilities": [
"ais"
],
"supportedPaymentSchemes": [
"SEPA_INSTANT"
]
}
Body
application/json
Response
200 - application/json
Returns bank details
The response is of type object
.
Copy
Ask AI
curl --request POST \
--url https://api.sand.getivy.de/api/service/banks/details \
--header 'Content-Type: application/json' \
--data '{
"id": "<string>"
}'
Copy
Ask AI
{
"id": "<string>",
"name": "<string>",
"logo": "<string>",
"market": [
"AF"
],
"currencies": [
"EUR"
],
"group": "<string>",
"url": "<string>",
"default": true,
"test": true,
"capabilities": [
"ais"
],
"supportedPaymentSchemes": [
"SEPA_INSTANT"
]
}
Assistant
Responses are generated using AI and may contain mistakes.