# latamref.dev Mexico Policy Rate

> latamref.dev Mexico Policy Rate is a paid API for AI agents from latamref.dev, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-14).

Returns the current central bank policy interest rate for Mexico, including effective date, source, and staleness flag

## Facts

- Endpoint: GET https://latamref.dev/v1/mx/policy-rate
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/latamref-dev-mexico-policy-rate-0efa141d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_PC7krAx1N8QzY3PNg3N67

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 latamref-dev-mexico-policy-rate-0efa141d
```

Example prompt: What is Mexico's current central bank policy rate? Fetch it from latamref.dev so I get the official value with its effective date and whether it's stale.

## When to prefer this

Use this endpoint when you need a trusted, sourced, point-in-time lookup of Mexico's official central bank policy rate — especially when you need the effective date, official source attribution, and a staleness signal. Prefer this over scraping central bank websites or using general financial data APIs when you need structured, consistent government reference data for Latin American countries in a pay-per-call model.

## Known failure modes

- Invalid country code or series combination returns a 4xx error
- Data marked stale (stale: true) if the official source hasn't updated within the expected cycle
- Payment not processed or x402 protocol failure results in 402 response
- Network timeout or service unavailability returns 5xx error

## How this service works

African reference data series

## Output

A JSON object containing the ISO country code (mx), the series name (policy-rate), the numeric rate value, the date it became effective, the date it was last confirmed, a source object with name and URL pointing to the official authority, a unit string, optional notes, and a boolean stale flag indicating whether the data is past its expected update cycle.

## 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"
    },
    "pathParams": {
     "type": "object",
     "required": [
      "country",
      "series"
     ],
     "properties": {
      "series": {
       "enum": [
        "policy-rate",
        "vat",
        "vat-registration-threshold",
        "minimum-wage",
        "public-holidays",
        "cpi",
        "corporate-tax",
        "withholding-tax",
        "statutory-interest",
        "income-tax",
        "social-contributions",
        "fx-reference"
       ],
       "type": "string",
       "description": "Reference series id"
      },
      "country": {
       "enum": [
        "ar",
        "bb",
        "bo",
        "br",
        "bz",
        "cl",
        "co",
        "cr",
        "do",
        "ec",
        "gt",
        "gy",
        "hn",
        "jm",
        "mx",
        "ni",
        "pa",
        "pe",
        "py",
        "sv",
        "tt",
        "uy"
       ],
       "type": "string",
       "description": "ISO country code"
      }
     }
    },
    "queryParams": {
     "type": "object",
     "properties": {},
     "additionalProperties": false
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/latamref-dev-mexico-policy-rate-0efa141d/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from latamref.dev](https://www.zero.xyz/host/latamref.dev/llms.txt)
