Resolve a BIC
curl -X POST https://ibangen.com/api/v1/bank-intelligence/lookup \
-H 'X-API-Key: YOUR_KEY' \
-H 'Content-Type: application/json' \
-d '{"type":"bic","value":"COBADEFFXXX"}'
Search BIC and domestic bank identifiers, inspect canonical institution records, and receive source, freshness and match context for payment QA, routing normalization and bank-data workflows.
curl -X POST https://ibangen.com/api/v1/bank-intelligence/lookup \
-H 'X-API-Key: YOUR_KEY' \
-H 'Content-Type: application/json' \
-d '{"type":"bic","value":"COBADEFFXXX"}'
{
"success": true,
"results": [{
"query": {"type": "bic", "value": "COBADEFFXXX"},
"matches": [{"name": "Commerzbank AG", "country_code": "DE"}]
}],
"registry_generated_at": "2026-08-27T00:00:00Z"
}
Aliases and identifiers resolve to a canonical institution record instead of leaving each integration to normalize names alone.
Responses preserve registry source and freshness context so teams can audit where a bank fact came from.
Unsupported or conflicting targets return no match instead of presenting an inferred institution as authoritative.
It resolves BIC and supported domestic identifiers from the currently published source catalog. Available types vary by country and source.
The API returns an explicit no-match or bounded candidate response. It does not silently guess a bank identity.
Yes. Bank intelligence responses and linked registry pages expose source and freshness context for supported records.