Apple Shortcuts Integration Guide
Use the "Get Contents of URL" action with Bearer auth. Build morning briefings, quick-add workflows, and Siri commands that talk to your pipeline.
Overview
Apple Shortcuts lets you build automations that run on iPhone, iPad, Mac, and Apple Watch. By connecting Orbit's REST API, you can create Siri commands and home screen shortcuts that interact with your job pipeline.
Prerequisites
- Orbit Ultra plan
- iPhone, iPad, or Mac with the Shortcuts app
- An Orbit API key (generate one in Settings > Account > API Keys)
Step 1: Generate an API Key
- Open Orbit and go to Settings > Account
- Scroll to API Keys
- Click Create API Key
- Name it "Apple Shortcuts" and select the appropriate permissions
- Copy the token (starts with
ext_)
Step 2: Create Your First Shortcut
Morning Pipeline Briefing
This shortcut gives you a spoken summary of your pipeline when you say "Hey Siri, pipeline briefing."
- Open the Shortcuts app
- Tap + to create a new shortcut
- Add Get Contents of URL action:
- URL: https://www.orbitjobs.ai/api/mcp/pipeline
- Method: GET
- Headers: Add Authorization with value Bearer ext_your_token
- Add Get Dictionary Value action:
- Key: summary
- Add Speak Text action with a template like:
You have [total] jobs in your pipeline. [applied] applications sent, [interviewing] in interviews, and [offer] offers.
- Name it "Pipeline Briefing" and assign it to Siri
Quick Add Job
This shortcut lets you quickly add a job from your phone:
- Create a new shortcut
- Add Ask for Input actions for:
- Company name (Text)
- Job title (Text)
- URL (URL, optional)
- Add Get Contents of URL action:
- URL: https://www.orbitjobs.ai/api/mcp/jobs
- Method: POST
- Headers: Authorization: Bearer ext_your_token
- Request Body (JSON):
{
"company": "[Company Input]",
"title": "[Title Input]",
"url": "[URL Input]",
"status": "saved"
}
- Add Show Notification with "Job added to Orbit"
Interview Reminder
Build an automation that runs 30 minutes before calendar events tagged as interviews:
- Go to Automation tab
- Create a Personal Automation triggered by Calendar Event
- Add Get Contents of URL to fetch
/api/mcp/calendar - Parse the response to find today's interviews
- Add Show Notification with interview details and company intel
Step 3: Add to Home Screen
- Open your shortcut
- Tap the share icon
- Select Add to Home Screen
- Choose an icon and name
Siri Integration
Any shortcut can be triggered by voice:
- "Hey Siri, pipeline briefing" — hear your job search status
- "Hey Siri, add a job" — run the quick-add shortcut
- "Hey Siri, what interviews do I have?" — check upcoming interviews
Available API Endpoints for Shortcuts
| Shortcut Idea | Endpoint | Method |
|---|---|---|
| Pipeline summary | /api/mcp/pipeline | GET |
| List jobs | /api/mcp/jobs | GET |
| Add a job | /api/mcp/jobs | POST |
| Today's interviews | /api/mcp/calendar | GET |
| Follow-up reminders | /api/mcp/suggestions | GET |
| Log an activity | /api/mcp/activities | POST |
| My profile | /api/mcp/me | GET |
Tips
- Use Text actions to format API responses into readable summaries before speaking or displaying
- Store your API key in a Text action at the start of the shortcut and reference it with a variable (easier to update)
- Use If actions to branch based on response data (e.g., only notify if there are stale applications)
- Apple Watch can run simple shortcuts; keep API calls to one request for best performance
- Share shortcuts with friends who also use Orbit by exporting via iCloud link