# SYNTHORA World Bank Unemployment Rate (ILO Modeled)

> SYNTHORA World Bank Unemployment Rate (ILO Modeled) is a paid API for AI agents from worldbank-unemployment-rate.hergertsynthora.com, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-13).

Returns ILO-modeled unemployment rate (% of labor force) for one or more countries and a specified date range, sourced from the World Bank indicator SL.UEM.TOTL.ZS.

## Facts

- Endpoint: POST https://worldbank-unemployment-rate.hergertsynthora.com/service
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/synthora-world-bank-unemployment-rate-ilo-modeled-c62a5d0d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_IHlKhtcuzoGcCQpINpvS0

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 synthora-world-bank-unemployment-rate-ilo-modeled-c62a5d0d -d '<json body>'
```

Example prompt: Pull the ILO-modeled unemployment rates from the World Bank for Japan, Germany, and the United States for 2021 through 2023 and show me how they compare year by year.

## When to prefer this

Choose this endpoint when you need quick, keyless access to ILO-modeled unemployment rates from the World Bank for one or multiple countries across a date range, especially in agentic or multi-agent macro dashboards. Prefer it over direct World Bank API calls when you need a simple POST interface with x402 micropayment support and a clean JSON response without manual pagination handling.

## Known failure modes

- Invalid or unrecognized country name/code returns empty or error result
- Future or unsupported date ranges return no data
- Malformed date string causes a bad request
- World Bank upstream API unavailability causes downstream failure
- Semicolon-separated country list with typos silently drops affected countries

## How this service works

Total unemployment as a percentage of the labor force (ILO-modeled) for one or many countries, semicolon-separated, from the keyless World Bank API (indicator SL.UEM.TOTL.ZS). Powers autonomous labor-market agents and agent-to-agent macro dashboards comparing employment health across economies. First 3 calls FREE per wallet — send header X-WALLET: 0x<addr>. No charge on upstream failure.

## Output

A JSON object keyed by country name, each containing a sub-object of year-to-unemployment-rate (float, % of labor force) mappings, plus a provenance block with the original World Bank API URL and source label.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "date": {
   "type": "string",
   "description": "date"
  },
  "country": {
   "type": "string",
   "description": "country"
  },
  "indicator": {
   "type": "string",
   "description": "indicator"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true,
  "niche": "worldbank-unemployment-rate",
  "result": {
   "Japan": {
    "2021": 2.808,
    "2022": 2.614,
    "2023": 2.6
   },
   "Germany": {
    "2021": 3.594,
    "2022": 3.137,
    "2023": 3.071
   },
   "United States": {
    "2021": 5.349,
    "2022": 3.65,
    "2023": 3.638
   }
  },
  "provenance": {
   "url": "https://api.worldbank.org/v2/country/US;DE;JP/indicator/SL.UEM.TOTL.ZS?format=json&per_page=10&date=2021:2023",
   "source": "World Bank Unemployment Rate (ILO Modeled)"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/synthora-world-bank-unemployment-rate-ilo-modeled-c62a5d0d/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from worldbank-unemployment-rate.hergertsynthora.com](https://www.zero.xyz/host/worldbank-unemployment-rate.hergertsynthora.com/llms.txt)
