# tokenguard World Bank Economic Indicators

> tokenguard World Bank Economic Indicators is a paid API for AI agents from eltociear-tokenguard.hf.space, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-15).

Fetches World Bank time-series data for key macroeconomic indicators (GDP, inflation, population, CO2, etc.) for any country by plain-English alias or raw indicator code

## Facts

- Endpoint: GET https://eltociear-tokenguard.hf.space/world/indicators
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/tokenguard-world-bank-economic-indicators-2df68528
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_bn8IFnsv9QOIf5Bz9gZiG

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 tokenguard-world-bank-economic-indicators-2df68528
```

Example prompt: Pull the World Bank time series for GDP and inflation in Brazil over the last 10 years so I can see how the economy has trended.

## When to prefer this

Choose this endpoint when you need official World Bank macroeconomic time-series data for a specific country and want plain-English indicator aliases instead of raw World Bank codes. It covers the eight most commonly needed development indicators in one call, making it ideal for economic briefings, research dashboards, and country comparison tasks. Prefer it over general web search when you need structured, numeric, year-by-year historical data rather than prose summaries.

## Known failure modes

- Invalid or unrecognized country code returns an error — use ISO 2- or 3-letter codes
- Unsupported indicator alias or malformed World Bank code returns an error
- Years parameter outside 1–60 range may be rejected or clamped
- World Bank data gaps for certain countries/years may return nulls or sparse series
- Payment failure via x402 protocol blocks the request before data is fetched

## How this service works

What are this country's headline economics? World Bank time series for GDP, GDP per capita, population, inflation, unemployment, life expectancy, CO2 per capita or internet penetration, by plain-English alias or raw indicator code

## Output

Returns a time series array of annual data points for the requested World Bank indicator and country, covering up to 60 years of historical data. Each data point includes the year and the indicator value. The response covers whichever of the eight standard aliases (gdp, gdp_per_capita, population, inflation, unemployment, life_expectancy, co2_per_capita, internet_users) or raw World Bank indicator code was requested.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "years": {
   "type": "integer",
   "description": "1-60 most recent years (default 5)"
  },
  "country": {
   "type": "string",
   "description": "ISO 2- or 3-letter country code"
  },
  "indicator": {
   "type": "string",
   "description": "gdp | gdp_per_capita | population | inflation | unemployment | life_expectancy | co2_per_capita | internet_users, or a World Bank code"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "latest": {
   "year": "2025",
   "value": 4435162999900
  },
  "series": [
   {
    "year": "2025",
    "value": 4435162999900
   }
  ],
  "country": "Japan",
  "indicator": "GDP (current US$)",
  "country_code": "JPN"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/tokenguard-world-bank-economic-indicators-2df68528/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from eltociear-tokenguard.hf.space](https://www.zero.xyz/host/eltociear-tokenguard.hf.space/llms.txt)
