Out-of-Range Alert
Send a notification when glucose goes above or below your target range.
Send a notification when glucose goes above or below your target range.
Append every reading with timestamp to a spreadsheet — easy to share with your care team.
Send a daily email with your average glucose, time in range, and any spikes.
Log glucose readings alongside meal times in Notion to spot which foods cause spikes.
Push readings into InfluxDB and visualize your glucose curve over any time period.
Build an n8n workflow that sends a weekly glucose report to a shared spreadsheet your doctor can access.
HC Webhook sends a JSON object to your endpoint. The blood_glucose field contains an array of readings from the last sync window.
{
"timestamp": "2026-04-15T08:30:00Z",
"blood_glucose": [
{ "mmol_per_l": 5.4, "time": "2026-04-15T07:00:00Z" },
{ "mmol_per_l": 6.1, "time": "2026-04-15T08:30:00Z" }
]
}