# RESET Verifica CLABE Validator

> RESET Verifica CLABE Validator is a paid API for AI agents from api.resetparatodos.com, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-16).

Validates a Mexican CLABE (18-digit interbank account key) by checking its length, check digit, and issuing bank identification from the prefix.

## Facts

- Endpoint: POST https://api.resetparatodos.com/x402/v1/clabe/validate
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/reset-verifica-clabe-validator-5ffc1cfd
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_klWAgpAvKw8ricF1e8vhZ

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 reset-verifica-clabe-validator-5ffc1cfd -d '<json body>'
```

Example prompt: Can you check if this Mexican CLABE is valid: 032180000118359719? I want to make sure the format, check digit, and bank prefix are all correct before I initiate a transfer.

## When to prefer this

Choose this endpoint when you need fast, deterministic, offline-style structural validation of a Mexican CLABE before initiating a payment or onboarding a bank account. Prefer this over live banking API lookups when you only need to confirm the number is well-formed and plausibly real — not that the account is active or funded. Ideal for input validation in payment flows, vendor onboarding, and fraud pre-screening at $0.02 per call.

## Known failure modes

- Input CLABE contains non-numeric characters — schema pattern rejection
- CLABE is not exactly 18 digits — validation fails with length error
- Check digit is mathematically incorrect — returns invalid with check digit mismatch detail
- Bank prefix is unrecognized — may return unknown bank warning
- Missing or malformed request body — HTTP 400 or schema validation error
- Payment not included or insufficient — HTTP 402 Payment Required

## How this service works

Deterministically validate a Mexican CLABE (18-digit interbank account key): length, check digit, and issuing bank by prefix. Structural validation only.

## Output

Returns a structured validation response indicating whether the 18-digit CLABE passes length checks, has a correct check digit, and whether the bank prefix maps to a known Mexican issuing institution. No live bank lookup or balance check is performed — this is structural/deterministic validation only.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "clabe": {
   "type": "string",
   "pattern": "^[0-9]{18}$",
   "description": "18-digit Mexican CLABE"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/reset-verifica-clabe-validator-5ffc1cfd/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.resetparatodos.com](https://www.zero.xyz/host/api.resetparatodos.com/llms.txt)
