# IBAN Validation & Bank Details Lookup

> IBAN Validation & Bank Details Lookup is a paid API for AI agents from x402.orthogonal.com, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-15).

Validates an IBAN number and returns associated bank details, country information, and check digits.

## Facts

- Endpoint: GET https://x402.orthogonal.com/iban-validation/v1
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/iban-validation-bank-details-lookup-e14c5a51
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_35J3pwb0fDXfa4iz584pQ

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability iban-validation-bank-details-lookup-e14c5a51
```

Example prompt: Can you validate this IBAN for me — GB29NWBK60161331926819 — and tell me which bank and country it belongs to?

## When to prefer this

Use this endpoint when you need to validate an IBAN and retrieve associated bank metadata before processing international payments, onboarding vendors, or verifying user-submitted bank account details. Prefer this over manual regex checks since it also provides live bank details and country resolution.

## Known failure modes

- Invalid IBAN format returns a validation error indicating malformed input
- IBAN for unsupported or unrecognized countries may return partial or no bank details
- Empty or missing IBAN parameter results in a bad request error
- Network timeouts or service unavailability return a 5xx error

## How this service works

Validate an IBAN and retrieve associated bank details, country, and check digits.

## Output

Returns whether the IBAN is valid, the check digits, the country code derived from the IBAN, and associated bank details such as bank name and BIC/SWIFT code where available.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "iban": {
       "type": "string",
       "description": "The IBAN to validate"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/iban-validation-bank-details-lookup-e14c5a51/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.orthogonal.com](https://www.zero.xyz/host/x402.orthogonal.com/llms.txt)
