# latamref.dev Guatemala Policy Rate

> latamref.dev Guatemala 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 Guatemala from official government sources

## Facts

- Endpoint: GET https://latamref.dev/v1/gt/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-guatemala-policy-rate-32297773
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_aYEBeuqM41uubD4lVqAM-

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-guatemala-policy-rate-32297773
```

Example prompt: What is Guatemala's current official central bank policy rate? I need the value, when it took effect, and whether the data is stale.

## When to prefer this

Use this endpoint when you need a reliable, sourced, single-value lookup of Guatemala's central bank policy rate with freshness metadata. Prefer this over web scraping when you need structured data with an official source citation and a staleness flag for downstream decision-making in financial or economic workflows.

## Known failure modes

- Invalid country code returns 400 or validation error
- Invalid series name returns 400 or validation error
- Data may be flagged as stale if not updated within expected cycle
- Payment failure (402) if USDC not provided or insufficient
- Network timeout or 503 if upstream government data source is unavailable

## How this service works

Government reference data series

## Output

Returns a JSON object with the current policy rate value for Guatemala, the effective date, when it was last confirmed, the official source (name and URL), a staleness flag indicating if the data is past its expected update cycle, and the unit of measurement.

## 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
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "country",
      "series",
      "value",
      "effective_from",
      "last_confirmed",
      "source",
      "stale"
     ],
     "properties": {
      "unit": {
       "type": "string"
      },
      "notes": {
       "type": "string"
      },
      "stale": {
       "type": "boolean",
       "description": "True when past the expected update cycle — treat with caution"
      },
      "value": {
       "description": "Number for rates/wages; array of {date,name} for holiday calendars"
      },
      "series": {
       "type": "string"
      },
      "source": {
       "type": "object",
       "required": [
        "name",
        "url"
       ],
       "properties": {
        "url": {
         "type": "string",
         "format": "uri"
        },
        "name": {
         "ty
… (truncated)
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/latamref-dev-guatemala-policy-rate-32297773/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)
