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. Glossary
Developers

Developers · Reference

Developer Glossary

26 terms behind the Orbyt Developer Platform. Auth, envelope, queries, operations, MCP, webhooks.

ABCDEFHIJLMORSTW
Authentication & Tiers (5)Response Envelope (RFC-001) (4)Query Grammar (RFC-002) (6)Operations & Reliability (4)MCP (Model Context Protocol) (4)Webhooks (3)

Authentication & Tiers

5 terms

API Key (intelligence_*)

A bearer credential prefixed with intelligence_ that authenticates requests to the Orbyt Intelligence API. Created from the dashboard's Keys tab. Encrypted at rest with AES-256-GCM (PBKDF2-derived). Each key is tied to a tier and a set of scopes. Treat as a secret: server-side only, never bundle into client code.

Generate an API key
Bearer Token

The HTTP authentication scheme used by the Orbyt API. Every request sends the API key in the Authorization header as Bearer <key>. Per RFC 6750. Bearer tokens are validated server-side against the encrypted store; an invalid or expired key returns 401 authentication_invalid in the locked error envelope.

Origin Verification

A check applied to state-changing requests (POST, PATCH, DELETE) that the request's Origin or Referer header matches the configured NEXT_PUBLIC_APP_URL. Rejects cross-site request forgery (CSRF) attempts. Skipped in dev mode and for requests from localhost. The verifyOrigin helper at app/api/_lib/rate-limit.ts implements this.

Scope

A capability flag attached to an API key that controls which endpoints it can call. Examples: intelligence:read, skills:read, market:read, compensation:read, company_data:read, intelligence:lineage, intelligence:write. Scopes are checked per-route via the ROUTE_SCOPE_REQUIREMENTS registry. A missing scope returns 403 scope_insufficient with the list of missing scopes.

Tier (Free / Pro / Ultra)

The pricing tier attached to an API key. Free: 60 req/min, 1,000 requests a month, no card. Pro at $99/month: 300 req/min, 500,000 a month, the MCP server, and the /lineage provenance endpoint. Ultra at $199/month: 1,500 req/min, 5,000,000 a month, the company leveling catalog, and the annual compensation reports.

Tier comparison

Response Envelope (RFC-001)

4 terms

Error Envelope

The locked shape every error response returns: {error: {type, code, param?, message, doc_url, request_id, retry_strategy, retry_hint?, follow_up_suggestions?}}. Locked by RFC-001 for the life of v1. Codes are permanent: new error situations get new codes, existing codes are never deleted. Always check error.code before error.message.

Error code registry
List Envelope

The locked shape returned by collection endpoints: {data: [...], pagination, attribution, request}. The pagination block contains cursor markers for the next page. The attribution block carries methodology_version, sample size, and source breakdown for every list item. Locked by RFC-001.

request_id

A unique identifier returned on every response (success or error) as both a JSON field and an X-Request-Id header. Format: req_<16hex>. Generated at the edge in proxy.ts and propagated through. This is the searchable key for the customer log explorer at /intelligence/dashboard?tab=logs and the Sentry distributed-tracing tag.

Request log explorer
Resource Envelope

The locked shape returned by single-resource endpoints: {data, attribution, request}. The attribution block carries methodology_version, sample size, confidence interval, source breakdown, and the data_point_id for lineage lookups. The request block carries request_id and duration_ms. Locked by RFC-001 for the life of v1.

Query Grammar (RFC-002)

6 terms

as_of (Time-Travel Query)

A universal query parameter that replays a calculation against a historical snapshot. Allowed range starts at 2024-07-01 and ends today plus one day. Combine with any other query params to get a snapshot-frozen answer. Locked grammar per RFC-002 §B4. Available on every numeric endpoint.

Cursor Pagination

Stripe-compatible pagination via ?limit, ?starting_after, and ?ending_before. Returns a pagination block with has_more and the next cursor. Cursors are opaque strings derived from the last item's sort key. Stable under inserts: a new row appearing during pagination doesn't shift the cursor window. Locked by RFC-002 §2.

Expand Path

A query parameter (?expand[]=path) that inlines a related resource into the response. Stripe-compatible pattern. Each path declares its min_tier, required_scopes, and status in the expand-bootstrap registry. Multiple expands cache-key together via expandHash. Locked by RFC-002 §5.

Field Shaping

A query parameter (?fields=path1,path2) that lets the client select which response fields to return. Reduces payload size and bandwidth. Reserved parameter names (limit, starting_after, expand, sort, as_of, etc.) are filtered automatically. Locked by RFC-002.

Filter Grammar

Universal filter syntax: ?field=v1,v2 (OR within field), or ?not_field=value (exclusion). Endpoints declare which fields are filterable via a whitelist; unknown filters return 400 invalid_parameter. Stackable: multiple filter fields combine as AND. Locked by RFC-002 §3.

Sort Grammar

Universal sort syntax: ?sort=field&order=asc|desc. Endpoints declare which fields are sortable via a whitelist; unknown sort fields return 400 invalid_parameter. Default order is descending on the canonical date field. Locked by RFC-002 §4.

Operations & Reliability

4 terms

Idempotency-Key

A client-supplied header on POST endpoints that makes retries safe. Format: 8 to 200 characters from [A-Za-z0-9_-]. Same key plus same body within 24 hours returns the original response with X-Idempotent-Replayed: true. Same key plus different body returns 409 idempotency_key_conflict. Stripe-compatible. 5xx responses are never cached.

Rate Limit

A per-tier cap on requests per minute. Free 60/min, Pro 300/min, Ultra 1,500/min. Counted server-side via Upstash Redis with a sliding window. Each response includes X-RateLimit-Limit, X-RateLimit-Remaining, and X-RateLimit-Reset headers. Exceeding the cap returns 429 rate_limit_exceeded with a Retry-After header.

Retry Strategy

A field on every error envelope that tells the client whether and how to retry. Values: none (do not retry), exponential_backoff (retry with backoff), retry_immediately (idempotent retry safe), wait_and_retry (wait the suggested time). The retry_hint field accompanies wait_and_retry with a target seconds value.

SLO (Service Level Objective)

A measurable latency target for an endpoint: p50, p95, p99 latency thresholds plus error_rate_max and availability percentages. Declared per-route in app/api/v1/intelligence/_lib/slo.ts ROUTE_SLOS. Phase 5's customer /status page renders live performance vs each SLO. Adding a new route without an SLO entry leaves it un-budgeted.

Reliability page

MCP (Model Context Protocol)

4 terms

Decision-Ready Response

The locked output shape every MCP tool returns: {answer, data: {primary, supporting}, context: {methodology_version, sample_size, confidence_*, source_breakdown, disagreement_flag}, citation: {methodology_url, data_point_id, corrections_url, request_id}, follow_up_suggestions, limitations, cache_ttl_seconds}. Locked by RFC-004 §3. Designed so an LLM agent can quote the answer with full citation support.

MCP reference
JSON-RPC 2.0

The wire protocol for MCP. Every request is a JSON envelope {jsonrpc: "2.0", id, method, params}. Every response is either {jsonrpc, id, result} or {jsonrpc, id, error: {code, message, data?}}. Notifications omit the id and produce no response. Spec at jsonrpc.org/specification.

MCP (Model Context Protocol)

An open standard from Anthropic for letting LLM agents call external tools through a structured JSON-RPC interface. Orbyt ships a 6-tool MCP server: analyze_compensation, analyze_skills, analyze_market, discover_roles_and_cities, find_adjacent_opportunities, list_capabilities. Locked tool surface per RFC-004 §2. Pro tier and above.

MCP server reference
MCP Tool

A single callable function exposed through the MCP server. Each tool declares its inputSchema (JSON Schema), required tier, required scopes, and output_shape (always "decision-ready-response" for v1). Tool names are locked: list_capabilities, analyze_compensation, analyze_skills, analyze_market, discover_roles_and_cities, find_adjacent_opportunities. New tools may be added; existing tools are never renamed.

Webhooks

3 terms

HMAC Signature

The cryptographic mechanism used to verify webhook authenticity. Orbyt signs every webhook payload with HMAC-SHA256 using a shared secret, sending the signature in the X-Orbyt-Signature header. Verify on receipt with crypto.timingSafeEqual. Stripe-compatible pattern. Sample verification code in 5 languages on the webhooks reference page.

Verification samples
Webhook Event

A server-to-server notification posted to a customer-registered URL when a relevant event occurs. Event types include data.refreshed, methodology.bumped, lineage.corrected, snapshot.frozen, and key.rotated. Each event carries a typed payload, an event_id (deduplication key), an event_version, and a created_at timestamp. Orbyt Jobs only today: there is no Intelligence-domain event type.

Webhook Replay / Retry

Orbyt retries failed webhook deliveries with exponential backoff. Retry attempts: 1 minute, 5 minutes, 30 minutes, 2 hours, 12 hours, then dead-letter. Idempotent on event_id so safely re-deliverable. Failed deliveries are surfaced in the customer dashboard. Tunnel through Orbyt CLI in dev for local testing.

Local tunneling

Frequently Asked Questions

The free tier covers most evaluation and internal-tool use cases with 60 requests per minute, 1,000 a month, and the AI Role Taxonomy engine, with no card. Pro at $99/month unlocks the MCP server, the /lineage provenance endpoint, and restricted API keys. Ultra at $199/month adds the company leveling catalog and the annual compensation reports.

Send the same request with the same Idempotency-Key header within 24 hours. POST endpoints are idempotent on the key. Same key plus same body returns the original response (cached with X-Idempotent-Replayed: true header). Same key plus different body returns 409 idempotency_key_conflict. 5xx responses are never cached, so the retry gets a fresh attempt.

REST is the underlying API surface, accessible via standard HTTP from any language. MCP is a structured tool-call protocol layered on top, designed for LLM agents that need machine-readable responses with built-in citations. MCP wraps REST: every MCP tool internally calls one or more REST endpoints and packages the result as a Decision-Ready Response. Use REST for systems; use MCP for agents.

Yes. Every response includes a data_point_id. Pass it to GET /api/v1/intelligence/lineage/{data_point_id} (Pro tier and above, intelligence:lineage scope) to get the full provenance trail: which raw data points contributed, what weights applied, which methodology version computed the number, and when the snapshot was frozen. Every number cites itself.

Every webhook includes an X-Orbyt-Signature header containing an HMAC-SHA256 signature of the request body using your registered webhook secret. Compute the same HMAC on receipt and compare with crypto.timingSafeEqual. Reject any request where the signatures don't match. The webhooks reference page has verification samples in Node, Python, Ruby, Go, and PHP.

Developer Hub · Orbyt API · Intelligence API · MCP server · Webhooks · CLI

The contract is the docs.

Locked shapes. Citation-grade.

Open the Developer Hub.

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.