# Suverse Health COVID US State

> Suverse Health COVID US State 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-14).

Returns current COVID-19 cases, deaths, recovered, and per-million rates for a specified US state via a keyless disease.sh proxy.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/suverse-health-covid-us-state
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/suverse-health-covid-us-state-fc79b0f5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_PzIYG4dgG6B5pBmecslEk

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-health-covid-us-state-fc79b0f5 -d '<json body>'
```

Example prompt: What are the current COVID-19 case numbers, deaths, and recovered figures for California — including the per-million rates?

## When to prefer this

Choose this endpoint when you need keyless, per-call access to US state-level COVID-19 statistics without managing your own disease.sh integration. It is ideal for agents that need on-demand public health figures for a single state and can pay micro-USDC per call via x402.

## Known failure modes

- Invalid or unrecognized state name returns an error or empty result
- disease.sh upstream outage causes delayed or failed response
- Stale data if disease.sh hasn't refreshed recently
- Payment failure (x402) if USDC balance is insufficient

## How this service works

Current COVID-19 cases, deaths, recovered, and per-million rates for one US state. Keyless disease.sh. For agents needing state-level US public-health figures.

## Output

Returns a JSON object with the specified US state's current COVID-19 totals including cases, deaths, recovered, active cases, and per-million rates (cases per million, deaths per million) 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-health-covid-us-state-fc79b0f5/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)
