Weigh-In Log in Google Sheets
Every time you log a weight, it gets appended to a spreadsheet with the date automatically.
Every time you log a weight, it gets appended to a spreadsheet with the date automatically.
Feed weight data into InfluxDB and chart your rolling 30-day trend in Grafana.
Send a notification when your weight crosses a target you set — for gains or losses.
Calculate a 7-day average weight in n8n and send it to yourself every Monday to reduce noise from daily fluctuations.
Combine weight with your height in an n8n formula to log your BMI alongside each weigh-in.
Store weight alongside body fat percentage and lean mass in Notion for a full body composition history.
HC Webhook sends a JSON object to your endpoint. The weight field contains an array of readings from the last sync window.
{
"timestamp": "2026-04-15T07:30:00Z",
"weight": [
{ "kg": 78.4, "time": "2026-04-15T07:30:00Z" }
]
}