# World Bank Death Rate Time Series by Country

> World Bank Death Rate Time Series by Country 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 World Bank Open Data death rate (per 1,000 people) as a yearly time series for any country specified by ISO code, requiring no API key.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/suverse-wb-death-rate
- 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/world-bank-death-rate-time-series-by-country-653f4b2f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_K1m_KbXBPb3zV22pWMGcH

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-death-rate-time-series-by-country-653f4b2f -d '<json body>'
```

Example prompt: Pull the full yearly death rate per 1,000 people time series from the World Bank for Japan — I need to see how mortality has trended over the decades.

## When to prefer this

Use this endpoint when you need keyless access to World Bank death rate data as a clean yearly time series for any country by ISO code — ideal for demographic analysis, macro research, and cross-country mortality comparisons without requiring a World Bank API key or complex query construction.

## Known failure modes

- Invalid or unrecognized ISO country code returns an error or empty dataset
- Country has incomplete World Bank data for certain years, resulting in null values in the series
- Service unavailable returns a 402 or 5xx error
- Malformed request body returns a validation error

## How this service works

Death Rate Per 1000 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 of yearly death rate values (per 1,000 people) for the requested country, including the country name, year, and corresponding death rate value 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/world-bank-death-rate-time-series-by-country-653f4b2f/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)
