Skip to main content
Orbyt
Jobs
Overview
Everything Orbyt Jobs does
Features
Orbyt Jobs product home
Compare
Orbyt vs. the competition
Pricing
Plans and pricing
API Docs
22 endpoints, MCP native
Job Search
15 tracks tailored to your exact moment
Job Salaries
3,500+ roles across 81 cities
Guides
Long-form career playbooks for every search
Intelligence
Overview
The authority on AI compensation
Features
Orbyt Intelligence product home
Compare
Orbyt Intelligence vs. the field
Pricing
Plans and pricing
API Docs
18 endpoints, free tier
Data Catalog
What the API returns
Companies
54 company leveling frameworks
Compensation Reports
Free Summary + Enterprise Annual
Free ToolsDeveloperBlogSupport
Log inBegin
Blog
Products
Orbyt One
Job Search
Job Search HubCareer ChangersNew GraduatesRecently Laid OffExecutivesRemote Job SeekersBurned OutAfter the CutsSeasonedVeteransReturning ParentsVisa HoldersTeachersReplaced by AIHealthcare WorkersSales Professionals
Orbyt Jobs
Overview
OverviewEverything Orbyt Jobs doesFeaturesOrbyt Jobs product homeCompareOrbyt vs. the competitionPricingPlans and pricing
Explore
API Docs22 endpoints, MCP nativeJob Search15 tracks tailored to your exact momentJob Salaries3,500+ roles across 81 citiesGuidesLong-form career playbooks for every search
Orbyt Intelligence
Overview
OverviewThe authority on AI compensationFeaturesOrbyt Intelligence product homeCompareOrbyt Intelligence vs. the fieldPricingPlans and pricing
Explore
API Docs18 endpoints, free tierData CatalogWhat the API returnsCompanies54 company leveling frameworksCompensation ReportsFree Summary + Enterprise Annual
Free Tools
Free Tools HubThe full Free Tools hubJob SearchOrbyt for your exact momentCompensation ReportsFree Summary PDF, no signupInterview PrepAI-powered interview coachingResume ScoreGrade your resume against any roleCover Letter GeneratorTailored AI letter, free PDFSalary Explorer3,500+ roles across 81 citiesSalary CalculatorBase, bonus, equity in minutesTake-Home CalculatorAfter federal and state taxTotal Comp CalculatorFull compensation mathSkills ImpactWhat each skill adds to compCompare OffersSide-by-side offer mathSalary Projections 20305-year comp forecastsSalary WidgetEmbed salary data anywhereUnemployment CalculatorState-by-state benefits mathAI Skills AssessmentRate your AI-era readinessAI Skills LabThe skills that pay in 2026AI & Tech Job BoardCurated AI-era rolesCareer GuidesLong-form career strategy
Compare
Compare Jobs
Orbyt vs TealOrbyt vs HuntrOrbyt vs JobscanOrbyt vs LinkedInOrbyt vs TrelloOrbyt vs NotionOrbyt vs SpreadsheetsOrbyt vs SimplifyOrbyt vs CareerflowOrbyt vs ApplyArcOrbyt vs JobrightOrbyt vs Sprout
Compare Intelligence
Orbyt vs LevelsOrbyt vs PayscaleOrbyt vs ComprehensiveOrbyt vs GlassdoorOrbyt vs Pave
Developer
Developer HubOrbyt APIIntelligence API
Company
AboutWhat Orbyt is, and why it existsValuesThe principles that shape every build decisionCreedWhat we believe about the future of workFounderJustin BartakLabsS4 skunkworks projectsPressMedia kit, logos, and press inquiriesContactEmail the teamBlogEngineering, design, and the build journalSupportHelp center and contact
BeginAlready have an account? Log in
  1. Home/
  2. Developers/
  3. Apple Shortcuts
REST5 min readUpdated Mar 29, 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" — 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 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

Configure MCP in claude_desktop_config.json. Point it at the Orbyt MCP manifest and your API key. Claude can then search your pipeline, add jobs, and suggest next actions.

ChatGPT GPT ActionsOpenAPI

Import the Orbyt OpenAPI 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 supports MCP servers natively, 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

Job Search

  • Career Changers
  • New Graduates
  • Recently Laid Off
  • Remote Workers
  • Executives
  • Replaced by AI
  • Healthcare Workers
  • All job types →

Guides

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

Tools

  • Resume Score
  • Cover Letter Generator
  • Interview Prep
  • Unemployment Calculator
  • Compare Offers
  • AI Skills Assessment
  • Salary Widget
  • All free tools →

Reference

  • Glossary
  • Methodology
  • Dataset
  • Changelog

Salary Data

  • Salary Explorer
  • 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 →

Product

  • Orbyt One
  • Orbyt Jobs
  • Orbyt Intelligence
  • Orbyt Labs

Developers

  • Developer Hub
  • Orbyt API
  • Intelligence API

Integrations

  • Claude Desktop
  • ChatGPT
  • Zapier
  • All integrations →

Account

  • Sign In
  • Sign Up

Company

  • Blog
  • About
  • Founder
  • Press
  • Contact
  • Support
Job Search
  • Career Changers
  • New Graduates
  • Recently Laid Off
  • Remote Workers
  • Executives
  • Replaced by AI
  • Healthcare Workers
  • All job types →
Guides
  • Career Guides
  • AI Skills Lab
  • AI & Tech Job Board
  • Compensation Reports
Tools
  • Resume Score
  • Cover Letter Generator
  • Interview Prep
  • Unemployment Calculator
  • Compare Offers
  • AI Skills Assessment
  • Salary Widget
  • All free tools →
Reference
  • Glossary
  • Methodology
  • Dataset
  • Changelog
Salary Data
  • Salary Explorer
  • 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 →
Product
  • Orbyt One
  • Orbyt Jobs
  • Orbyt Intelligence
  • Orbyt Labs
Developers
  • Developer Hub
  • Orbyt API
  • Intelligence API
  • Claude Desktop
  • ChatGPT
  • Zapier
  • All integrations →
Company
  • Blog
  • About
  • Founder
  • Press
  • Contact
  • Support
Sign InSign Up
Orbyt

© 2026 Purecraft LLC  All rights reserved.

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