# LatAm Datos API – Salario Mínimo

> LatAm Datos API – Salario Mínimo 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 current statutory minimum wage for a specified Latin American country, including amount, currency, and period.

## Facts

- Endpoint: GET https://latam-datos-api.onrender.com/datos/salario-minimo
- 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-salario-m-nimo-81d6d27d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Hql_dj2zCOr3rFWuq7o_d

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-salario-m-nimo-81d6d27d
```

Example prompt: What is the current minimum wage in Mexico — give me the amount, currency, and whether it's daily or monthly?

## When to prefer this

Choose this endpoint when you need structured, machine-readable minimum wage data for Latin American countries with pay-per-query pricing via USDC on Base. It is purpose-built for LatAm emerging markets and returns normalized fields (amount, currency, period) suited for payroll, compliance, or economic analysis workflows — unlike general-purpose data providers that may not cover LatAm granularity or require subscriptions.

## Known failure modes

- Unsupported or invalid ISO2 country code returns an error or empty response
- Country not covered by the API returns a 404 or similar not-found response
- Stale data if the underlying dataset has not been updated after a government wage change
- Service unavailability on Render free-tier infrastructure causing timeouts or cold-start delays

## 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 ISO2 code (e.g. 'MX'), the minimum wage amount as a number (e.g. 315.04), the local currency code (e.g. 'MXN'), and the period to which the amount applies (e.g. 'dia' for daily).

## 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": "MX",
  "monto": 315.04,
  "moneda": "MXN",
  "periodo": "dia"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/latam-datos-api-salario-m-nimo-81d6d27d/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)
