Skip to content
Eden Engine

IBAN to Bank Name & BIC Lookup

omnial/x402-iban-to-bank

Given a single IBAN, returns whether it is a well-formed IBAN, the bank name, BIC/SWIFT code, branch, and country tied to it -- a pure algorithmic bank-code lookup, not a live account check.

activeper callv1
Provider
Web & Business Data Network
Category
company-enrichment
Provider price
$0.0324324 per call
Latency p50 / p95
— / —
Success rate
—
Verified
—

Provider list price; Omnial MCP charges provider cost plus a platform markup on top.

Contract

input_schema.json
{
  "type": "object",
  "required": [
    "iban"
  ],
  "properties": {
    "iban": {
      "type": "string",
      "description": "IBAN number to look up"
    }
  },
  "additionalProperties": false
}
output_schema.json
{
  "type": "object",
  "properties": {
    "bic": {
      "type": "string",
      "description": "BIC/SWIFT code for the resolved bank. Observed present on a valid IBAN; not present on a malformed one."
    },
    "iban": {
      "type": "string",
      "description": "The IBAN exactly as submitted, echoed back."
    },
    "error": {
      "type": "string",
      "description": "Human-readable reason the IBAN failed validation (e.g. wrong length for its country). Observed only on a malformed IBAN that never reaches a bank lookup; not present on a well-formed one."
    },
    "branch": {
      "type": [
        "string",
        "null"
      ],
      "description": "Branch identifier for the resolved bank, when the lookup table carries one. Observed null on the one valid IBAN captured (the lookup table had no branch-level entry for that bank code); not present at all on a malformed IBAN."
    },
    "bank_code": {
      "type": "string",
      "description": "The bank identifier code parsed from the IBAN. Observed present on a valid IBAN; not present on a malformed one."
    },
    "bank_name": {
      "type": "string",
      "description": "Name of the bank the IBAN's bank code resolves to, from a bank-code lookup table. Observed present on a valid IBAN; not present on a malformed one."
    },
    "valid_iban": {
      "type": "boolean",
      "description": "Whether the submitted IBAN is well-formed (correct length/checksum for its country)."
    },
    "country_code": {
      "type": "string",
      "description": "ISO 2-letter country code parsed from the IBAN."
    },
    "country_name": {
      "type": "string",
      "description": "Full country name for the IBAN's country. Observed present on a valid IBAN; not present in the fixture where the IBAN failed length validation."
    }
  },
  "description": "The IBAN lookup result, as returned at routing.responseResultPath ($.output).",
  "additionalProperties": true
}

Pricing

Every real charge, itemised. A model that quietly omits one is a slow financial leak, so nothing here is rolled up, and a charge that only applies to some inputs says so rather than being added in.

Prices in this catalog are the provider's own list price, not your bill: Omnial MCP charges provider cost plus a platform markup on top, so what you are charged is higher than the figure shown. For the exact amount a specific call will cost, run omnial_execute with dry_run: true; that number includes the markup and is what we hold while the call runs. It is a quote, not a cap on the charge.

ChargeRate
Per call
Flat, regardless of what comes back
$0.0324324
Cost basis
Not recorded

This tool's catalog entry does not record how its final bill is determined, so we will not tell you whether its cost is fixed before the call or reported by the provider afterwards. Either way what is held is a quote rather than a cap: you are charged what the call actually costs, bounded at 2x the quote.

Updated
Sep 23, 2026