Where the family already is
If the family already has a Discord server, this is the lowest-friction way to surface check-ins for everyone.
Younger and gaming-adjacent families already keep a Discord server going for everyday chat. Mirror Getwello into a dedicated care channel and Mum's check-ins, missed alerts and visits land where the family already talks.
Coordinator-only. Included in the £4.99 plan. Same day to set up.
If the family already has a Discord server, this is the lowest-friction way to surface check-ins for everyone.
Coloured bar, title, fields, footer. Discord renders care updates clearly, not as a blob of text.
Incoming webhooks cost nothing. No boost required, no premium tier needed.
Desktop, web, Android, iPhone notifications. Mentions wake the right person without spamming everyone.
POST https://discord.com/api/webhooks/...
{
"username": "Getwello",
"embeds": [{
"title": "Mum has just checked in",
"color": 2280535,
"fields": [
{ "name": "Time", "value": "08:14 BST", "inline": true },
{ "name": "Mood", "value": "Fine", "inline": true }
],
"footer": { "text": "via Getwello integration" }
}]
}Run the webhook through a tiny middleman that reshapes our event JSON into a Discord embed. Now the check-in arrives with a coloured bar on the left, a clean title, and the mood as a field. The siblings see it like any other Discord card.
Channel settings → Integrations → Webhooks → New Webhook. Name it 'Getwello', pick the channel. Copy the URL.
Direct route: Getwello webhook posts raw JSON, Discord displays it as plain text. Better route: middleman (Cloudflare Worker, n8n or Make) reshapes into an embed.
Settings → Developer API → Webhooks. URL is either the Discord webhook (raw) or the middleman URL (formatted). Tick the events you want.
A synthetic event arrives within a couple of seconds. Confirm it lands in the right channel and the formatting is what you wanted. Tweak the middleman if not.
Wherever the family already is. Many UK families with kids or younger siblings already run a Discord server for school chat, gaming or D&D. Putting the Getwello updates next to those conversations means more people see them.
Yes. Discord webhooks accept rich embeds: colour-coded bar on the left, title, fields, footer. Our setup guide includes a Cloudflare Worker or n8n recipe that turns our event JSON into a proper embed.
Not with incoming webhooks alone. For two-way, build a small Discord bot using their API plus our POST /api/v1/family-room endpoint. Doable but more work; recommend one-way for the first iteration.
No. Webhooks are free, embeds are free, even server boosts are unrelated. The whole pipeline is free at the Discord end.
Less than Slack or WhatsApp typically, more than a custom dashboard. If the older relatives in the family are already on Discord (for gaming with grandchildren, for example), it's natural. If not, Slack or Telegram are gentler picks.
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.