# euroref - European Government Reference Data

> euroref - European Government Reference Data 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).

Returns current government reference data (policy rate, VAT, minimum wage, public holidays, CPI, corporate tax, or income tax) for a specified European country

## Facts

- Endpoint: GET https://euroref.dev/v1/:country/:series
- 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-6dae7d47
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Rh9c4QcfEcqY4GkOw4egT

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-6dae7d47
```

Example prompt: What is the current VAT rate in France? Use the euroref government reference data series for France's VAT.

## When to prefer this

Use this endpoint when you need authoritative, structured government reference data for a specific European country and series — especially when you need machine-readable rates with provenance (source URL), effective dates, and staleness signals. Prefer this over web scraping or general-purpose LLM knowledge when you need up-to-date, citable fiscal or economic reference values for AT, BE, DE, DK, ES, FR, GB, IE, IT, NL, PL, or SE.

## Known failure modes

- Unsupported country code returns an error — only at, be, de, dk, es, fr, gb, ie, it, nl, pl, se are supported
- Unsupported series name returns an error — only policy-rate, vat, minimum-wage, public-holidays, cpi, corporate-tax, income-tax are valid
- stale:true flag indicates data has passed its expected update cycle and should be treated with caution
- Payment failure (x402 protocol) if USDC balance is insufficient
- Network timeout or server unavailability

## How this service works

Government reference data series

## Output

A JSON object containing the country code, series name, current value (numeric rate or array of date/name objects for holidays), effective-from date, last-confirmed date, data source (name and URL), staleness flag, unit, optional notes, and optional rate components breakdown.

## 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-6dae7d47/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)
