Skip to content
Eden Engine

Bank BIC/SWIFT Code Lookup & Validation

omnial/x402-bank-bic-lookup

Given a BIC/SWIFT code (8 or 11 characters), checks whether it is correctly formatted and, when it is, returns the matched bank's name, country, and branch details, including whether the code identifies the bank's head office or a specific branch.

activeper callv1
Provider
Web & Business Data Network
Category
company-enrichment
Provider price
$0.081081 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": [
    "bic"
  ],
  "properties": {
    "bic": {
      "type": "string",
      "description": "BIC/SWIFT code to look up (8 or 11 characters), e.g. 'DEUTDEFF'."
    }
  },
  "additionalProperties": false
}
output_schema.json
{
  "type": "object",
  "required": [
    "bic",
    "valid"
  ],
  "properties": {
    "bic": {
      "type": "string",
      "description": "The BIC/SWIFT code exactly as submitted, echoed back."
    },
    "error": {
      "type": "string",
      "description": "A human-readable explanation of why the code failed format validation. Observed only when `valid` is false."
    },
    "valid": {
      "type": "boolean",
      "description": "Whether the submitted code passes BIC/SWIFT format rules."
    },
    "country": {
      "type": "string",
      "description": "The matched bank's country name. Observed only on a valid code."
    },
    "bank_code": {
      "type": "string",
      "description": "The 4-letter bank code parsed from the BIC. Observed only on a valid code -- not present at all on a format failure."
    },
    "bank_name": {
      "type": "string",
      "description": "The matched bank's name. Observed only on a valid code -- not present at all on a format failure."
    },
    "branch_code": {
      "type": "string",
      "description": "The 3-character branch code parsed from an 11-character BIC ('XXX' for a head office on the one valid fixture observed). Observed only on a valid code."
    },
    "country_code": {
      "type": "string",
      "description": "The 2-letter country code parsed from the BIC. Observed only on a valid code."
    },
    "location_code": {
      "type": "string",
      "description": "The 2-character location code parsed from the BIC. Observed only on a valid code."
    },
    "is_head_office": {
      "type": "boolean",
      "description": "Whether the code identifies the bank's head office rather than a specific branch. Observed only on a valid code."
    }
  },
  "description": "The BIC lookup/validation 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.081081
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 25, 2026