# ADH EU Unemployment Monthly Data

> ADH EU Unemployment Monthly Data is a paid API for AI agents from agentdatum.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Fetches Eurostat monthly EU unemployment rate data (seasonally adjusted, total by sex/age) via the ADH financial intelligence layer

## Facts

- Endpoint: GET https://agentdatum.com/api/v1/d/eu-unemployment
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/adh-eu-unemployment-monthly-data-cfe8468e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_tfkACrXhK1n-ApKpXtiJB

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 adh-eu-unemployment-monthly-data-cfe8468e
```

Example prompt: What is the latest monthly EU unemployment rate? Pull the seasonally adjusted total figure for EU27 from the ADH financial intelligence layer.

## When to prefer this

Choose this endpoint when you need clean, entity-resolved, sourced EU27 monthly unemployment data without building a Eurostat API integration yourself. Ideal for AI agents doing macro regime analysis, economic briefings, or labor market monitoring that require a pay-per-call model with x402 micropayment settlement. Prefer this over raw Eurostat API calls when you want pre-processed, timestamped, agent-ready JSON with provenance metadata included.

## Known failure modes

- Payment failure (x402): agent lacks sufficient USDC balance or x402 payment header is malformed
- Upstream Eurostat outage: raw source unavailable, data may be stale or endpoint returns error
- Rate limiting: too many requests in short window returns 429
- Stale data: collected_at timestamp may lag real Eurostat release schedule
- Missing parameters: schema requires valid HTTP GET method in input object

## How this service works

ADH 金融情报层：把 239 个原始数据源洗成带实体解析、时间同步、溯源与派生结论的情报（宏观regime / 加密尽调 / 事件窗口），免费注入你的 AI 上下文。Agent 走 x402 结算，人类订阅（PayPal）即将上线。

## Output

Returns a JSON object containing: raw Eurostat dataset (label 'Unemployment by sex and age - monthly data', dataset ID une_rt_m), a series of ~20 monthly observations with numeric unemployment rate values (percent of active population), dimension metadata (geo: EU27_2020, sex: T, age: TOTAL, unit: PC_ACT, s_adj: SA), last updated timestamp, source attribution ('eurostat'), data type label, and collection timestamp.

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

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "raw": {
   "label": "Unemployment by sex and age - monthly data",
   "sample": {
    "obs_0": {
     "key": "0",
     "value": 6.1
    },
    "obs_1": {
     "key": "1",
     "value": 6.1
    },
    "obs_2": {
     "key": "2",
     "value": 6
    },
    "obs_3": {
     "key": "3",
     "value": 6
    },
    "obs_4": {
     "key": "4",
     "value": 6
    },
    "obs_5": {
     "key": "5",
     "value": 6
    },
    "obs_6": {
     "key": "6",
     "value": 6
    },
    "obs_7": {
     "key": "7",
     "value": 5.9
    },
    "obs_8": {
     "key": "8",
     "value": 5.9
    },
    "obs_9": {
     "key": "9",
     "value": 5.8
    },
    "obs_10": {
     "key": "10",
     "value": 5.9
    },
    "obs_11": {
     "key": "11",
     "value": 5.9
    },
    "obs_12": {
     "key": "12",
     "value": 6
    },
    "obs_13": {
     "key": "13",
     "value": 6
    },
    "obs_14": {
     "key": "14",
     "value": 6
    },
    "obs_15": {
     "key": "15",
     "value": 6
    },
    "obs_16": {
     "key": "16",
     "value": 6
    },
    "obs_17": {
     "key": "17",
     "value": 6
    },
    "obs_18": {
     "key": "18",
     "value": 6
    },
    "obs_19": {
     "key": "19",
     "value": 6
    }
   },
   "dataset": "une_rt_m",
   "updated": "2026-07-31T11:00:00+0200",
   "dimensions": {
    "age": [
     "TOTAL"
    ],
    "geo": [
     "EU27_2020"
    ],
    "sex": [
     "T"
    ],
    "freq": [
     "M"
    ],
    "time": [
     "2024-01",
     "2024-01"
    ],
    "unit": [
     "PC_ACT"
    ],
    "s_adj": [
     "SA"
    ]
   }
  },
  "source": "eurostat",
  "data_type": "社会指标",
  "collected_at": "2026-08-09T18:11:58Z"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/adh-eu-unemployment-monthly-data-cfe8468e/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)
