Nightscout
Node-RED

Nightscout

Gettin Nightscout Data
A flow by Daymon

Download flow

Flow Details

Getting Nightscout Data from URL

{ "name": "Nightscout Glukose Flow", "enabled": true, "triggers": [ { "type": "Timer", "interval": 300 } ], "actions": [ { "type": "HTTP", "method": "GET", "url": "https://DEINENIGHTSCOUT/api/v1/entries.json?count=2", "response": { "parse": true, "actions": [ { "type": "CustomApp", "name": "BLOODGLUCOSE", "payload": { "icon": 65219, "text": "${response[0].sgv} mg/dl | Δ ${delta}", "duration": 10 }, "variables": { "delta": "${response[0].sgv - response[1].sgv}" } } ] } } ] }
-- Flow first published on July 18, 2025.