# Suverse Macro Unemployment Data

> Suverse Macro Unemployment Data is a paid API for AI agents from proxy.suverse.io, paid per call via x402, $0.004/call, status unknown (last checked 2026-09-14).

Returns total unemployment as a percent of labor force for any country, as a yearly time series, sourced from World Bank ILO estimates.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/suverse-macro-unemployment
- Price: $0.004/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/suverse-macro-unemployment-data-e4e50d7e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_6iz8ivOfMX4w2RpbBI6ON

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 suverse-macro-unemployment-data-e4e50d7e -d '<json body>'
```

Example prompt: Pull the yearly unemployment rate time series for Germany (ISO code DEU) from the World Bank ILO estimates so I can assess its labor market health over the past decade.

## When to prefer this

Choose this endpoint when you need official, internationally comparable unemployment statistics from World Bank ILO estimates in a structured yearly time series format — especially for macroeconomic analysis, recession signal detection, labor health assessment, or cross-country employment comparisons. Prefer this over general web search when you need clean, structured, machine-readable data without scraping.

## Known failure modes

- Invalid or unrecognized ISO country code returns an error or empty dataset
- Country has no ILO data available for the requested period
- Malformed POST body or missing required fields returns a validation error
- Upstream World Bank data unavailable causes service timeout or empty response

## How this service works

Total unemployment percent of labor force for any country by ISO code as a yearly time series from World Bank ILO estimates: country, year, rate. For AI agents assessing labor health, recession signals, macro regime, and employment comparison.

## Output

A yearly time series of total unemployment as a percentage of the labor force for the requested country, including country identifier, year, and unemployment rate figure, sourced from World Bank ILO modeled estimates.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "properties": {}
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/suverse-macro-unemployment-data-e4e50d7e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from proxy.suverse.io](https://www.zero.xyz/host/proxy.suverse.io/llms.txt)
