Participants Hub · epihack.org/arizona

Your toolkit for
building faster.

Everything you need for the five-day sprint — curated data sources, API endpoints, and documentation to help your team detect emerging health threats before they escalate.

📅 MAY 18–22, 2026
📍 HEALTH SCIENCES INNOVATION BUILDING
🔬 ONE HEALTH · PARTICIPATORY SURVEILLANCE
01 — Data Sources

Public datasets for your prototype.

Curated open data covering disease surveillance, travel patterns, environmental conditions, and humanitarian indicators. All sources are freely accessible.

Surveillance
CDC Travelers' Health & Disease Notices
Travel · Outbreak Alerts

Real-time travel health notices, outbreak alerts by destination, and disease-specific advisories. Useful for mapping geographic risk zones and correlating travel patterns with outbreak signals.

wwwnc.cdc.gov/travel
Influenza
CDC FluView Interactive
ILI · Sentinel Data

Weekly influenza-like illness surveillance data from outpatient networks, hospitals, and labs. Includes regional breakdowns, positivity rates, and historic time-series going back to 1997.

cdc.gov/fluview/interactive
Biosurveillance
PAHO PLISA — Health Information Platform for the Americas
Regional · API

Pan American Health Organization's open data platform covering disease incidence, vaccination coverage, and outbreak indicators across 52 countries in the Americas. Queryable by disease, country, and year with JSON and CSV outputs.

paho.org/data
Mobility
Airline Routes & Flight Timetables
OAG · OpenFlights

Global airline route networks, seat capacity by route, and historic flight schedules. Essential for modelling pandemic spread pathways and calculating cross-border exposure risk from infectious regions.

github.com/jpatokal/openflights
Environment
Weather Data & Vector Habitat Indices
NOAA · NASA EarthData

Temperature, precipitation, humidity, and NDVI data correlated with mosquito and tick habitat suitability. Use to model Aedes aegypti range, dengue/West Nile seasonality, and climate-driven vector risk.

earthdata.nasa.gov
Humanitarian
Humanitarian Data Exchange (HDX)
OCHA · 19,000+ datasets

UN-backed open platform with health, population, infrastructure, and crisis datasets from 250+ organisations. Covers displacement, cholera outbreaks, vaccination coverage, and health facility maps by country.

data.humdata.org
Global Disease
WHO Global Health Observatory
WHO · REST API

WHO's open data repository covering mortality, morbidity, immunisation, and disease-specific indicators across 194 member states. Queryable via REST API with JSON and CSV outputs.

who.int/data/gho
Early Warning
ProMED — Program for Monitoring Emerging Diseases
ISID · RSS / API

One of the world's oldest infectious disease outbreak reporting systems. Curated outbreak reports submitted by a global network of experts, available via RSS and data API for real-time signal mining.

promedmail.org
One Health
GBIF — Global Biodiversity Information Facility
Species Occurrence · API

2+ billion species occurrence records including vectors, reservoir hosts, and wildlife. Critical for One Health modelling — map where disease reservoirs overlap with human populations and climate shifts.

gbif.org/developer
Social Media Surveillance
Episomer — ECDC Early Warning Tool
ECDC · Open Source · R

Just launched by ECDC (May 2026), Episomer monitors Bluesky social media posts by time, place, and topic to detect early signals of public health threats. Successor to epitweetr, it includes an interactive web app for signal detection and alert review. Freely available as an open-source R package.

ecdc.europa.eu/episomer
02 — Epicore API

Closed event intelligence on demand.

Epicore provides structured data on verified public health events globally. Query closed events by date range and receive machine-readable JSON with outbreak details, source references, and verification outcomes.

GET epicore.org/scripts/EventsAPI2.php

Full base URL:

https://epicore.org/scripts/EventsAPI2.php?start_date=YYYY-MM-DD&end_date=YYYY-MM-DD

Example call for February 2026:

start_date string · required e.g. 2026-02-01
Start of the query date window. Format: YYYY-MM-DD
end_date string · required e.g. 2026-02-28
End of the query date window. Format: YYYY-MM-DD

Verification outcomes returned in the outcome field:

VP — Verified Positive VN — Verified Negative UP — Update

Source type codes in the source field:

OR — Official Report MR — Media Report OC — Other Communication
Sample Response · application/json
{ "EventsList": { "all": [ { "event_id": "12345", "title": "Suspected cholera outbreak in Region X", "description": null, "create_date": "15-Jan-2025", "action_date": "20-Jan-2025", "outcome": "VP", "phe_description": "Cholera", "phe_additional": "Additional context...", "source": "MR", "source_details": "https://example.com/news-article", "iso_action_date": "2025-01-20 14:30:00", "event_id_int": 12345, "country": "Thailand" } ] }, "closedEvents": null, "numNotRatedResponses": null }
Field Reference
Field Type Description
event_idstringRFI ID as a string
titlestringRFI title describing the health event
descriptionstring / nullAlways null in current implementation
create_datestringRFI creation date — format DD-Mon-YYYY (e.g. 15-Jan-2025)
action_datestringClosure date — format DD-Mon-YYYY
outcomestringVerification outcome: VP (Verified Positive), VN (Verified Negative), UP (Update)
phe_descriptionstringPublic health event description (e.g. "Cholera")
phe_additionalstringAdditional public health event context
sourcestringSource type code: OR, MR, or OC
source_detailsstringSource URL or description
iso_action_datestringClosure date in ISO format YYYY-MM-DD HH:MM:SS
event_id_intintegerRFI ID as an integer
countrystringFull country name where the event occurred