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. Zapier / Make.com / n8n
Webhooks7 min readUpdated Mar 29, 2026

Zapier / Make.com / n8n Integration Guide

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.

Overview

Orbyt's webhook system sends real-time notifications when events happen in your pipeline: new jobs added, status changes, offers received, interviews scheduled, and more. Connect these webhooks to Zapier, Make.com, or n8n to build powerful automations.

Prerequisites

  • Orbyt Ultra plan
  • An Orbyt API key with read-write permissions
  • A Zapier, Make.com, or n8n account

Webhook Events

Orbyt can send webhooks for these events:

EventFires When
job.createdA new job is added to the pipeline
job.updatedJob details are modified
job.deletedA job is removed
job.status_changedJob moves to a new status
contact.createdA new contact is added
contact.updatedContact details are modified
contact.deletedA contact is removed
activity.createdAn activity is logged
interview.scheduledA job moves to interviewing status
offer.receivedA job moves to offer status
webhook.testTest event sent manually

Setting Up with Zapier

Step 1: Create a Zap with Webhook Trigger

  1. Log in to Zapier and click Create Zap
  2. For the trigger, search for Webhooks by Zapier
  3. Select Catch Hook as the trigger event
  4. Zapier gives you a webhook URL like: https://hooks.zapier.com/hooks/catch/123456/abcdef/
  5. Copy this URL

Step 2: Register the Webhook in Orbyt

Use the Orbyt API to register Zapier's webhook URL:

curl -X POST https://www.orbytjobs.ai/api/mcp/webhooks \
  -H "Authorization: Bearer ext_your_token" \
  -H "Content-Type: application/json" \
  -d '{
    "url": "https://hooks.zapier.com/hooks/catch/123456/abcdef/",
    "events": ["job.status_changed", "offer.received", "interview.scheduled"],
    "secret": "my_signing_secret"
  }'

Step 3: Send a Test Event

curl -X POST https://www.orbytjobs.ai/api/mcp/webhooks/test \
  -H "Authorization: Bearer ext_your_token" \
  -H "Content-Type: application/json" \
  -d '{ "webhookId": "wh_abc123" }'

Go back to Zapier and click Test trigger to confirm the test event was received.

Step 4: Add Actions

Now add actions to your Zap. Popular combinations:

WhenThen
Job status changes to "interviewing"Send Slack message to #job-search channel
Offer receivedSend email to partner/spouse with details
New job addedCreate a card in Notion database
Activity loggedAdd row to Google Sheet for tracking
Interview scheduledCreate Google Calendar event with prep notes

Setting Up with Make.com

Step 1: Create a Scenario

  1. Log in to Make.com and create a new scenario
  2. Add a Webhooks module as the trigger
  3. Select Custom webhook
  4. Make gives you a URL like: https://hook.make.com/abc123xyz

Step 2: Register the Webhook

Same as Zapier, use the API to register the Make webhook URL:

curl -X POST https://www.orbytjobs.ai/api/mcp/webhooks \
  -H "Authorization: Bearer ext_your_token" \
  -H "Content-Type: application/json" \
  -d '{
    "url": "https://hook.make.com/abc123xyz",
    "events": ["job.created", "job.status_changed"],
    "secret": "my_make_secret"
  }'

Step 3: Build Your Flow

Make.com's visual builder lets you:

  • Filter events by type (only act on offer.received)
  • Route to different actions based on job status
  • Transform data before sending to other services
  • Iterate over arrays (e.g., multiple contacts on a job)

Setting Up with n8n

Step 1: Add a Webhook Node

  1. Open your n8n instance
  2. Add a Webhook node as the trigger
  3. Set the HTTP method to POST
  4. Copy the production webhook URL

Step 2: Register and Connect

Register the n8n webhook URL using the same API call pattern above. Then add downstream nodes for your automation logic.

Webhook Payload Format

All webhooks are sent as POST requests with this structure:

{
  "event": "job.status_changed",
  "timestamp": "2026-03-29T14:30:00.000Z",
  "data": {
    "id": "job_abc123",
    "company": "Stripe",
    "title": "Senior Frontend Engineer",
    "status": "interviewing",
    "previousStatus": "applied"
  }
}

Webhook Security

Every webhook includes an X-Orbyt-Signature header containing an HMAC-SHA256 signature of the request body, signed with your webhook secret. Verify this in your automation to ensure the webhook came from Orbyt:

HMAC-SHA256(request_body, your_secret)

Managing Webhooks

# List all registered webhooks
curl https://www.orbytjobs.ai/api/mcp/webhooks \
  -H "Authorization: Bearer ext_your_token"

# Delete a webhook
curl -X DELETE https://www.orbytjobs.ai/api/mcp/webhooks \
  -H "Authorization: Bearer ext_your_token" \
  -H "Content-Type: application/json" \
  -d '{ "webhookId": "wh_abc123" }'

Automation Ideas

AutomationServices
Daily pipeline digest in SlackZapier + Slack (scheduled, uses /pipeline endpoint)
Interview prep packet in NotionMake.com + Notion (triggered by interview.scheduled)
Offer celebration alertZapier + Slack/Email (triggered by offer.received)
Job application log in Google SheetsZapier + Google Sheets (triggered by job.status_changed to "applied")
Stale application remindersn8n + Email (scheduled, uses /suggestions endpoint)
Contact sync to HubSpotMake.com + HubSpot (triggered by contact.created)

Tips

  • Register webhooks for specific events rather than all events to reduce noise
  • Always set a secret when creating webhooks and verify signatures in your automation
  • Use Orbyt's test endpoint to verify your automation works before relying on real data
  • Maximum 10 webhooks per user
  • Webhooks time out after 10 seconds; if your endpoint is slow, use a queue (Zapier and Make handle this automatically)

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.

Apple ShortcutsREST

Use the "Get Contents of URL" action with Bearer auth. Build morning briefings, quick-add workflows, and Siri commands that talk to your pipeline.

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

OverviewPrerequisitesWebhook EventsSetting Up with ZapierStep 1: Create a Zap with Webhook TriggerStep 2: Register the Webhook in OrbytStep 3: Send a Test EventStep 4: Add ActionsSetting Up with Make.comStep 1: Create a ScenarioStep 2: Register the WebhookStep 3: Build Your FlowSetting Up with n8nStep 1: Add a Webhook NodeStep 2: Register and ConnectWebhook Payload FormatWebhook SecurityManaging WebhooksAutomation IdeasTips

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