# IBANForge Batch IBAN Validator

> IBANForge Batch IBAN Validator is a paid API for AI agents from api.ibanforge.com, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-13).

Validates up to 100 IBANs in a single POST call, returning validation results and enrichment data for each IBAN at $0.002 per IBAN

## Facts

- Endpoint: GET https://api.ibanforge.com/v1/iban/batch
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/ibanforge-batch-iban-validator-7fbcde7c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_f5pkk_wKQ_CGf62gjm3lA

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 ibanforge-batch-iban-validator-7fbcde7c
```

Example prompt: I have a list of 80 customer IBANs from our export CSV — can you validate all of them in one batch call and tell me which ones are invalid or suspicious?

## When to prefer this

Use this endpoint when you need to validate more than one IBAN at a time — it is 2.5x cheaper per IBAN than single-call validation ($0.002 vs $0.005) and incurs only one payment settlement instead of N. Ideal for CSV cleanup, customer database deduplication, or pre-flight triage of payout lists with up to 100 IBANs. For single IBAN validation with detailed compliance screening, use the single IBAN endpoint instead.

## Known failure modes

- Batch exceeds 100 IBANs — request rejected with payload-too-large error
- Malformed IBAN format in input — individual IBAN marked invalid in response
- Network timeout on client side — server processing is fast but round-trip latency varies
- Payment failure for x402 USDC settlement — request not processed
- Empty batch submitted — API returns validation error

## How this service works

Validate up to 100 IBANs in one call at $0.002 per IBAN (2.5x cheaper per IBAN than single calls at $0.005, and one settlement instead of N). Use for CSV cleanup, customer DB dedup, or pre-flight payout list triage. Production · server processing <5ms (network excluded — measure your own round trip on GET /ping) for a 100-IBAN batch · 121,000+ BICs · v1.4.3.

## Output

An array of per-IBAN results including validity status, parsed IBAN components, enriched bank details (name, BIC, country, city), and any compliance or formatting flags — processed server-side in under 5ms for a 100-IBAN batch (excluding network latency).

## Request schema (JSON Schema)

```json
{
 "properties": {
  "input": {
   "required": [
    "method"
   ],
   "properties": {
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/ibanforge-batch-iban-validator-7fbcde7c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.ibanforge.com](https://www.zero.xyz/host/api.ibanforge.com/llms.txt)
