# LatAm Datos API – Argentina CBU Validator

> LatAm Datos API – Argentina CBU Validator is a paid API for AI agents from latam-datos-api.onrender.com, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-14).

Validates an Argentine CBU (Clave Bancaria Uniforme) bank account number and identifies the issuing bank

## Facts

- Endpoint: GET https://latam-datos-api.onrender.com/ar/validar/cbu
- 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/latam-datos-api-argentina-cbu-validator-7ac2ba75
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_8r_MLqhYXwEcX8pAxBsYt

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 latam-datos-api-argentina-cbu-validator-7ac2ba75
```

Example prompt: Can you check whether the Argentine CBU number 2850590940090418135201 is valid, and tell me which bank it belongs to?

## When to prefer this

Use this endpoint when you need to programmatically verify an Argentine CBU before initiating a bank transfer, onboarding a user, or processing a payment. Prefer this over generic format-check libraries because it also resolves the issuing bank code, enabling downstream bank-specific routing logic. Best suited for fintech workflows, accounts-payable automation, and compliance checks targeting the Argentine banking system.

## Known failure modes

- Invalid or malformed CBU string returns valido: false with no banco code
- Missing 'valor' query parameter causes a 400 or error response
- Network timeout if the Render-hosted service is cold-starting
- CBU with correct length but invalid checksum returns valido: false
- Non-Argentine bank account formats not supported

## How this service works

Datos de mercados emergentes para agentes: FX LatAm, inflacion, tasas de bancos centrales, feriados, validacion de IDs fiscales/bancarios, IVA y salarios minimos. Pago por consulta via x402 v2 (USDC en Base).

## Output

Returns a JSON object with a boolean 'valido' field indicating whether the CBU is structurally valid, and a 'banco' field containing the 3-digit Argentine bank code associated with the CBU prefix.

## 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"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "valor"
     ],
     "properties": {
      "valor": {
       "type": "string",
       "description": "CBU a validar"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "banco": "285",
  "valido": true
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/latam-datos-api-argentina-cbu-validator-7ac2ba75/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from latam-datos-api.onrender.com](https://www.zero.xyz/host/latam-datos-api.onrender.com/llms.txt)
