# LatAm Datos API – Argentina CUIT Validator

> LatAm Datos API – Argentina CUIT 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 CUIT (tax identification number) and returns whether it is valid along with the entity type (person or company).

## Facts

- Endpoint: GET https://latam-datos-api.onrender.com/ar/validar/cuit
- 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-cuit-validator-a381789c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_-4nwBCKifOK4jWj5duF6r

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-cuit-validator-a381789c
```

Example prompt: Can you validate this Argentine CUIT number for me — 20-12345678-9 — and tell me if it's valid and whether it belongs to a person or a company?

## When to prefer this

Choose this endpoint when you need a fast, low-cost programmatic check of an Argentine CUIT number's validity and entity classification — ideal for onboarding flows, invoice generation, KYC pipelines, or any workflow where confirming an Argentine fiscal ID is required before proceeding. It is purpose-built for Argentina and handles the CUIT checksum algorithm natively, unlike generic format validators.

## Known failure modes

- Invalid or malformed CUIT format returns valido: false
- Missing 'valor' query parameter results in a 400/422 error
- Non-Argentine tax IDs (e.g. CPF, RUT) are not supported and will return invalid
- Service unavailability on Render free tier may cause cold-start latency or 503 errors
- Payment failure via x402 prevents the request from being processed

## 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 two fields: 'valido' (boolean indicating whether the CUIT is structurally and algorithmically valid) and 'tipo' (string indicating the entity type, e.g. 'persona' for individual or 'empresa'/'juridica' for legal entity).

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

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "tipo": "persona",
  "valido": true
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/latam-datos-api-argentina-cuit-validator-a381789c/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)
