# Strale IBAN to Bank Lookup

> Strale IBAN to Bank Lookup is a paid API for AI agents from api.strale.io, paid per call via x402, $0.0216/call, status unknown (last checked 2026-09-14).

Looks up bank details and metadata for a given IBAN number, returning structured bank information with a cryptographic audit record.

## Facts

- Endpoint: GET https://api.strale.io/x402/v2/iban-to-bank
- Price: $0.0216/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/strale-iban-to-bank-lookup-f5c2aea6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_r-lSdllKCrxTjmGUiHANx

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 strale-iban-to-bank-lookup-f5c2aea6
```

Example prompt: Can you look up the bank details for the IBAN DE89370400440532013000 — I need to know which bank it belongs to and get the BIC if possible?

## When to prefer this

Choose this endpoint when you need a trusted, auditable IBAN-to-bank resolution with cryptographic proof of the lookup — particularly in compliance, fintech, or agent-driven payment workflows where an audit trail matters. Useful when operating across the 27+ countries Strale covers and when you need structured JSON output that can be programmatically validated.

## Known failure modes

- Invalid IBAN format returns validation error
- IBAN for an unsupported country or bank may return limited data
- Malformed IBAN checksum triggers rejection
- Rate limiting or payment failure (x402) prevents execution
- Unknown or defunct bank may return incomplete records

## How this service works

Extract bank name and branch information from an IBAN. Returns bank name, BIC/SWIFT code, branch, and country. Pure algorithmic — uses bank code lookup tables.

## Output

Returns structured bank information for the given IBAN including bank name, BIC/SWIFT code, country, branch details, and IBAN validity status, along with a cryptographic audit record for trust verification.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "iban"
 ],
 "properties": {
  "iban": {
   "type": "string",
   "description": "IBAN number to look up"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "bic": {
  "type": "string"
 },
 "bank_code": {
  "type": "string"
 },
 "bank_name": {
  "type": "string"
 },
 "valid_iban": {
  "type": "boolean"
 },
 "country_code": {
  "type": "string"
 },
 "country_name": {
  "type": "string"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/strale-iban-to-bank-lookup-f5c2aea6/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.strale.io](https://www.zero.xyz/host/api.strale.io/llms.txt)
