# Global Health & Public Health Data

## Links

- Product page URL: https://www.agentpmt.com/marketplace/healthcare-demographics-data
- Product markdown URL: https://www.agentpmt.com/marketplace/healthcare-demographics-data?format=agent-md
- Product JSON URL: https://www.agentpmt.com/marketplace/healthcare-demographics-data?format=agent-json

## Overview

- Product ID: 6980d5d271cad8f61bf5b1ad
- Vendor: Apoth3osis
- Type: data
- Unit type: request
- Price: 1000 credits
- Categories: Data Science, Data Processing, Academic & Scientific Research, Public Records & Government Data, Medical Reference & Drug Data, Health & Fitness Data, Civic Data & Demographics
- Generated at: 2026-04-15T18:35:55.579Z

### Page Description

Explore health and public health data for any country in the world. Look up life expectancy, mortality rates, immunization coverage, health expenditure, infectious disease prevalence, and demographic health indicators. Compare health outcomes across countries, benchmark against WHO targets, and track progress on global health goals — all from a comprehensive global data set.

### Agent Description

Query life expectancy, mortality rates, immunization coverage, health expenditure, infectious disease indicators, and demographic health data for any country or region. Supports WHO benchmark comparisons, regional averages, and time-series trends.

## Details Tab

### Details

Explore health and public health data for any country in the world. Look up life expectancy, mortality rates, immunization coverage, health expenditure, infectious disease prevalence, and demographic health indicators. Compare health outcomes across countries, benchmark against WHO targets, and track progress on global health goals — all from a comprehensive global data set.

### Actions

- `query_health_data` (10 credits): Fetch health and demographic data for a country or region from the World Bank. Returns mortality rates, life expectancy, immunization coverage, health expenditure, infectious disease prevalence, and demographic indicators with WHO benchmarks and SDG target comparisons.

### Use Cases

Research life expectancy by country, Compare infant and child mortality rates across regions, Track immunization coverage trends, Analyze health expenditure as percentage of GDP, Study infectious disease prevalence, Monitor maternal mortality rates, Benchmark health outcomes against WHO targets, Compare healthcare access across countries, Support public health policy research, Assess progress toward health-related SDG targets

### Workflows Using This Tool

No public workflows currently reference this product.

### Related Content

No related content is currently linked to this product.

## Advanced Tab

### DynamicMCP

- Setup page URL: https://www.agentpmt.com/dynamic-mcp
- Claude setup guide: https://www.agentpmt.com/dynamic-mcp?platform=claude#videos
- ChatGPT setup guide: https://www.agentpmt.com/dynamic-mcp?platform=chatgpt#videos
- Cursor setup guide: https://www.agentpmt.com/dynamic-mcp?platform=cursor#videos
- Windsurf setup guide: https://www.agentpmt.com/dynamic-mcp?platform=windsurf#videos

STDIO connector for Claude Code, Codex, Cursor, Zed, and other LLMs that require STDIO or custom connections. This lightweight connector routes requests to `https://api.agentpmt.com/mcp`. All tool execution happens in the cloud and the server cannot edit any files on your computer.

```bash
npm install -g @agentpmt/mcp-router
agentpmt-setup
```

### REST API

The live page renders cURL, Python, JavaScript, and Node.js examples. Logged-in users see those examples prefilled with their own API and budget credentials.

- Purchase endpoint: https://api.agentpmt.com/products/purchase
- Authorization format: `Bearer <base64(apiKey:budgetKey)>`

```bash
curl -X POST "https://api.agentpmt.com/products/purchase" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer eW91ci1hcGkta2V5LWhlcmU6eW91ci1idWRnZXQta2V5LWhlcmU=" \
  -d '{
    "product_id": "6980d5d271cad8f61bf5b1ad",
    "parameters": {
      "action": "query_health_data",
      "country_or_region": "example_country_or_region",
      "health_topic": "all",
      "time_period": "latest",
      "include_who_benchmarks": true,
      "include_demographic_context": true,
      "include_regional_comparison": false
    }
  }'
```

### Autonomous Agents

Do not use the abbreviated instructions in this product markdown for wallet-based invocation. Retrieve the full External Agent API markdown document instead.

- External Agent API page URL: https://www.agentpmt.com/external-agent-api
- External Agent API markdown URL: https://www.agentpmt.com/external-agent-api?format=agent-md

### Schema

#### Parameters

- Schema type: actions

```json
{
  "actions": {
    "query_health_data": {
      "description": "Fetch health and demographic data for a country or region from the World Bank. Returns mortality rates, life expectancy, immunization coverage, health expenditure, infectious disease prevalence, and demographic indicators with WHO benchmarks and SDG target comparisons.",
      "properties": {
        "country_or_region": {
          "type": "string",
          "description": "Country or region name in plain language (e.g., 'Japan', 'Kenya', 'United States', 'South Asia', 'Sub-Saharan Africa'). Uses fuzzy matching against the World Bank countries API.",
          "required": true
        },
        "health_topic": {
          "type": "string",
          "description": "Health topic to query. Options: mortality, life_expectancy, immunization, expenditure, infectious_disease, demographics, or all.",
          "required": false,
          "default": "all",
          "enum": [
            "mortality",
            "life_expectancy",
            "immunization",
            "expenditure",
            "infectious_disease",
            "demographics",
            "all"
          ]
        },
        "time_period": {
          "type": "string",
          "description": "Time period for data. Use 'latest' for most recent, 'YYYY' for a specific year, 'YYYY:YYYY' for a range, 'last5' or 'last10' for recent years.",
          "required": false,
          "default": "latest"
        },
        "include_who_benchmarks": {
          "type": "boolean",
          "description": "Include WHO benchmarks and SDG 3 target comparisons for applicable indicators.",
          "required": false,
          "default": true
        },
        "include_demographic_context": {
          "type": "boolean",
          "description": "Include population and demographic context (total population, age distribution). Automatically skipped when health_topic is 'demographics'.",
          "required": false,
          "default": true
        },
        "include_regional_comparison": {
          "type": "boolean",
          "description": "Include a note about regional comparison data availability.",
          "required": false,
          "default": false
        }
      }
    }
  },
  "properties": {
    "action": {
      "type": "string",
      "description": "Action to perform: 'get_instructions' for documentation, 'query_health_data' to fetch health and demographic data",
      "required": false,
      "enum": [
        "get_instructions",
        "query_health_data"
      ]
    },
    "country_or_region": {
      "type": "string",
      "description": "Country or region name in plain language (e.g., 'Japan', 'Kenya', 'South Asia'). Required for query_health_data.",
      "required": false
    },
    "health_topic": {
      "type": "string",
      "description": "Health topic to query. If omitted, defaults to 'all' (returns all topics).",
      "required": false,
      "default": "all",
      "enum": [
        "mortality",
        "life_expectancy",
        "immunization",
        "expenditure",
        "infectious_disease",
        "demographics",
        "all"
      ]
    },
    "time_period": {
      "type": "string",
      "description": "Time period: 'latest' (most recent year), 'YYYY' (specific year), 'YYYY:YYYY' (range), 'last5' (last 5 years)",
      "required": false,
      "default": "latest"
    },
    "include_who_benchmarks": {
      "type": "boolean",
      "description": "Include WHO benchmarks and SDG targets",
      "required": false,
      "default": true
    },
    "include_demographic_context": {
      "type": "boolean",
      "description": "Include population and demographic context",
      "required": false,
      "default": true
    },
    "include_regional_comparison": {
      "type": "boolean",
      "description": "Include regional averages for comparison",
      "required": false
    }
  }
}
```

### Usage Instructions

# Health and Public Health Data Hub

Access health and demographic data for any country from the World Bank. Query mortality rates, life expectancy, immunization coverage, health expenditure, infectious disease prevalence, and demographic indicators with WHO benchmarks and SDG 3 target comparisons.

## Actions

### query_health_data

Fetch health and demographic data for a country or region from the World Bank World Development Indicators database. Uses the World Bank countries API for fuzzy country name resolution.

**Required fields:**
- `action` — `"query_health_data"`
- `country_or_region` (string) — Country or region name in plain English (e.g., `"Japan"`, `"Kenya"`, `"United States"`, `"South Asia"`, `"Sub-Saharan Africa"`). The tool searches the World Bank countries API for exact and partial matches.

**Optional fields:**
- `health_topic` (string) — Health topic to query. Default: `"all"`.
  - `"mortality"` — Maternal mortality, under-5 mortality, infant mortality, neonatal mortality, death rate
  - `"life_expectancy"` — Overall life expectancy, male life expectancy, female life expectancy
  - `"immunization"` — Measles, DPT, and Hepatitis B immunization coverage rates
  - `"expenditure"` — Health expenditure per capita and as % of GDP, physicians per 1,000, hospital beds per 1,000, nurses/midwives per 1,000
  - `"infectious_disease"` — Tuberculosis incidence, HIV prevalence
  - `"demographics"` — Birth rate, death rate, fertility rate, total population, population ages 0-14, population ages 65+, urban population percentage
  - `"all"` — All health indicators listed above
- `time_period` (string) — Time period for data. Default: `"latest"`.
  - `"latest"` — Most recent available data point
  - `"YYYY"` — Specific year (e.g., `"2020"`)
  - `"YYYY:YYYY"` — Year range (e.g., `"2015:2020"`)
  - `"last5"` — Last 5 years of data
  - `"last10"` — Last 10 years of data
  - Also accepts `"last_5_years"` and `"last_10_years"`
- `include_who_benchmarks` (boolean) — Include WHO benchmarks and SDG 3 target comparisons for applicable indicators. Shows target value, current value, difference, and whether the target is met. Default: `true`.
- `include_demographic_context` (boolean) — Include population context (total population, age distribution under 14 and over 65) alongside health data. Automatically skipped when the topic is already `"demographics"`. Default: `true`.
- `include_regional_comparison` (boolean) — Include a note about regional comparison data availability. Default: `false`.

**Example — Life expectancy for a country:**
```json
{
  "action": "query_health_data",
  "country_or_region": "Japan",
  "health_topic": "life_expectancy",
  "time_period": "latest"
}
```

**Example — Mortality data with WHO benchmarks:**
```json
{
  "action": "query_health_data",
  "country_or_region": "Kenya",
  "health_topic": "mortality",
  "include_who_benchmarks": true
}
```

**Example — All health data over a time range:**
```json
{
  "action": "query_health_data",
  "country_or_region": "India",
  "health_topic": "all",
  "time_period": "2015:2020"
}
```

**Example — Immunization coverage with demographic context:**
```json
{
  "action": "query_health_data",
  "country_or_region": "Nigeria",
  "health_topic": "immunization",
  "include_demographic_context": true,
  "include_who_benchmarks": true
}
```

**Example — Health expenditure without benchmarks:**
```json
{
  "action": "query_health_data",
  "country_or_region": "United States",
  "health_topic": "expenditure",
  "include_who_benchmarks": false,
  "time_period": "last5"
}
```

## Response Format

Responses include:

- **country** — Resolved country name from World Bank metadata.
- **iso_code** — ISO country code.
- **region** — World Bank region name.
- **income_level** — World Bank income classification.
- **query** — Echo of the topic and time period requested.
- **indicators** — Per-indicator results, each with:
  - `name` — Human-readable indicator name
  - `data` — Array of data points with year, value, and unit
  - `latest_value` — Most recent value
  - `latest_year` — Year of most recent value
- **who_benchmarks** — When enabled, per-indicator comparison to WHO/SDG targets:
  - `target` — WHO target value
  - `current_value` — Country's current value
  - `difference` — Gap from target
  - `unit` — Measurement unit
  - `sdg` — Related SDG target (e.g., SDG 3.1, SDG 3.2, SDG 3.b, SDG 3.3)
  - `assessment` — "Meets target" or "Above/Below target"
  - `meets_target` — Boolean
- **demographic_context** — When enabled, population total, ages 0-14 percentage, and ages 65+ percentage.
- **regional_comparison_note** — When enabled, notes the region for which comparison data is available.

If a country name is not found, the response returns an error with a suggestion to try the full country name.

## WHO Benchmarks & SDG Targets

| Indicator | SDG Target | WHO Target |
|---|---|---|
| Maternal mortality | SDG 3.1 | < 70 per 100,000 live births |
| Under-5 mortality | SDG 3.2 | < 25 per 1,000 live births |
| Infant mortality | SDG 3.2 | < 12 per 1,000 live births |
| Neonatal mortality | SDG 3.2 | < 12 per 1,000 live births |
| Measles immunization | SDG 3.b | >= 95% coverage |
| DPT immunization | SDG 3.b | >= 95% coverage |
| HIV prevalence | SDG 3.3 | End epidemic by 2030 |
| TB incidence | SDG 3.3 | End epidemic by 2030 |

For mortality and disease indicators, lower values are better (below target = meets target). For immunization, higher values are better (above target = meets target).

## Health Indicators by Topic

| Topic | Indicators |
|---|---|
| mortality | Maternal mortality, Under-5 mortality, Infant mortality, Neonatal mortality, Death rate |
| life_expectancy | Life expectancy (overall), Life expectancy (male), Life expectancy (female) |
| immunization | Measles immunization, DPT immunization, Hepatitis B immunization |
| expenditure | Health expenditure per capita (USD), Health expenditure (% GDP), Physicians per 1,000, Hospital beds per 1,000, Nurses/midwives per 1,000 |
| infectious_disease | Tuberculosis incidence (per 100,000), HIV prevalence (% population) |
| demographics | Birth rate, Death rate, Fertility rate, Total population, Population ages 0-14 (%), Population ages 65+ (%), Urban population (%) |

## Common Workflows

1. **Country health profile** — Call with `health_topic: "all"` to get a complete health snapshot with WHO benchmark comparisons.
2. **SDG 3 progress check** — Query mortality and immunization topics with `include_who_benchmarks: true` to assess progress toward health SDG targets.
3. **Health system assessment** — Use `health_topic: "expenditure"` to review healthcare spending, physician density, and hospital capacity.
4. **Cross-country comparison** — Make separate calls for different countries with the same topic and time period, then compare results.
5. **Disease burden analysis** — Use `health_topic: "infectious_disease"` with `time_period: "last10"` to track TB and HIV trends.

## Important Notes

- Data is sourced from the World Bank World Development Indicators database.
- `health_topic` must be one of: mortality, life_expectancy, immunization, expenditure, infectious_disease, demographics, all. Invalid values produce a validation error.
- `time_period` is validated and must be `"latest"`, a 4-digit year, a `YYYY:YYYY` range, or `"last5"`/`"last10"`/`"last_5_years"`/`"last_10_years"`. Invalid formats produce a validation error.
- Data availability varies by country and indicator; some countries may have gaps.
- Most recent data may be 1-3 years behind the current year.
- All indicator data is fetched concurrently for performance.
- Demographic context is automatically excluded when the health topic is already "demographics" to avoid duplicate data.

### About The Developer

- Vendor name: Apoth3osis
- Website: apoth3osis.io

We build tools that enable AI agents to excel in the mathematical realm.

Our small team develops experimental and unique solutions in the AI arena, with a strong focus on modular computing for agentic applications and custom model deployment. We have handled projects for a variety of applications across many sectors, from algorithmic trading and financial analysis, to molecular simulations and predictions, to habitat and biodiversity monitoring and wildlife conservation.

### Frequently Asked Questions

No linked FAQs are currently available.

### Dependencies

This product has no public dependency products.