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
AI compensation, decoded. The intelligence stack.
Features
Every engine, surface, and integration in one place.
Compare
Side-by-side vs Levels, Payscale, Pave, Glassdoor.
Pricing
Build $99, Pro $299, Scale $1,999. 14-day free trial.
Connect to Claude
MCP server wired into Claude Code in three steps.
API Docs
20 endpoints with Decision-Ready Responses.
Playground
Three engine response shapes with cURL examples.
Try It Live
One-click live API call returning a real response.
Data Catalog
Every role, city, and engine in the underlying dataset.
Companies
54 leveling frameworks with cross-company salary bands.
Compensation Reports
Free Summary PDF plus the Enterprise Annual report.
Free ToolsDeveloperBlogSupport
Log inStart
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
OverviewAI compensation, decoded. The intelligence stack.FeaturesEvery engine, surface, and integration in one place.CompareSide-by-side vs Levels, Payscale, Pave, Glassdoor.PricingBuild $99, Pro $299, Scale $1,999. 14-day free trial.
Try & Build
Connect to ClaudeMCP server wired into Claude Code in three steps.API Docs20 endpoints with Decision-Ready Responses.PlaygroundThree engine response shapes with cURL examples.Try It LiveOne-click live API call returning a real response.
Browse Data
Data CatalogEvery role, city, and engine in the underlying dataset.Companies54 leveling frameworks with cross-company salary bands.Compensation ReportsFree Summary PDF plus the Enterprise Annual report.
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
StartAlready have an account? Log in
  1. Home/
  2. Orbyt Intelligence/
  3. CLI
@orbyt/cli · macOS · Linux · Windows · From $99/mo on Build

Orbyt Intelligence CLI.

Terminal-first access to six AI engines. TTY-friendly output, JSON mode for scripts, MCP stdio bundled, webhook tunneling, full parity with the @orbyt/intelligence SDK.

API docsMCP integration

Install.

Three install paths. Pick the one that fits your environment.

npm (recommended)
npm install -g @orbyt/cli
Homebrew (macOS / Linux)
brew tap orbytjobs/cli brew install orbyt
curl install (any POSIX)
curl -fsSL https://orbytjobs.ai/install.sh | sh

Authentication and config.

Run orbyt login and paste your API key when prompted. Keys are stored at ~/.orbyt/config.json with mode 0600 (owner-only read/write). The key is re-used across every command in the session.

$ orbyt login ✓ Paste your API key (starts with intelligence_live_ or intelligence_test_): ✓ Key validated. Tier: pro. Scopes: intelligence:read, skills:read, market:read. ✓ Saved to ~/.orbyt/config.json (0600)

In CI/CD, skip orbyt login and pass the key via env var or flag.

# CI/CD env var ORBYT_API_KEY=intelligence_live_... orbyt salaries calculate --role=ai-engineer --city=san-francisco --json # Explicit flag orbyt --api-key=intelligence_live_... salaries calculate --role=ai-engineer --json

Restricted API keys with per-engine scopes are supported. A key with only intelligence:read can hit orbyt salaries calculate but not orbyt salaries skills (which needs skills:read).

Common workflows.

Calculate a single salary
orbyt salaries calculate \ --role=ai-engineer \ --city=san-francisco \ --level=senior \ --company-stage=series-b
Pull skill premiums for a role
orbyt salaries skills \ --role=ai-engineer \ --city=san-francisco \ --limit=20 --json | jq '.data[] | { skill, premium, ci_low, ci_high }'
Project comp 4 years forward
orbyt salaries projections \ --role=llm-systems-engineer \ --city=san-francisco \ --through=2030
Compare two roles in the same city
orbyt salaries compare \ --role-a=ai-engineer \ --role-b=ml-engineer \ --city=san-francisco
Search the role catalog (with confidence scores)
orbyt salaries search "llm platform engineer" # Returns top-3 matches: # 1. role:llm-platform-engineer (confidence 0.97) # 2. role:llm-systems-engineer (confidence 0.78) # 3. role:ml-platform-engineer (confidence 0.62)
Resolve a data point's full provenance
orbyt lineage \ ai-engineer:san-francisco:median_base:2026-Q2 # Prints the full source trail: BLS OES record, H-1B LCA filings, # job postings, community submissions, and the reconciliation rules.

MCP bundled.

Run orbyt mcp serve to start the MCP server over stdio, using your CLI's authentication. Drop this into Claude Code's mcp.jsonor any agent's MCP config to grant the agent access to the six locked Decision-Ready tools.

// .claude/mcp.json { "mcpServers": { "orbyt-intelligence": { "command": "orbyt", "args": ["mcp", "serve"], "env": { "ORBYT_API_KEY": "intelligence_live_..." } } } }

The CLI keeps the stdio process running, handles request cancellation and reconnection, and reports telemetry to a local log file at ~/.orbyt/mcp.log. See the MCP integration page for the full tool catalog and Decision-Ready Response shape.

Webhook tunneling for local dev.

When testing webhook handlers locally, run orbyt webhooks listen --forward-to=http://localhost:3000/api/webhooks/orbyt and the CLI opens a secure tunnel that forwards every webhook delivery from your Orbyt account to your local server. Signature headers and event payloads come through unchanged so signature verification works end-to-end.

$ orbyt webhooks listen --forward-to=http://localhost:3000/api/webhooks/orbyt ✓ Tunnel established: https://tunnel.orbytjobs.ai/u/a4f9b21c ✓ Forwarding to http://localhost:3000/api/webhooks/orbyt ✓ Ctrl-C to disconnect [2026-05-11T18:32:14Z] data.refreshed (req_a4f9b21c8e7d3f01) → 200 OK (42ms) [2026-05-11T18:35:02Z] data.corrected (req_b5g0c32d9f8e4g12) → 200 OK (28ms) [2026-05-11T18:37:55Z] data.refreshed (req_c6h1d43e0g9f5h23) → 200 OK (39ms)

Signatures are computed against your Orbyt webhook signing secret and forwarded unchanged. Run orbyt webhooks verify [event-id]to re-verify a specific delivery's signature after the fact.

Bulk operations.

For exports, batch lookups, and CSV ingestion, use orbyt salaries export. The command paginates the API, writes CSV or JSON Lines, and respects rate limits (auto-throttles when X-RateLimit-Remaining approaches zero).

# Export every salary point for AI roles across every tracked U.S. city orbyt salaries export \ --role-family=llm-and-agents \ --all-cities \ --output=ai_salaries_2026Q2.csv # Batch lookup from an input CSV orbyt salaries calculate \ --batch-input=requests.csv \ --output=results.csv \ --concurrency=4

Rate-limit handling is transparent. The CLI watches X-RateLimit-Remaining and X-RateLimit-Reset headers and auto-throttles. Failed requests retry up to 3 times with exponential backoff. Requests that ultimately fail are written to --failed-output=failures.csv so you can re-run them later.

CI/CD integration.

The CLI is designed for CI scripts. Exit codes are stable: 0 on success, 1 on API errors, 2 on usage errors, 3 on auth errors, 4 on rate-limit errors that exhausted retries. Pipelines can branch on the result.

# .github/workflows/refresh-comp-bands.yml - name: Refresh AI engineer comp bands env: ORBYT_API_KEY: ${{ secrets.ORBYT_API_KEY }} run: | orbyt salaries export \ --role=ai-engineer \ --cities=san-francisco,new-york,seattle,austin \ --output=bands.csv \ || (echo "::error::Orbyt export failed" && exit 1) git add bands.csv git commit -m "chore: refresh AI comp bands ($(date +%Y-%m-%d))"

For long-running jobs, use orbyt jobs submit and orbyt jobs status to offload export work to the server-side bulk endpoint. Available on the Scale tier.

Reference.

The CLI's auto-generated reference is available at orbyt --help and orbyt <command> --help. Every command lists its arguments, flags, examples, and required scopes. The reference is also shipped as part of the npm package's README.

Source code at github.com/orbytjobs/cli. Issues at the same repo. Changelog at orbyt version --changelog.

See also.

API docs
Canonical API reference
MCP integration
Six tools, one endpoint
Webhooks
Event types and signature verification
All six engines
The full engine catalog

Last updated May 2026. Package: @orbyt/cli on npm. Documentation auto-generated from the SDK's OpenAPI spec.

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

  • Job Search Glossary
  • Intelligence Glossary
  • Developer 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