Node-RED
Miscellaneous
AWTRIX 3
Nightscout
Gettin Nightscout Data
Built by Daymon
Published 18 July 2025 · 2 downloads
Getting Nightscout Data from URL
XBJpoqZkOrzw.json · 0.7 KB
{
"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}"
}
}
]
}
}
]
}