HANTAVIRUSPremium
Developer

Public JSON API

Free public access to the same data the Hantavirus Tracker site uses. CORS-enabled, cached at the edge, no API key required for current rate limits. Licensed under CC BY 4.0 — please link back to https://hantapulse.org wherever you display the data.

Endpoints

GET/api/v1/regions

Composite risk index, computed hourly, for every tracked country and US state.

curl https://hantapulse.org/api/v1/regions
{
  "data": [
    {
      "region_code": "AR",
      "name": "Argentina",
      "score": 69,
      "bucket": "high",
      "components": { ... },
      "computed_at": "2026-05-09T17:00:00Z"
    }, ...
  ],
  "meta": { "count": 95, "license": "CC BY 4.0 — attribution required", ... }
}
GET/api/v1/news?country=AR&limit=50

Latest aggregated news items, filterable by country (ISO 3166-1 alpha-2) or US state region (e.g. US-NM). Limit 1–200.

curl "https://hantapulse.org/api/v1/news?country=AR&limit=10"
GET/api/v1/events?days=90&format=geojson

Geocoded outbreak events from WHO, CDC, PAHO, and ProMED-mail. Default JSON; pass format=geojson for FeatureCollection (drop straight into Mapbox/MapLibre/Leaflet).

curl "https://hantapulse.org/api/v1/events?days=90&format=geojson"

Embeddable map

Want the live world map on your own site? Drop in this iframe — it's the simplest backlink path.

<iframe
  src="https://hantapulse.org/embed"
  width="100%"
  height="500"
  loading="lazy"
  style="border:0; border-radius:6px"
  referrerpolicy="no-referrer-when-downgrade"
  title="Hantavirus Tracker — live world map"
></iframe>

Rate limits & caching

Attribution

When you display data sourced from this API, please include a visible attribution link. Suggested wording:

Source: Hantavirus Tracker (https://hantapulse.org)

Data caveats

The risk index is a composite signal, not a clinical case-rate forecast — see methodology for the formula and limitations. For public-health decisions, consult the underlying authoritative sources directly: WHO, CDC, PAHO, ProMED-mail.

Heads up

If you build something with this API, drop me a line — I'll happily link to it from a future community page. Bug reports and feature requests welcome.