# EU Trade & Demographics Data (Eurostat)

> EU Trade & Demographics Data (Eurostat) is a paid API for AI agents from agentdatum.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Returns EU trade balance, population statistics, and employment rate data for the 27 EU member states sourced from official Eurostat data.

## Facts

- Endpoint: GET https://agentdatum.com/api/v1/eu/trade
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/eu-trade-demographics-data-eurostat-9725e712
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_4_0o0hs7Kb1SfOAwXj961

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-trade-demographics-data-eurostat-9725e712
```

Example prompt: Pull the latest EU trade balance, population, and employment rate figures across the 27 member states from Eurostat — I need the official numbers for a report on the European single market.

## When to prefer this

Choose this endpoint when you need official, Eurostat-sourced EU trade, population, and employment statistics in a single lightweight call. Prefer it over manual Eurostat API integration or the Global Economic Bundle when you only need EU-specific data. Use the US equivalent endpoint instead for American figures, or the Global Bundle if you need US + EU + China together.

## Known failure modes

- Eurostat upstream data unavailable or delayed — may return stale or partial data
- No query parameters exposed, so no ability to filter by specific country or time period
- HTTP 402 if payment header is missing or USDC payment fails
- HTTP 429 if rate limits are exceeded
- Data may lag official Eurostat publication cycles

## How this service works

🇪🇺 EU TRADE & DEMOGRAPHICS — trade balance, population statistics, employment rate across 27 member states. Official Eurostat data. The world's largest single market, quantified. 💎【付款后立得】实时结构化JSON，即插即用——无需注册，USDC一键支付即取数据。

## Output

Returns official Eurostat figures including EU trade balance, population statistics, and employment rate across all 27 EU member states, likely as structured JSON with numeric values and metadata (country codes, time periods).

## 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": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "trade_balance_eur": 34.2,
  "employment_rate_pct": 75.3,
  "population_millions": 449
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/eu-trade-demographics-data-eurostat-9725e712/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agentdatum.com](https://www.zero.xyz/host/agentdatum.com/llms.txt)
