# Brasil Dados API – IBAN Validation (Batch)

> Brasil Dados API – IBAN Validation (Batch) is a paid API for AI agents from brasil-dados-api.onrender.com, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-14).

Validates an IBAN bank account number using mod-97 checksum and returns a timestamped receipt.

## Facts

- Endpoint: GET https://brasil-dados-api.onrender.com/verify/iban/batch
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/brasil-dados-api-iban-validation-batch-d5436669
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_3f-NrFU4dRkiuSbKVaAw6

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 brasil-dados-api-iban-validation-batch-d5436669
```

Example prompt: Can you check whether the IBAN DE89370400440532013000 is valid and give me a timestamped confirmation?

## When to prefer this

Use this endpoint when you need a quick, cheap ($0.001 USDC) mod-97 checksum validation of an IBAN with a timestamped audit receipt — ideal for pre-payment verification flows or compliance logging without needing a full bank account lookup.

## Known failure modes

- Missing or malformed IBAN input returns an error
- IBAN with invalid characters or wrong length fails validation
- Payment not provided or insufficient USDC triggers 402 response
- Service temporarily unavailable on Render cold-start delay

## How this service works

Validate up to 25 IBAN bank account numbers (mod-97 checksum) in a single call. Cheaper per-item than individual requests.

## Output

Returns a validation result indicating whether the IBAN passes the mod-97 checksum, along with a timestamped receipt of the verification.

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object"
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/brasil-dados-api-iban-validation-batch-d5436669/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from brasil-dados-api.onrender.com](https://www.zero.xyz/host/brasil-dados-api.onrender.com/llms.txt)
