# Suverse COVID-19 Global Statistics

> Suverse COVID-19 Global Statistics is a paid API for AI agents from proxy.suverse.io, paid per call via x402, $0.09/call, status unknown (last checked 2026-09-14).

Returns worldwide COVID-19 aggregate statistics including cases, deaths, recovered, active, tests, and per-million metrics from the disease.sh aggregator

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/suverse-disease-covid-global
- Price: $0.09/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/suverse-covid-19-global-statistics-403e5d9d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_MjpleatOZCATH6L61CTKM

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-covid-19-global-statistics-403e5d9d -d '<json body>'
```

Example prompt: Can you pull the latest global COVID-19 statistics — total cases, deaths, recoveries, active cases, and tests — from the disease.sh aggregator?

## When to prefer this

Choose this endpoint when you need a single, keyless, globally aggregated COVID-19 snapshot without per-country breakdown. It is ideal for public health dashboards, automated briefings, and monitoring use cases that require worldwide totals rather than country-level drill-down. Prefer it over direct disease.sh calls when using the x402 micropayment-compatible proxy infrastructure.

## Known failure modes

- Upstream disease.sh API unavailable — proxy returns error or stale data
- Payment failure (x402) if USDC payment is not properly included — returns 402
- Empty or malformed POST body may cause request rejection
- Data may lag real-world counts due to disease.sh update frequency
- todayCases/todayDeaths may read 0 if data has not yet been refreshed for the current day

## How this service works

Global COVID-19 totals from the disease.sh aggregator, no key. Returns worldwide cases, deaths, recovered, active, tests, and per million metrics. For AI agents in public health dashboards.

## Output

A JSON object containing global COVID-19 aggregates: total cases, deaths, recovered, active, critical, and tests; today's incremental cases, deaths, and recovered; per-million rates for cases, deaths, active, recovered, critical, and tests; total population, number of affected countries, and a Unix timestamp of last update. Source is attributed to disease.sh.

## Example request

```json
{
 "query": "COVID-19 global statistics",
 "region": "global",
 "data_type": "confirmed_cases",
 "date_range": {
  "end": "2024-01-31",
  "start": "2024-01-01"
 }
}
```

## 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-covid-19-global-statistics-403e5d9d/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)
