Duaer

入门

在 Duaer 里查 WHO 卫生统计

在 Duaer 里:世界卫生组织全球卫生观察站的各国卫生统计:期望寿命、死亡率、疾病负担、危险因素与卫生体系,可按年份与性别查看。一次成功查询用 1 额度。

能拿到什么

Duaer 数据市场里的「WHO 卫生统计」:世界卫生组织全球卫生观察站的各国卫生统计:期望寿命、死亡率、疾病负担、危险因素与卫生体系,可按年份与性别查看。查到结果时用 1 额度,结果交给数字组织的下一个节点。

从节点创建器选 Duaer 数据 → WHO 卫生统计,或打开 数据市场。相关:世界银行指标、diseases、空气质量。

适合做什么

  • 比较各国期望寿命、肥胖率或烟草使用率。
  • 在卫生报告中加入带置信区间的 WHO 官方数据。

在画布里检索

  1. 打开节点创建器,选 Duaer 数据 → WHO health statistics。
  2. 填 Indicator(如 WHOSIS_000001)与可选 Country(三位 ISO 代码)、Year;或只填 Words 查指标代码。
  3. Limit 默认 10,最大 20。执行。

查到结果才扣 1 额度;没有结果、输入有误或上游失败都不扣。

用 API 调用

  • GET https://api.duaer.com/v1/data/who-gho?indicator=WHOSIS_000001&country=CHN&limit=6
  • Authorization: Bearer <Duaer key>

下方是与数据市场「复制技能」相同的英文技能,含参数、示例与返回字段。

调用技能(英文)

与数据市场「复制技能」一致。

---
name: duaer-who-gho
description: >-
  Duaer WHO health statistics. Country health statistics from the WHO Global Health Observatory: life expectancy, mortality, disease burden, risk factors, and health systems, by year and sex.
  One successful search uses 1 Duaer credit.
---

# Duaer WHO health statistics

Duaer WHO health statistics reads the WHO GHO OData API. With an indicator code it returns values newest first, often split by sex; with only `words` it lists matching indicator codes.

## When to use

- Compare life expectancy, obesity, or tobacco use across countries.
- Add official WHO figures with confidence intervals to a health report.

## When not to use

- Economic indicators. Use https://skills.duaer.com/world-bank.md.
- Disease records and genetics. Use https://skills.duaer.com/diseases.md.

## Call

`GET https://api.duaer.com/v1/data/who-gho?indicator=WHOSIS_000001&country=CHN&limit=6`

Header: `Authorization: Bearer <Duaer key>`

Use an account key or a model API key.

Get a Duaer key: https://skills.duaer.com/keys.md

## Parameters

Provide `indicator`, or `words` to find indicator codes.

- `indicator` — GHO indicator code, such as WHOSIS_000001 (life expectancy at birth).
- `country` — Optional. Three-letter ISO code, such as CHN.
- `year` — Optional. Only this year.
- `words` — Optional. Find indicator codes by name, such as obesity, when no indicator is given.
- `limit` — Optional. Rows to return, from 1 to 20. Default 10.

Common codes: `WHOSIS_000001` life expectancy at birth, `WHOSIS_000015` life expectancy at 60, `NCD_BMI_30A` adult obesity (%), `M_Est_smk_curr_std` tobacco use (%), `MDG_0000000001` infant mortality.

## Examples

- `GET https://api.duaer.com/v1/data/who-gho?indicator=WHOSIS_000001&country=CHN&limit=6` — life expectancy in China.
- `GET https://api.duaer.com/v1/data/who-gho?words=obesity` — find obesity indicator codes.

## Result

The response is `{ "items": [...] }`. Each item has `source`, `title`, `url`, and `summary`, plus:

- `indicator`, `indicatorName` — GHO code and name.
- `country`, `region` — ISO3 code and WHO region.
- `year`, `breakdown` — year and split such as female or both sexes.
- `value`, `low`, `high`, `display` — value, uncertainty range, and WHO display text.

Fields without a value are left out.

## Credits

A search that returns at least one row uses 1 credit.
An empty search, a search that finds nothing, or a failed search uses 0.
Wrong input returns 400 with a message and uses 0.
No remaining credits returns 402 and does not search.
A missing key returns 401.

## Related

- https://skills.duaer.com/world-bank.md — Duaer World Bank indicators
- https://skills.duaer.com/diseases.md
- https://skills.duaer.com/air-quality.md — Duaer Air quality

常见问题

Duaer 的WHO 卫生统计检索扣多少额度?

查到结果时扣 1 额度;没有结果或出错不扣。

Duaer 的 WHO 指标代码怎么找?

只填 Words(如 obesity)调用 Duaer WHO 卫生统计,从结果里复制 indicator。

同组