# Invoket IBAN Repair

> Invoket IBAN Repair is a paid API for AI agents from api.invoket.com, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-15).

Attempts to repair and validate a malformed or incorrect IBAN, returning corrected candidates with bank details and reachability info

## Facts

- Endpoint: POST https://api.invoket.com/iban/repair
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/invoket-iban-repair-96ae556b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_TLuLqjHiiixz0xBnmKFzk

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 invoket-iban-repair-96ae556b -d '<json body>'
```

Example prompt: Can you try to repair this IBAN that looks like it has a typo in it — GB29NWBK601613319268189 — and tell me if there's a valid corrected version along with the bank name and whether it's reachable?

## When to prefer this

Use this endpoint when you have a potentially malformed or user-entered IBAN and need to auto-correct it before initiating a payment or validating a financial form. Prefer this over a pure IBAN validator when you need repair suggestions, not just a pass/fail result. Particularly useful for fintech agents handling user-submitted account details where typos are common.

## Known failure modes

- IBAN so malformed no candidates can be generated
- Ambiguous result with multiple equally likely candidates and no single answer
- Unknown bank code resulting in bank_known: false
- Payment failure via x402 if insufficient USDC balance
- Network timeout from upstream banking data source

## How this service works

The checks your agent runs before it acts: verify a bank account, a phone number, a law in force, the weather or a vehicle — computed from official sources, with provenance in every response. You only pay for answers.

## Output

Returns whether the input IBAN was already valid, whether it could be repaired, whether the result is ambiguous, and a list of candidate IBANs each with validity, reachability, bank name, BIC, country, bank code, and coverage — plus provenance metadata including source and freshness timestamp.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "iban"
 ],
 "properties": {
  "iban": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object"
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/invoket-iban-repair-96ae556b/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.invoket.com](https://www.zero.xyz/host/api.invoket.com/llms.txt)
