Monthly HICP inflation as annual rate of change (%) from Eurostat dataset prc_hicp_manr, t
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.
2000 (raw units)
price
1
calls / 30d
1
unique payers
2026-08-27
updated
Provider
data.greeneris.io · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x6ab8efe305cce67daa48c97bde29c04402822dff",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "2000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {
"coicop": "CP00",
"geo": "EA",
"last_n": 3
},
"type": "http"
},
"output": {
"example": {
"coicop": "CP00",
"coicop_label": "All-items HICP",
"dataset": "prc_hicp_manr",
"geo": "EA",
"latest_annual_rate_percent": 2,
"latest_period": "2025-12",
"measure": "HICP annual rate of change, percent",
"observations": [
{
"annual_rate_percent": 2.1,
"period": "2025-11"
},
{
"annual_rate_percent": 2,
"period": "2025-12"
}
],
"source": "Eurostat, dataset prc_hicp_manr (CC BY 4.0, monthly official HICP)",
"updated": "2026-02-06T23:00:00+0100"
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET",
"HEAD",
"DELETE"
],
"type": "string"
},
"queryParams": {
"properties": {
"coicop": {
"default": "CP00",
"description": "COICOP item code (CP00 all items, CP011 food, CP045 energy)",
"type": "string"
},
"geo": {
"default": "EA",
"description": "Eurostat geo code (EA, FR, DE, IT, EU27_2020...)",
"type": "string"
},
"last_n": {
"default": 1,
"description": "Number of most recent months (1-24)",
"type": "integer"
}
},
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://data.greeneris.io/v1/eu/inflation" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://data.greeneris.io/v1/eu/inflation");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://data.greeneris.io/v1/eu/inflation")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/3969.json, and this resource appears in /discovery/resources and /discovery/search.