I would use openiban.com to validate IBANs and to get additional information about.
I am using the following REST-Url https://openiban.com/validate/DE48500105170648479930?getBIC=true&validateBankCode=true
Thats the result in browser:
{ "valid": true, "messages": [ "Bank code valid: 50010517" ], "iban": "DE48500105170648479930", "bankData": { "bankCode": "50010517", "name": "ING-DiBa", "zip": "60628", "city": "Frankfurt am Main", "bic": "INGDDEFFXXX" }, "checkResults": { "bankCode": true } }
How can I put it in an array to use each entry separately with PHP?
Best sebahier
I tried to use curl, but I didn't get an array for further use.