With this trick, you can validate bank IBAN and get the bank information using IBANAPI service. To start, you will need to get a free API key from here https://ibanapi.com/get-api Then you can install the package using this command ``composer require ibanapi/api``
$ibanApi = new IbanApi\Api("API_KEY");
$result = $ibanApi->validateIBAN("EE471000001020145685");
print_r(json_decode($result,true));