Low SpO2 Alert
Send an alert if your oxygen saturation drops below 95% during the night.
Send an alert if your oxygen saturation drops below 95% during the night.
Log overnight SpO2 readings to a spreadsheet to monitor for sleep apnea patterns.
Track SpO2 daily during illness and chart it in Grafana alongside temperature and heart rate.
Display your latest SpO2 on a Home Assistant dashboard and trigger alerts for low values.
Log SpO2 after hard workouts to confirm you are recovering well.
Send a weekly email with your average SpO2 and flag any nights with readings below your threshold.
HC Webhook sends a JSON object to your endpoint. The oxygen_saturation field contains an array of readings from the last sync window.
{
"timestamp": "2026-04-15T07:00:00Z",
"oxygen_saturation": [
{ "percentage": 97, "time": "2026-04-15T02:00:00Z" },
{ "percentage": 96, "time": "2026-04-15T04:00:00Z" },
{ "percentage": 98, "time": "2026-04-15T06:00:00Z" }
]
}