# Suverse World Bank Labor Force Time Series

> Suverse World Bank Labor Force Time Series is a paid API for AI agents from proxy.suverse.io, paid per call via x402, $0.07/call, status unknown (last checked 2026-09-14).

Returns the total labor force for any country as a yearly World Bank Open Data time series, identified by ISO country code, with no API key required.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/suverse-wb-labor-force
- Price: $0.07/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/suverse-world-bank-labor-force-time-series-8db973b1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ja1lbRNi_laFwnu_3E2LX

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-labor-force-time-series-8db973b1 -d '<json body>'
```

Example prompt: Pull the full yearly labor force time series for the United States (ISO code US) from the World Bank — I need country, year, and value for each data point.

## When to prefer this

Choose this endpoint when you need historical, yearly labor force data sourced from the World Bank for any country identifiable by ISO code, without managing an API key. It is ideal for macroeconomic modeling, demographic research, or cross-country workforce comparisons where World Bank methodology and coverage are acceptable. Prefer it over direct World Bank API calls when you want a no-key, agent-friendly proxy with standardized output.

## Known failure modes

- Invalid or unrecognized ISO country code returns an error or empty dataset
- World Bank upstream data unavailable causes degraded or failed response
- Missing required body fields results in a 400-level error
- Countries with sparse World Bank coverage may return incomplete time series
- Payment not processed correctly (x402 protocol failure) prevents data access

## How this service works

Total Labor Force 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 for the specified country containing rows of country identifier, year, and total labor force value, sourced from World Bank Open Data. Each data point represents the annual labor force count for the given country across all available historical years.

## 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-labor-force-time-series-8db973b1/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)
