# LatAm Datos API – IVA (Value Added Tax) Lookup

> LatAm Datos API – IVA (Value Added Tax) Lookup is a paid API for AI agents from latam-datos-api.onrender.com, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-14).

Returns the standard VAT (IVA) rate percentage for a specified Latin American country by ISO2 country code.

## Facts

- Endpoint: GET https://latam-datos-api.onrender.com/datos/iva
- Price: $0.002/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-iva-value-added-tax-lookup-dbb5e4ab
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_06uFYSMnQNF2VU483z45i

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-iva-value-added-tax-lookup-dbb5e4ab
```

Example prompt: What is the standard IVA (VAT) rate in Colombia? I need the percentage for an invoice I'm generating.

## When to prefer this

Use this endpoint when you need authoritative standard VAT/IVA rates for Latin American countries, especially when building invoicing, pricing, or fiscal compliance workflows. Prefer this over general tax APIs when your focus is specifically on LatAm emerging markets and you want pay-per-query pricing via USDC rather than a subscription model.

## Known failure modes

- Missing or invalid ISO2 country code returns an error or empty result
- Country not covered by the LatAm dataset returns no data
- Payment failure via x402/USDC prevents the request from being processed
- Non-LatAm country code may return no result or an unsupported country error

## 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

A JSON object containing the country's ISO2 code (e.g. 'CO') and its standard IVA rate as a percentage (e.g. 19 for Colombia's 19% VAT rate).

## 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": [],
     "properties": {
      "pais": {
       "type": "string",
       "description": "codigo ISO2"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "pais": "CO",
  "iva_estandar_pct": 19
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/latam-datos-api-iva-value-added-tax-lookup-dbb5e4ab/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)
