How do I call the IBAN-Test API?
What does an API request look like?
Use your API token as a Bearer token in the HTTP header.
Authorization: Bearer YOUR_API_TOKEN
Base URL:
https://www.iban-test.eu/api/IbanTest
Validate an IBAN:
GET /v2/iban/validate/{iban}
curl -H "Authorization: Bearer YOUR_API_TOKEN" \
"https://www.iban-test.eu/api/IbanTest/v2/iban/validate/DE89%203704%200044%200532%200130%2000"
Validate a BIC:
GET /v2/bic/validate/{bic}
curl -H "Authorization: Bearer YOUR_API_TOKEN" \
"https://www.iban-test.eu/api/IbanTest/v2/bic/validate/COBADEFFXXX"
Validate a bank account:
GET /v2/bank-account/validate?bankcode=37040044&accountnumber=532013000
Generate an IBAN:
GET /v2/iban/generate?countrycode=DE&bankcode=37040044&accountnumber=532013000
The complete technical reference with parameters, response fields and test functionality is available in the API documentation.
