# Suverse World Bank Health Expenditure Time Series

> Suverse World Bank Health Expenditure Time Series 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 health expenditure as a share of GDP for any country, sourced from World Bank Open Data, identified by ISO country code.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/suverse-wb-health-expenditure
- 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-health-expenditure-time-series-aca4fcb1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_r9b5g2hcw7fn-5ECDadiB

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-health-expenditure-time-series-aca4fcb1 -d '<json body>'
```

Example prompt: Can you pull the World Bank health expenditure as a share of GDP time series for France — I want to see how it's trended year by year?

## When to prefer this

Choose this endpoint when you need structured, authoritative World Bank health expenditure as a share of GDP data for any country without obtaining a World Bank API key. It is especially useful for macro, demographic, and cross-country comparative analyses requiring a clean yearly time series, and when you want a simple pay-per-call model via x402 rather than managing API credentials.

## Known failure modes

- Invalid or unrecognized ISO country code returns an error or empty dataset
- Country has no World Bank data available for certain years, resulting in null or missing values
- Network or proxy timeout if the World Bank upstream API is slow
- Malformed request body (missing required fields) returns a 4xx error
- Payment failure via x402 protocol blocks the call before it reaches the data layer

## How this service works

Health Expenditure Share Of GDP 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

Returns a time series of annual data points for the specified country, each containing the country name or ISO code, the year, and the health expenditure value as a percentage of GDP, 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-health-expenditure-time-series-aca4fcb1/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)
