-
Notifications
You must be signed in to change notification settings - Fork 56
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Find BIC from IBAN #8
Comments
Hi Marc, any idea how to store the related data? There are thousands of BICs out there. Best regards |
Hi @kayman-mk, The only reliable way I know to find a BIC from an IBAN is by using the SWIFT IBAN Plus Directory. This directory is provided by SWIFT, which is the IBAN registrar. With it you can match IBAN to various institutions information (including BIC). The SWIFT IBAN Plus Directory is regularly updated by SWIFT with the latest data and is accessible as a file or via WebService APIs. But unfortunately it is not available for free. If you have access to this file you can store in a database or in memory the following information :
The purpose of this issue is to provide a basic support for this solution (but not the data to make it work - because it is not free). Hope this helps ! |
Oh yes, this is also an interesting point. Writing an adapter so this library could use the data if it is provided at runtime. I guess they have some examples or API descriptions online (didn't check this for now). So we could implement something in JBanking. |
Add support for finding a BIC (and bank related information) from an IBAN.
The text was updated successfully, but these errors were encountered: