# Suverse COVID-19 Historical Case Timeline

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

Returns the last 30 days of daily COVID-19 cases, deaths, and recovered counts for a specified country, sourced from disease.sh.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/suverse-disease-covid-historical
- Price: $0.003/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-historical-case-timeline-1b5ca76b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_fDIfgsY4TYYroPaA7i3Yn

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-historical-case-timeline-1b5ca76b -d '<json body>'
```

Example prompt: Can you pull the COVID-19 historical case timeline for France — I want the last 30 days of daily cases, deaths, and recovered counts so I can chart the pandemic trend?

## When to prefer this

Choose this endpoint when you need recent (last 30 days) daily COVID-19 case, death, and recovery data for a specific country without managing your own disease.sh API integration. It is ideal for AI agents building charts or trend analyses on pandemic data and removes the need for an API key or direct upstream management.

## Known failure modes

- Invalid or unrecognized country name/code returns an error or empty result
- disease.sh upstream unavailability causes a proxy failure
- Malformed POST body or missing required fields returns a 400-level error
- Rate limiting or payment failures return a 402 or 429 response

## How this service works

Historical COVID-19 case timeline for a country from disease.sh, no key, last 30 days. Returns daily cases, deaths, and recovered. For AI agents charting pandemic trends.

## Output

A time-series dataset covering the last 30 days for a given country, with daily entries for confirmed COVID-19 cases, deaths, and recovered counts, sourced from disease.sh.

## 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-historical-case-timeline-1b5ca76b/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)
