Set up Getwello with Apple Shortcuts and Siri
Ask Siri 'has Mum checked in?' on iPhone, iPad, Mac or Apple Watch. Build the shortcut once, use it everywhere.
This guide builds an Apple Shortcut that calls the Getwello API and reads back the latest check-in. Add it to Siri for voice access, to your Home screen for one-tap, and to your Apple Watch for a wrist-friendly version.
What you need
- An iPhone, iPad or Mac on a recent OS (iOS 17+ recommended).
- A Getwello API key from Settings → Developer API.
- About 20 minutes for the first shortcut. Subsequent ones take 5.
Step 1: Mint a Getwello API key
Open Settings → Developer API as a Coordinator. Create a key called “Apple Shortcuts”. Copy the gw_live_ token to your clipboard.
Step 2: Open Shortcuts and build the first action
- Open the Shortcuts app on your iPhone or Mac.
- Tap + to create a new shortcut. Name it “Mum status”.
- Add the action Get Contents of URL.
- URL:
https://getwello.co.uk/api/v1/circles. - Tap Show More. Method: GET.
- Add a Header: Key =
Authorization, Value =Bearer gw_live_your_key_here.
Step 3: Parse the response
- Add Get Dictionary Value. Set “Get value for” to
circles. - Add another Get Item From List, getting item 1 (or whichever Circle you want).
- Add another Get Dictionary Value to extract
id. - You now have the Circle ID. Save it to a variable called “Circle ID”.
Step 4: Fetch the latest check-in
- Add another Get Contents of URL.
- URL:
https://getwello.co.uk/api/v1/circles/[Circle ID]/check-ins?limit=1. Tap and drop the “Circle ID” variable into the URL. - Same Authorization header as Step 2.
- Parse the response to extract status, mood and for_local_date.
Step 5: Speak the result
Add a Text action that says e.g. “Mum checked in at [date], mood [mood].” Then add Speak Text. Optional: set Wait Until Finished = Off so Siri reads it back without you having to wait.
Step 6: Add it everywhere you want it
- Long-press the shortcut in your library.
- Add to Siri , pick a phrase like “Mum status”.
- Add to Home Screen , gives you a tappable icon.
- Settings → Show on Apple Watch , appears on the watch.
Test
From any screen, say “Hey Siri, Mum status.” Siri runs the shortcut, fetches the data, reads back the result. Total time: about 2-3 seconds.
Want the prebuilt version?
We are publishing an importable iCloud Shortcut link so you do not have to build it yourself. The URL will appear here as soon as it is live. In the meantime, the build above takes about 20 minutes.
Personal Automations (automatic morning check)
In the Shortcuts app, go to Automation → Create Personal Automation → Time of Day. Set a time (e.g. 09:00). Run the shortcut. Add a check: if status is not “well”, send a notification. Now you get a quiet morning ping only if Mum has not checked in yet.
Troubleshooting
Siri reads back “Unauthorized”: the Bearer token is wrong. Make sure you included the word “Bearer” and a space before the token.
Shortcut hangs: network issue or the API is slow. Add a timeout in Get Contents of URL settings.
Speak Text reads JSON: the parsing step did not extract a single string. Re-check that Get Dictionary Value is pointed at the right key.
More on developer api, mcp and webhooks
- What the Developer API is for, in plain English
- Create your first API key
- Set up the Getwello MCP server with Claude Desktop
- What webhooks are, and why you would want one
- Set up your first webhook
- Recipe: Sonos announces "Mum has just checked in" via Home Assistant
- Troubleshooting integrations
- Set up Getwello with Slack, end to end
- Set up Getwello with Amazon Alexa
- Set up Getwello with Google Home and Nest
- Set up Getwello with Zapier
- Set up Getwello with Notion
- Set up Getwello with n8n
- Set up Getwello with Make.com
- Set up Getwello with Discord
- Set up Getwello with Microsoft Teams
- Set up Getwello with Telegram
- Set up Getwello with IFTTT
- Set up Getwello with Pushover
- Set up Getwello with Cursor
- Set up Getwello with Ollama
- Set up Getwello with Apple HomeKit
- Set up Getwello with SmartThings
- Set up Getwello with Hubitat
- Set up Getwello with Tasker
- Set up Getwello with Sonos
- Set up Getwello with Google Calendar
- Set up Getwello with Apple Calendar
- Set up Getwello with Obsidian
- Set up Getwello with ntfy
Didn't answer your question?
Email hello@getwello.co.uk