# LatAm Datos API – Tasa de Política Monetaria

> LatAm Datos API – Tasa de Política Monetaria is a paid API for AI agents from latam-datos-api.onrender.com, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-14).

Returns the current central bank policy interest rate for a specified Latin American country

## Facts

- Endpoint: GET https://latam-datos-api.onrender.com/em/tasa-politica
- Price: $0.003/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-tasa-de-pol-tica-monetaria-66b038f5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_w_fivSvY394P0PX2aoufZ

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-tasa-de-pol-tica-monetaria-66b038f5
```

Example prompt: What is the current central bank policy rate in Colombia right now?

## When to prefer this

Choose this endpoint when you need the current official central bank policy rate for a specific Latin American country, especially in agentic financial analysis, macro dashboards, or carry trade workflows. It is purpose-built for LatAm emerging markets and priced per-query via USDC micropayment (x402), making it cost-effective for on-demand lookups rather than bulk data subscriptions.

## Known failure modes

- Unsupported or invalid ISO2 country code returns an error or empty response
- Country not yet covered by the API returns no data
- Stale data if the central bank has recently changed the rate and the API has not yet updated
- Network timeout from the Render-hosted service during cold start

## 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 the country ISO2 code (e.g. 'CO') and the current central bank policy rate as a percentage (e.g. 11.25). The rate reflects the official benchmark rate set by the respective national central bank.

## 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",
  "tasa_politica_pct": 11.25
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/latam-datos-api-tasa-de-pol-tica-monetaria-66b038f5/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)
