# EU Inflation Data – Eurostat HICP

> EU Inflation Data – Eurostat HICP is a paid API for AI agents from data.greeneris.io, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-14).

Returns official Eurostat HICP (Harmonised Index of Consumer Prices) annual inflation rates for EU/eurozone geographies and product categories

## Facts

- Endpoint: GET https://data.greeneris.io/v1/eu/inflation
- 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/eu-inflation-data-eurostat-hicp-29d34cdd
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_mqhRfMNI9te7v9AMm1iq1

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 eu-inflation-data-eurostat-hicp-29d34cdd
```

Example prompt: What's the current annual inflation rate for the eurozone — can you pull the last 3 months of all-items HICP data for the euro area (EA) from Eurostat?

## When to prefer this

Use this endpoint when you need official, authoritative EU/eurozone inflation statistics sourced directly from Eurostat's HICP dataset — particularly for financial analysis, economic reporting, VAT/pricing decisions, or compliance tasks requiring verified European price data. Prefer this over general news or LLM-estimated figures when accuracy and official provenance matter.

## Known failure modes

- Invalid geo code returns error or empty observations
- Invalid COICOP code returns error or no data
- last_n out of range (>24) may return error or be capped
- Data may lag by several weeks after official Eurostat release
- 402 Payment Required if x402 payment not completed before retry

## How this service works

Monthly HICP inflation as annual rate of change (%) from Eurostat dataset prc_hicp_manr, the official primary source. Query: ?geo=EA|FR|DE|EU27_2020 &coicop=CP00 (all items) | CP011 (food) | CP045 (energy) &last_n=12 (1-24 months, default 1). Returns date-sorted observations plus the latest print; 24h cache. Data: Eurostat, CC BY 4.0.

## Output

A JSON object containing the geo code, COICOP category label, source dataset info, update timestamp, measure description, an array of monthly observations each with period and annual_rate_percent, and the single latest period and rate highlighted at the top level.

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "geo": {
       "type": "string",
       "default": "EA",
       "description": "Eurostat geo code (EA, FR, DE, IT, EU27_2020...)"
      },
      "coicop": {
       "type": "string",
       "default": "CP00",
       "description": "COICOP item code (CP00 all items, CP011 food, CP045 energy)"
      },
      "last_n": {
       "type": "integer",
       "default": 1,
       "description": "Number of most recent months (1-24)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "geo": "EA",
  "coicop": "CP00",
  "source": "Eurostat, dataset prc_hicp_manr (CC BY 4.0, monthly official HICP)",
  "dataset": "prc_hicp_manr",
  "measure": "HICP annual rate of change, percent",
  "updated": "2026-02-06T23:00:00+0100",
  "coicop_label": "All-items HICP",
  "observations": [
   {
    "period": "2025-11",
    "annual_rate_percent": 2.1
   },
   {
    "period": "2025-12",
    "annual_rate_percent": 2
   }
  ],
  "latest_period": "2025-12",
  "latest_annual_rate_percent": 2
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/eu-inflation-data-eurostat-hicp-29d34cdd/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from data.greeneris.io](https://www.zero.xyz/host/data.greeneris.io/llms.txt)
