# World Bank Macro Dashboard

> World Bank Macro Dashboard is a paid API for AI agents from worldbank-x402.vercel.app, paid per call via x402, $0.005/call, status down (last checked 2026-09-15).

Returns 10 key development indicators for any country in a single call: GDP, GDP per capita, GDP growth, population, life expectancy, inflation, unemployment, CO2, internet usage, and Gini index.

## Facts

- Endpoint: GET https://worldbank-x402.vercel.app/worldbank/dashboard
- Price: $0.005/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/worldbank-x402-vercel-app-e02ce3b5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_DuR7DXsnjPmRjcfKd_VU7

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 worldbank-x402-vercel-app-e02ce3b5
```

Example prompt: Pull up the full World Bank macro dashboard for Brazil — I need GDP, population, life expectancy, inflation, unemployment, CO2 emissions, internet usage, and the Gini index all at once.

## When to prefer this

Use this endpoint when you need a broad multi-indicator snapshot of a country's development status in a single request, rather than fetching individual indicators one at a time. Ideal for dashboards, country briefings, or comparative research where you need GDP, demographics, health, inequality, and environmental data together. Prefer the single-indicator endpoint if you only need one specific metric to minimize cost.

## Known failure modes

- Invalid or unrecognized ISO2 country code returns an error or empty dashboard
- World Bank data may be missing or several years stale for some indicators in low-data countries
- Payment of $0.005 USDC required per call; missing or failed x402 payment returns 402 status
- Some small territories or non-sovereign entities may not have World Bank coverage

## How this service works

Comprehensive World Bank macro dashboard for any country. Returns 10 key development indicators: GDP, GDP per capita, GDP growth, population, life expectancy, inflation, unemployment, CO2, internet usage, and Gini index.

## Output

A structured dashboard object keyed by country (ISO2 code and full name) containing the 10 most recent available values for: GDP (total), GDP per capita, GDP growth rate, total population, life expectancy at birth, inflation rate, unemployment rate, CO2 emissions per capita, internet users (% of population), and Gini index.

## 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"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "country"
     ],
     "properties": {
      "country": {
       "type": "string",
       "description": "ISO2 country code (US, CN, DE, JP, GB, IN, BR, etc.)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "country": {
       "type": "string"
      },
      "dashboard": {
       "type": "object"
      },
      "country_name": {
       "type": "string"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/worldbank-x402-vercel-app-e02ce3b5/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from worldbank-x402.vercel.app](https://www.zero.xyz/host/worldbank-x402.vercel.app/llms.txt)
