# Suverse World Bank Birth Rate Time Series

> Suverse World Bank Birth Rate Time Series 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 annual birth rate per 1,000 population for any country as a World Bank Open Data time series, keyed by ISO country code.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/suverse-wb-birth-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/suverse-world-bank-birth-rate-time-series-998203a4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_eFU4Tb18lkuhIbkoVSG8e

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-birth-rate-time-series-998203a4 -d '<json body>'
```

Example prompt: Pull the full yearly birth rate per 1,000 time series for Nigeria (ISO code NG) from the World Bank so I can analyze demographic trends over time.

## When to prefer this

Choose this endpoint when you need no-API-key access to World Bank birth rate data as a clean yearly time series, especially for macro, demographic, or cross-country analysis pipelines. Prefer it over raw World Bank API access when you want a simplified, agent-friendly interface that handles authentication and formatting automatically.

## Known failure modes

- Invalid or unrecognized ISO country code returns an error or empty dataset
- Country has no World Bank data available for the requested period
- World Bank upstream data gap results in null values for certain years
- Malformed POST body causes a 400-level error
- Service temporarily unavailable returns a 5xx error

## How this service works

Birth 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

Returns a structured time series with country name, ISO code, and an array of year-value pairs representing the birth rate per 1,000 population, 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-birth-rate-time-series-998203a4/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)
