# Suverse COVID-19 Country Statistics

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

Returns COVID-19 case statistics for a specified country including cases, deaths, recovered, active, tests, and per-million metrics via the disease.sh aggregator.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/suverse-disease-covid-country
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/suverse-covid-19-country-statistics-e31d8cf9
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_neyVsE0Uhx-NKK2vaILzF

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-country-statistics-e31d8cf9 -d '<json body>'
```

Example prompt: Pull the latest COVID-19 stats for Brazil — I need total cases, deaths, recoveries, active cases, and the per-million breakdown for a public health risk report.

## When to prefer this

Choose this endpoint when you need COVID-19 statistics for a single country quickly without managing an API key, and when per-million normalized metrics are needed alongside raw counts for public health dashboards or risk assessments. Prefer it over direct disease.sh calls when operating in an x402 micropayment-native agentic environment.

## Known failure modes

- Invalid or unrecognized country name returns an error or empty result
- disease.sh upstream outage causes stale or unavailable data
- Missing required body parameters results in a 400-level error
- Payment failure via x402 protocol blocks the request before execution

## How this service works

COVID-19 case statistics for a country from the disease.sh aggregator, no key. Returns cases, deaths, recovered, active, tests, and per million metrics. For AI agents in public health dashboards and risk context.

## Output

A JSON object containing COVID-19 metrics for the requested country: total confirmed cases, deaths, recovered, active cases, critical cases, total tests, and per-million equivalents for each metric, sourced from the disease.sh aggregator.

## 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-country-statistics-e31d8cf9/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)
