Skip to main content
Orbyt
Products
Products
Orbyt Jobs
The job search CRM. Free forever.
Orbyt Intelligence
AI compensation data, and the API behind it.
Orbyt One
One account. Every Orbyt product.
Research lab
Orbyt CollectiveAn agent leadership team, an audit harness, and governance layer
The lab
Orbyt Labs
The skunkworks: the agent org, iOS, Apple Watch, Vision Pro
By your situation
Job Search Tracks
15 tracks for your exact moment
For Recruiters
Hiring and comp benchmarking
Start without a card
Playground
Run a live query
MCP server
Three steps into Claude Code
API docs
Endpoints, auth, and limits
What one account means
One login for Jobs and Intelligence.
One bill, one payment method.
One profile that follows you.
Developers
Build
Developer Hub
Start here
Orbyt API
The platform API
Jobs API Docs
23 endpoints, MCP native
Intelligence API
20 endpoints, Decision-Ready
Try
MCP Server
Wired into Claude Code in three steps
Playground
Engine response shapes with cURL
Try It Live
One call, one real response
Webhooks
Events and delivery
Reference
Reference
The full index
Glossary
Every term, defined
Methodology
How the numbers are made
Status
Live service health
Resources
Learn
Interview Prep
Company-by-company question sets
AI Skills Lab
The skills that pay in 2026
Guides
Long-form career playbooks
Blog
What we are building, in the open
Tools and data
Free Tools
Calculators and generators, no signup
Salary Explorer
3,445 roles across 81 cities
Job Board
Curated AI-era roles
Compensation Reports
Free summary PDF
Data Catalog
Every role, city, and engine
Companies
54 leveling frameworks
International
The US, UK, and Canada
Help
Support
Help center and contact
Compare
Orbyt against the alternatives
Books
Start reading
The books
The story in order
Read the opening
Free, no email required
The series
Book 1: Cold Start
Available now
Book 2: Unfair Advantage
Writing
Book 3: Human Heartbeat
Coming
Book 4: Without Me
Future
Book 5: Observer Effect
Future
Receipts
Building in Public
The numbers behind the books
Pricing
Company
Who we are
About
A family of AI products, and why they exist
Leadership
One human decides. AI agents advise.
Values
The principles behind every build decision
Creed
Here is to the relentless ones. The company creed
The story
Labs
The Skunkworks. iOS, Apple Watch, Vision Pro.
Press
Media kit, logos, and inquiries
Contact
Email the team
Log inStart
Pricing
Products
Orbyt JobsOrbyt IntelligenceOrbyt One
Research lab
Orbyt Collective
The lab
Orbyt Labs
Developers
Build
Developer HubOrbyt APIJobs API DocsIntelligence API
Try
MCP ServerPlaygroundTry It LiveWebhooks
Reference
ReferenceGlossaryMethodologyStatus
Resources
Learn
Interview PrepAI Skills LabGuidesBlog
Tools and data
Free ToolsSalary ExplorerJob BoardCompensation ReportsData CatalogCompaniesInternational
Help
SupportCompare
Calculators and tools
Salary CalculatorTake-Home CalculatorTotal Comp CalculatorCompare OffersSkills ImpactSalary Projections 2030Resume ScoreCover Letter GeneratorSalary WidgetUnemployment CalculatorAI Skills Assessment
Books
Start reading
The booksRead the opening
The series
Book 1: Cold StartBook 2: Unfair AdvantageBook 3: Human HeartbeatBook 4: Without MeBook 5: Observer Effect
Receipts
Building in Public
Company
Who we are
AboutLeadershipValuesCreed
The story
LabsPressContact
StartAlready have an account? Log in
  1. Home/
  2. Developers/
  3. Apple Shortcuts
Developers
REST5 min readUpdated Jun 12, 2026

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 Orbyt's REST API, you can create Siri commands and home screen shortcuts that interact with your job pipeline.

Prerequisites

  • Orbyt Ultra plan
  • iPhone, iPad, or Mac with the Shortcuts app
  • An Orbyt API key (generate one in Settings > Account > API Keys)

Step 1: Generate an API Key

  1. Open Orbyt and go to Settings > Account
  2. Scroll to API Keys
  3. Click Create API Key
  4. Name it "Apple Shortcuts" and select the appropriate permissions
  5. 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."

  1. Open the Shortcuts app
  2. Tap + to create a new shortcut
  3. Add Get Contents of URL action:

- URL: https://www.orbytjobs.ai/api/mcp/pipeline

- Method: GET

- Headers: Add Authorization with value Bearer ext_your_token

  1. Add Get Dictionary Value action:

- Key: summary

  1. Add Speak Text action with a template like:
You have [total] jobs in your pipeline. [applied] applications sent, [interviewing] in interviews, and [offer] offers.
  1. Name it "Pipeline Briefing" and assign it to Siri

Quick Add Job

This shortcut lets you quickly add a job from your phone:

  1. Create a new shortcut
  2. Add Ask for Input actions for:

- Company name (Text)

- Job title (Text)

- URL (URL, optional)

  1. Add Get Contents of URL action:

- URL: https://www.orbytjobs.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"
}
  1. Add Show Notification with "Job added to Orbyt"

Interview Reminder

Build an automation that runs 30 minutes before calendar events tagged as interviews:

  1. Go to Automation tab
  2. Create a Personal Automation triggered by Calendar Event
  3. Add Get Contents of URL to fetch /api/mcp/calendar
  4. Parse the response to find today's interviews
  5. Add Show Notification with interview details and company intel

Step 3: Add to Home Screen

  1. Open your shortcut
  2. Tap the share icon
  3. Select Add to Home Screen
  4. Choose an icon and name

Siri Integration

Any shortcut can be triggered by voice:

  • "Hey Siri, pipeline briefing" to hear your job search status
  • "Hey Siri, add a job" to run the quick-add shortcut
  • "Hey Siri, what interviews do I have?" to check upcoming interviews

Available API Endpoints for Shortcuts

Shortcut IdeaEndpointMethod
Pipeline summary/api/mcp/pipelineGET
List jobs/api/mcp/jobsGET
Add a job/api/mcp/jobsPOST
Today's interviews/api/mcp/calendarGET
Follow-up reminders/api/mcp/suggestionsGET
Log an activity/api/mcp/activitiesPOST
My profile/api/mcp/meGET

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 Orbyt by exporting via iCloud link
Quick reference for Shortcuts (copy endpoints)Download
Base URL: https://www.orbytjobs.ai
Header:  Authorization: Bearer YOUR_API_KEY_HERE

Pipeline briefing:  GET /api/mcp/pipeline
Add a job:          POST /api/mcp/jobs
Upcoming events:    GET /api/mcp/calendar
Follow-ups:         GET /api/mcp/suggestions
Your profile:       GET /api/mcp/me

Other integration guides

Claude DesktopMCP

Connect Claude Desktop to Orbyt Intelligence over MCP. The working config, the Pro plan requirement, what the Jobs pipeline can and cannot do, and the honest history of the handshake bug we fixed. Verified June 2026.

ChatGPT GPT ActionsOpenAPI

Import the Orbyt GPT Actions spec to build a Custom GPT. Your GPT can read your pipeline, log activities, and help you prepare for interviews using your real data.

Zapier / Make.com / n8nWebhooks

Register webhooks via the API and trigger Zaps or scenarios. Get Slack alerts on offers, auto-log interview notes, or sync new jobs to Notion.

OpenClawMCP

Connect Orbyt to OpenClaw for AI-powered job search assistance. OpenClaw reads Orbyt's REST tool manifest, so setup takes under a minute.

Ready to build?

Ship it.

Begin.

On this page

OverviewPrerequisitesStep 1: Generate an API KeyStep 2: Create Your First ShortcutMorning Pipeline BriefingQuick Add JobInterview ReminderStep 3: Add to Home ScreenSiri IntegrationAvailable API Endpoints for ShortcutsTips

Resources

Endpoint ReferenceOpenAPI SpecMCP Manifest

Developers

  • Explore Developers
  • Orbyt API
  • Intelligence API
  • Claude Desktop
  • ChatGPT
  • Zapier
  • Glossary

Get started

  • Sign Up
  • Sign In

More from Orbyt

  • Orbyt Jobs
  • Orbyt Intelligence
  • Orbyt One
  • Free Tools

Product

  • Orbyt Jobs
  • Orbyt Intelligence
  • Orbyt One

Research Lab

  • Orbyt Collective

Developers

  • Orbyt API & MCP
  • Intelligence API & MCP
  • Claude Desktop
  • ChatGPT

Job Search

  • Career Changers
  • New Graduates
  • Recently Laid Off
  • Remote Workers
  • Executives
  • Replaced by AI

Guides

  • AI Skills Lab
  • AI & Tech Job Board
  • Compensation Reports

Free Tools

  • Resume Score
  • Cover Letter Generator
  • Interview Prep
  • Unemployment Calculator
  • AI Skills Assessment
  • Compare Offers

Reference

  • Job Search Glossary
  • Intelligence Glossary
  • Methodology

Salary Data

  • AI Salary Hubs
  • Salary Calculator
  • Take-Home Calculator
  • Total Comp Calculator

Compare

  • Orbyt vs Teal
  • Orbyt vs Huntr
  • Orbyt vs LinkedIn
  • Orbyt vs Levels.fyi
  • Orbyt vs Glassdoor

Account

  • Sign In
  • Sign Up

Company

  • About
  • Leadership
  • The Books
  • Support

Fun Stuff

  • Arcade Games
Product
  • Orbyt Jobs
  • Orbyt Intelligence
  • Orbyt One
Research Lab
  • Orbyt Collective
Developers
  • Orbyt API & MCP
  • Intelligence API & MCP
  • Claude Desktop
  • ChatGPT
  • All developer docs →
Job Search
  • Career Changers
  • New Graduates
  • Recently Laid Off
  • Remote Workers
  • Executives
  • Replaced by AI
  • All job types →
Guides
  • AI Skills Lab
  • AI & Tech Job Board
  • Compensation Reports
  • All guides →
Free Tools
  • Resume Score
  • Cover Letter Generator
  • Interview Prep
  • Unemployment Calculator
  • AI Skills Assessment
  • Compare Offers
  • All free tools →
Reference
  • Job Search Glossary
  • Intelligence Glossary
  • Methodology
  • All references →
Salary Data
  • AI Salary Hubs
  • Salary Calculator
  • Take-Home Calculator
  • Total Comp Calculator
  • All salary data →
Compare
  • Orbyt vs Teal
  • Orbyt vs Huntr
  • Orbyt vs LinkedIn
  • Orbyt vs Levels.fyi
  • Orbyt vs Glassdoor
  • All comparisons →
Company
  • About
  • Leadership
  • The Books
  • Support
Fun Stuff
  • Arcade Games
Sign InSign Up
Orbyt™

© 2026 Purecraft LLC  All rights reserved.

Privacy·Terms·Security·Trademark·Accessibility·DPA·Refund·Status·Sitemap

Orbyt, the Orbyt logo, and the Orbyt product names (Orbyt Jobs, Orbyt Intelligence, Orbyt Collective, Orbyt One, Orbyt Books, Orbyt Labs, Orbyt Arcade) are trademarks of Purecraft LLC. Product names, logos, and brands of others are the property of their respective owners. Orbyt is not affiliated with, sponsored by, or endorsed by any third party referenced on this site.