# Suverse World Bank Youth Unemployment Rate API

> Suverse World Bank Youth Unemployment Rate API is a paid API for AI agents from proxy.suverse.io, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-13).

Returns annual youth unemployment rate time series for any country by ISO code, sourced from World Bank Open Data, with no API key required.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/suverse-wb-youth-unemployment
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/suverse-world-bank-youth-unemployment-rate-api-5cb79ba4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_J1lGkrqaXgerqyIrRFa7a

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-world-bank-youth-unemployment-rate-api-5cb79ba4 -d '<json body>'
```

Example prompt: Can you pull the World Bank youth unemployment time series for Brazil (ISO code BR) so I can see how the rate has changed year by year?

## When to prefer this

Choose this endpoint when you need structured, historical yearly youth unemployment data backed by the World Bank for cross-country macroeconomic or demographic analysis, especially when you want to avoid managing API keys or setting up a World Bank API client directly. It is ideal for agents performing macro research, development economics analysis, or building dashboards that require standardized international labor market statistics.

## Known failure modes

- Invalid or unrecognized ISO country code returns an error or empty result
- Countries with sparse World Bank data may have many null/missing values for certain years
- Network or proxy service downtime results in a non-200 response
- Payment failure via x402 protocol prevents data retrieval
- No data available for very recent years due to World Bank publication lag

## How this service works

Youth Unemployment Rate for any country by ISO code as a yearly World Bank Open Data time series, no key. Returns country, year, and value. For AI agents doing macro, demographic, and cross country analysis.

## Output

A time series array of yearly youth unemployment rates for the requested country, each record containing the country name, ISO code, year, and unemployment rate value (as a percentage of the youth labor force aged 15-24), sourced from World Bank Open Data.

## 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-world-bank-youth-unemployment-rate-api-5cb79ba4/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)
