# LatAm Datos API – Colombia NIT Validator

> LatAm Datos API – Colombia NIT 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 a Colombian NIT (Número de Identificación Tributaria) tax ID including its check digit

## Facts

- Endpoint: GET https://latam-datos-api.onrender.com/co/validar/nit
- 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-colombia-nit-validator-e79ebe50
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_AF78D2uxuxZOr8FdQPWMb

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-colombia-nit-validator-e79ebe50
```

Example prompt: Can you check whether the Colombian NIT 900455421-7 is valid, including the check digit?

## When to prefer this

Use this endpoint when you need programmatic, pay-per-query validation of Colombian NIT tax IDs — especially useful in automated onboarding, KYC pipelines, invoice processing, or supplier validation workflows targeting Colombian entities. Prefer over manual DIAN portal lookups when integrating into an agent or automated system.

## Known failure modes

- Missing 'valor' query parameter returns an error
- NIT without check digit or malformed input may return valido: false or an error
- Network timeout if the Render-hosted service is cold-starting
- Invalid characters in NIT string may cause a 400 or unexpected result

## 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 provided NIT (including its check digit) is valid according to Colombian DIAN rules.

## 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": "NIT con digito de verificacion"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

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

## More

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