Runs on your own hardware
Home Assistant lives on your network. With a local AI model in front, the data never leaves the house.
Home Assistant is the most flexible self-hosted home-automation platform. Connect it to Getwello and the kitchen Sonos can softly announce check-ins, the porch light can nudge a missed day, and your watch can buzz the moment things go quiet.
Coordinator-only. Included in the £4.99 plan. Same day to set up.
Home Assistant lives on your network. With a local AI model in front, the data never leaves the house.
A speaker, a lamp, a chime. Reassurance without one more notification to clear from the lock screen.
Webhooks fire the moment a check-in lands. Automations react in seconds, not on a 5-minute schedule.
Both Getwello (£4.99) and Home Assistant (free) are already paid for. The integration costs nothing.
# automations.yaml
- alias: "Getwello check-in announce"
trigger:
- platform: webhook
webhook_id: getwello_check_in
condition:
- "{{ trigger.json.event == 'check_in.created' }}"
action:
- service: tts.cloud_say
target:
entity_id: media_player.kitchen_sonos
data:
message: >-
Mum has just checked in.
- service: media_player.volume_set
target:
entity_id: media_player.kitchen_sonos
data:
volume_level: 0.25Sarah is making lunches. The kitchen Sonos says 'Mum has just checked in' at low volume. No phone in hand, no notification cleared, the whole morning's worry handled in three seconds. None of this is dramatic. That is the point.
Open Settings → Developer API as a Coordinator, name the key 'Home Assistant on the home server', copy the gw_live_ token.
Same page, scroll to Webhooks. URL is https://<your-ha>/api/webhook/getwello_check_in. Tick check_in.created and check_in.missed at minimum.
Add the webhook trigger automation to automations.yaml. Store the signing secret in secrets.yaml. Reload automations.
Inside the automation, the action is anything Home Assistant supports: TTS to a Sonos, an LED colour change, a Pushover to your watch, a Slack relay. The recipe is up to you.
Yes. Our servers need to reach the webhook URL. The cleanest options are Home Assistant Cloud (around £6/month via Nabu Casa) or a free Cloudflare Tunnel. Both let our webhook reach your local HA without you opening any ports.
The event is logged as a delivery failure on our side. After 5 consecutive failures the subscription auto-disables and waits for you to come back to the settings page. A proper retry queue with exponential backoff is on the roadmap.
Yes. Every webhook is signed with HMAC-SHA256 using the signing secret you copy when creating the subscription. The recipe in the help guide includes a verify step that rejects requests with missing or invalid signatures, or timestamps older than 5 minutes.
Yes. The webhook is just an HTTPS POST. Any platform that can listen to a webhook can react. We feature Home Assistant because the audience overlap is biggest, but the recipe is portable.
Yes. Getwello has live iPhone and Android apps; both fire the same webhook events when a check-in lands. Your Home Assistant setup is identical regardless of the Check-in Member's phone.
Some families wire two or three at the same time. The webhook fans out, the API keys stay the same.
See every integration or jump to the Developer API overview.
Mint your first API key in two minutes. Coordinator-only. Included in the £4.99 family plan.