# euroref - European Government Reference Data History

> euroref - European Government Reference Data History is a paid API for AI agents from euroref.dev, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-13).

Retrieves the historical time series of a specific government reference data metric (e.g. policy rate, VAT, minimum wage) for a given European country

## Facts

- Endpoint: GET https://euroref.dev/v1/:country/:series/history
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/euroref-european-government-reference-data-history-5aa433f8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_IlYH_ZZ0QGjB64VTytnpi

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 euroref-european-government-reference-data-history-5aa433f8
```

Example prompt: Can you pull the full history of Germany's VAT rate from euroref — I need all the historical entries for the 'vat' series for country code 'de'?

## When to prefer this

Use this endpoint when you need structured, machine-readable historical records of European government reference data such as central bank policy rates, VAT rates, minimum wages, public holidays, CPI, corporate tax, or income tax for a specific supported country. Prefer this over scraping government websites or using general web search when you need reliable, sourced, time-series data for one of the 12 supported European countries.

## Known failure modes

- Unsupported country code (not in the allowed enum: at, be, de, dk, es, fr, gb, ie, it, nl, pl, se) — likely 404 or validation error
- Unsupported series ID (not in the allowed enum) — likely 404 or validation error
- Data marked stale (stale: true) — endpoint returns data but it may be outdated beyond its expected refresh cycle
- Payment failure — x402 payment not processed, endpoint returns 402
- Service unavailable — upstream government data source temporarily unreachable

## How this service works

Government reference data series

## Output

Returns a structured record containing the country code, series identifier, current effective value (numeric rate or array of holiday entries), effective-from date, last-confirmed date, unit, optional breakdown of composite rate components, a staleness flag indicating whether the data is past its expected update cycle, and a source object with the data provider's name and URL.

## 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",
        "income-tax",
        "social-contributions",
        "ecb-main-refinancing-rate",
        "late-payment-interest",
        "statutory-interest",
        "fx-reference"
       ],
       "type": "string",
       "description": "Reference series id"
      },
      "country": {
       "enum": [
        "at",
        "be",
        "bg",
        "ch",
        "cy",
        "cz",
        "de",
        "dk",
        "ee",
        "es",
        "eu",
        "fi",
        "fr",
        "gb",
        "gr",
        "hr",
        "hu",
        "ie",
        "is",
        "it",
        "lt",
        "lu",
        "lv",
        "mt",
        "nl",
        "no",
        "pl",
        "pt",
        "ro",
        "rs",
        "se",
        "si",
        "sk",
        "tr",
        "ua"
       ],
       "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/euroref-european-government-reference-data-history-5aa433f8/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from euroref.dev](https://www.zero.xyz/host/euroref.dev/llms.txt)
