Just visit http://iban-validator-release.herokuapp.com/
To validate your IBAN just simply make GET
request at endpoint api
with query param ?iban={YOUR_IBAN}
!
Base URL for validation: https://iban-validator.herokuapp.com/api
GET /api
GET /api?iban=DE32500105172467452445
{
"iban": "DE32500105172467452445",
"countryISO": "DE",
"country": "Germany",
"valid": true,
"timestamp": 1611491200
}
Key | Type | Description |
---|---|---|
iban | String | IBAN number |
countryISO | String | Country ISO ex. DE for Germany |
country | String | Country name |
valid | bool | Validated IBAN |
timestamp | Timestamp | Timestamp of validation |
$ git clone https://github.com/jkbkupczyk/iban-validator