# SYNTHORA disease.sh COVID-19 Country Statistics

> SYNTHORA disease.sh COVID-19 Country Statistics is a paid API for AI agents from disease-sh-covid-country.hergertsynthora.com, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-13).

Returns live per-country COVID-19 aggregates including cases, deaths, recovered, active, critical, tests, and per-million rates for a given country.

## Facts

- Endpoint: POST https://disease-sh-covid-country.hergertsynthora.com/service
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/synthora-disease-sh-covid-19-country-statistics-7f24e313
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_aKnqL5zce5S9rcfmFbpVe

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 synthora-disease-sh-covid-19-country-statistics-7f24e313 -d '<json body>'
```

Example prompt: Pull the latest COVID-19 stats for the USA from disease.sh — I want to see total cases, deaths, active cases, and tests per million.

## When to prefer this

Use this endpoint when you need structured, per-country COVID-19 aggregate statistics including both raw counts and normalized per-million rates, especially for agent-driven epidemiology dashboards, travel-risk monitors, or public-health reporting workflows that require current epidemic state by country.

## Known failure modes

- Unknown or misspelled country name returns an error or empty result
- disease.sh upstream API unavailable causes a service failure
- Stale data if disease.sh upstream has not refreshed recently
- Rate limiting or payment failure for the x402 micropayment layer

## How this service works

Returns live per-country COVID-19 aggregates from disease.sh/v3/covid-19/countries: cases, deaths, recovered, active, critical, tests and per-million rates with country metadata. Autonomous agents and agent-to-agent (A2A) epidemiology dashboards, travel-risk and public-health monitors poll it for current epidemic state. Ranking surface: country to normalized case/death metrics. First 3 calls FREE per wallet — send header X-WALLET: 0x<addr>. No charge on upstream failure.

## Output

A JSON object containing the country name, continent, population, total cases, today's cases, active cases, recovered, deaths, today's deaths, critical cases, total tests, cases per million, deaths per million, tests per million, and a Unix millisecond timestamp of the last update.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "country": {
   "type": "string",
   "description": "country"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true,
  "niche": "disease-sh-covid-country",
  "result": {
   "cases": 111820082,
   "active": 786167,
   "deaths": 1219487,
   "country": "USA",
   "updated": 1783776446133,
   "critical": 940,
   "continent": "North America",
   "recovered": 109814428,
   "population": 334805269,
   "todayCases": 0,
   "totalTests": 1186851502,
   "todayDeaths": 0,
   "casesPerOneMillion": 333985,
   "testsPerOneMillion": 3544901,
   "deathsPerOneMillion": 3642
  },
  "provenance": {
   "url": "https://disease.sh/v3/covid-19/countries/USA",
   "source": "disease.sh COVID-19 Country Statistics"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/synthora-disease-sh-covid-19-country-statistics-7f24e313/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from disease-sh-covid-country.hergertsynthora.com](https://www.zero.xyz/host/disease-sh-covid-country.hergertsynthora.com/llms.txt)
