GET
/
iban
/
validate
/
{iban}
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
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

iban
string
required

Response

200
application/json
200 response

The response is of type object.