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/flu/weekly
Biosurveillance
BEACON — Biosurveillance Ecosystem
Multi-source · API

Aggregates signals from news, social media, official reports, and lab data for early outbreak detection. Supports querying by disease, location, and date range with structured JSON output.

beacon.phiresearchlab.org
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.

openflights.org/data
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
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 /api/events/closed
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
03 — HealthMap API

Real-time outbreak intelligence.

HealthMap aggregates disease outbreak data from diverse sources — news, eyewitness reports, and official alerts — into a unified, geolocated feed. API documentation will be shared with participants prior to the sprint.

Documentation coming soon

HealthMap API endpoint details, authentication credentials, and query parameters will be provided to registered participants before May 18. Check back here or watch for an email from the organisers.

⏳ Details shared before sprint kick-off
GET /api/v1/alerts  ·  [ endpoint TBC ]
diseasestring · TBC
Filter by disease name or ICD code
countrystring · TBC
ISO 3166-1 alpha-2 country code
start_datestring · TBC
Start date filter — format TBC
end_datestring · TBC
End date filter — format TBC
Expected Response Shape · TBC
{ "alerts": [ { "id": "[ TBC ]", "disease": "[ TBC ]", "location": "[ TBC ]", "lat": 0.0, "lng": 0.0, "date": "[ TBC ]", "source_url": "[ TBC ]" } ], "total": 0, "page": 1 }