# World Bank Global Economic Indicators

> World Bank Global Economic Indicators is a paid API for AI agents from agentdatum.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Fetches thousands of World Bank open economic indicator series (GDP, trade, employment, etc.) across countries worldwide.

## Facts

- Endpoint: GET https://agentdatum.com/api/v1/d/worldbank-econ
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/world-bank-global-economic-indicators-de361c84
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_wKXspl9ZGC86-vzAG0vvM

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 world-bank-global-economic-indicators-de361c84
```

Example prompt: Can you pull World Bank economic indicators for China — specifically GDP and trade data — so I can get a sense of recent macroeconomic trends?

## When to prefer this

Choose this endpoint when you need authoritative, structured macroeconomic data from the World Bank covering GDP, trade, employment, or any of thousands of official development indicators across countries — especially for research, benchmarking, or economic modeling tasks. Prefer this over news or market-data APIs when you need standardized longitudinal government-reported economic statistics rather than real-time market prices or news sentiment.

## Known failure modes

- Invalid or unsupported indicator series code returns empty or error response
- Country code not recognized results in no data returned
- Network timeout or upstream World Bank API unavailability causes request failure
- Rate limiting or payment failure at $0.01 USDC per call blocks access
- Sparse data for certain countries or years may return incomplete series

## How this service works

Global Economic Indicators — World Bank open indicator library (GDP, trade, employment, etc., thousands of series) covering all countries.

## Output

Returns structured economic indicator data from the World Bank open database, including time-series values for metrics such as GDP, trade balances, employment rates, and thousands of other macroeconomic series, organized by country and indicator code.

## Request schema (JSON Schema)

```json
{
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "type": "object",
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "type": "string",
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ]
    },
    "queryParams": {
     "type": "object",
     "properties": {},
     "required": []
    }
   },
   "required": [
    "type",
    "method"
   ],
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   },
   "required": [
    "type"
   ]
  }
 },
 "required": [
  "input"
 ]
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "raw": {
   "recent": [
    {
     "date": "2024",
     "value": 29298013000000
    },
    {
     "date": "2024",
     "value": 29298013000000
    }
   ],
   "country": "USA",
   "indicator": "NY.GDP.MKTP.CD"
  },
  "source": "worldbank",
  "data_type": "经济指标",
  "collected_at": "2026-08-09T18:05:07Z"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/world-bank-global-economic-indicators-de361c84/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agentdatum.com](https://www.zero.xyz/host/agentdatum.com/llms.txt)
