High Heart Rate Alert
Send a notification when your heart rate goes above a threshold you set.
Send a notification when your heart rate goes above a threshold you set.
Log every reading to InfluxDB and build a time-series chart in Grafana.
Compare post-workout heart rate with your resting baseline to gauge recovery.
Send yourself a daily email with your average, peak, and resting heart rate.
Update a sensor with your latest reading and use it in dashboards or condition-based automations.
Use elevated daytime heart rate as a proxy for stress and log it alongside mood data.
HC Webhook sends a JSON object to your endpoint. The heart_rate field contains an array of readings from the last sync window.
{
"timestamp": "2026-04-15T14:00:00Z",
"heart_rate": [
{ "bpm": 62, "time": "2026-04-15T08:00:00Z" },
{ "bpm": 78, "time": "2026-04-15T10:30:00Z" },
{ "bpm": 95, "time": "2026-04-15T12:00:00Z" },
{ "bpm": 68, "time": "2026-04-15T14:00:00Z" }
]
}