curl --request GET \
--url https://client-api.dev.finhost.io/iban/validate/{iban} \
--header 'Authorization: Bearer <token>'{
"result": "passed",
"checks": {
"checks": [
"<string>"
],
"lengthCheck": "passed",
"accountCheck": "passed",
"bankCodeCheck": "passed",
"ibanChecksumCheck": "passed"
},
"bicCandidates": [
{
"bic": "<string>",
"zip": "<string>",
"city": "<string>",
"wwwcount": 123,
"sampleurl": "<string>"
}
],
"bankData": {
"bank": "<string>",
"bankAddress": "<string>",
"bankStreet": "<string>",
"bankCity": "<string>",
"bankState": "<string>",
"bankPostalCode": "<string>"
},
"supportedTransferTypes": {
"sepaCreditTransfer": true,
"sepaCreditTransferInstant": true,
"sepaDirectDebit": true
},
"balance": 123
}curl --request GET \
--url https://client-api.dev.finhost.io/iban/validate/{iban} \
--header 'Authorization: Bearer <token>'{
"result": "passed",
"checks": {
"checks": [
"<string>"
],
"lengthCheck": "passed",
"accountCheck": "passed",
"bankCodeCheck": "passed",
"ibanChecksumCheck": "passed"
},
"bicCandidates": [
{
"bic": "<string>",
"zip": "<string>",
"city": "<string>",
"wwwcount": 123,
"sampleurl": "<string>"
}
],
"bankData": {
"bank": "<string>",
"bankAddress": "<string>",
"bankStreet": "<string>",
"bankCity": "<string>",
"bankState": "<string>",
"bankPostalCode": "<string>"
},
"supportedTransferTypes": {
"sepaCreditTransfer": true,
"sepaCreditTransferInstant": true,
"sepaDirectDebit": true
},
"balance": 123
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.