Multi-App Health Sync
Fan health data out to Google Sheets, Airtable, and Notion simultaneously in a single Make scenario.
Create a new scenario in Make. Add a "Webhooks > Custom Webhook" module as the trigger and copy the generated URL.
Paste the Make webhook URL into HC Webhook. Pick your health data types and set your sync schedule.
Chain Make modules to route data wherever you need โ spreadsheets, CRMs, databases, or messaging apps.
Fan health data out to Google Sheets, Airtable, and Notion simultaneously in a single Make scenario.
Use Make's Router and Filter modules to send different messages depending on whether you hit your step goal.
Create a Trello card for each workout session. Build a Kanban-style training log automatically.
Log exercise sessions from Health Connect as Google Calendar events โ keep your activity visible alongside your schedule.
Push health data into a CRM custom field for wellness programs or corporate health tracking.
Post a daily health summary to a Discord server or Telegram group with Make's messaging modules.
Each sync posts one JSON object to your endpoint containing all selected data types as arrays. Only types with new data are included.
{
"timestamp": "2026-01-15T23:59:59Z",
"app_version": "1.7.1",
"steps": [
{
"count": 8432,
"start_time": "2026-01-15T00:00:00Z",
"end_time": "2026-01-15T23:59:59Z"
}
],
"heart_rate": [
{ "bpm": 72, "time": "2026-01-15T08:30:00Z" },
{ "bpm": 68, "time": "2026-01-15T14:00:00Z" }
],
"sleep": [
{
"session_end_time": "2026-01-15T07:00:00Z",
"duration_seconds": 27000,
"stages": [
{ "stage": "deep", "start_time": "...", "end_time": "...", "duration_seconds": 5400 }
]
}
]
}