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. Orbyt Intelligence/
  3. Security
What we do today. What we're working toward.

Security practices.

How Orbyt Intelligence handles security today: Bearer-token authentication with restricted per-engine scopes, AES-256 encryption at rest via Supabase, TLS 1.3 in transit via Vercel, SHA-256 key hashing, audit logging on administrative actions. Honest about what isn't yet certified.

Report a vulnerabilityTrust Center
The honest version

Orbyt is not SOC 2 certified yet. The audit engagement isn't scheduled. There is no cash bug-bounty program. There is no signed DPA for self-serve customers. The honest position: Orbyt is a solo-founder product that runs on infrastructure (Vercel, Supabase, Stripe) which is itself SOC 2 Type 2 certified, and follows reasonable security practices everywhere we control the code. We'll update this page the moment formal commitments are real. Enterprise prospects can reach security@orbytjobs.ai to discuss what we can document today vs. what's in flight.

Authentication.

Orbyt Intelligence authenticates every request via a Bearer token in the Authorization header. API keys are 32 characters of cryptographically random url-safe data, prefixed with intelligence_ for easy identification in logs and source code.

Keys are generated in the customer dashboard and shown to the user once: Orbyt stores only a SHA-256 hash, never plaintext. The hash lookup is indexed for fast middleware resolution; revoked keys are removed from the index instantly. Revocation propagates to the rate-limit cache within 60 seconds.

Restricted keys with per-engine scopes limit blast radius. A key can be granted only the scopes it needs:

  • intelligence:read: substrate (AI Role Taxonomy)
  • skills:read: AI Skill Premiums + Half-Life
  • market:read: AI Hiring Velocity
  • compensation:read: AI Comp by Stage
  • company_data:read: AI Company Signals (Ultra tier)
  • intelligence:lineage: /lineage provenance endpoint
  • intelligence:write: POST endpoints (Enterprise)

If a key is leaked, the blast radius is limited to the scopes that key was granted. Production keys should always be created with the minimum scope set required for the integration.

Encryption.

At rest
AES-256
All customer data in Supabase Postgres is encrypted at rest using AES-256 (managed by Supabase). Backups inherit the same encryption.
In transit
TLS 1.3
All public API traffic is served over TLS 1.3 via Vercel's edge network. Older TLS versions are deprecated. HSTS is enforced.
Secrets at rest
Vercel env-encrypted
API keys, Stripe webhook signing secrets, Supabase service-role keys, and other operational secrets live in Vercel's encrypted environment variables.
API keys
SHA-256 hash
Customer-issued API keys are stored only as SHA-256 hashes. The plaintext is shown once at generation time. Compromised hashes cannot be reversed to recover the plaintext key.

The Stripe webhook signature is verified using HMAC-SHA256 with the signing secret stored in env vars. Failed signature verifications are logged but never crash the webhook handler: they return 400 to Stripe so the event is retried. Webhook replay attacks are prevented by a 5-minute timestamp tolerance window built into the signature scheme.

Operational practices.

What we do today: none of these are formal certifications, just engineering discipline:

  • Logical access: production database access requires MFA. Supabase service-role keys live in encrypted env vars, not source control.
  • Audit logging: administrative actions (key issuance, subscription change, data export) are logged to the audit_log table with actor, action, resource, and timestamp.
  • Change management: all production code is reviewed before merge. Deployments are automated and traceable via git SHA to PR to author. Rollback is a one-command revert.
  • Backup + recovery: Supabase manages daily backups with point-in-time recovery for the trailing 7 days.
  • Vendor stack: primary providers (Vercel, Supabase, Stripe, Resend, Upstash) are SOC 2 Type 2 certified themselves. Customer data inherits their physical and operational security.

These are practices, not certifications. Formal SOC 2 audit will follow when customer scale justifies the investment.

Responsible disclosure.

Orbyt does not run a cash bug-bounty program today. We do welcome and take seriously every vulnerability report from security researchers. Send findings to security@orbytjobs.ai. We commit to:

  • Acknowledging reports within a few business days
  • Investigating and confirming or refuting promptly
  • Crediting the researcher in any postmortem or public write-up (if requested)
  • A reasonable disclosure window: we don't play games to delay fixes

We'll launch a paid bounty program when scale justifies it. Until then, researcher credit and a sincere thank-you are what we can offer.

Out of scope: denial-of-service, social-engineering Orbyt staff, physical attacks, anything requiring access to a customer account other than your own.

Privacy and data handling.

Orbyt's salary dataset is aggregated and statistically anonymized: no individual worker is identifiable from the published data. This is the most important fact about Orbyt's privacy posture, because it limits the scope of personal-information concerns to customer account data (name, email, payment info, operational logs), not the salary dataset itself.

For customer account data, we follow industry-standard practices:

  • Access, correction, and deletion requests honored within a reasonable timeframe
  • No selling of personal information to third parties
  • Sub-processors (Vercel, Supabase, Stripe, Resend, Upstash) all SOC 2 Type 2 certified
  • U.S.-based primary infrastructure; EU-region nodes for EU customers when available

DPA + SCCs: Orbyt does not have a standard published DPA today. Enterprise prospects who need a Data Processing Agreement, Standard Contractual Clauses for international transfers, or a signed BAA can email legal@orbytjobs.ai and we'll work through deal-specific terms. We won't commit to a 24-hour breach notification window or other specific contractual SLAs in this page; those go in a signed agreement when we can defend them.

Privacy requests can also be sent to privacy@orbytjobs.ai and we'll respond in good faith.

Contact.

Security disclosures
security@orbytjobs.ai
Vulnerability reports, security questions
Privacy requests
privacy@orbytjobs.ai
Access, correction, deletion of personal info
Customer support
support@orbytjobs.ai
Account, billing, integration questions
Legal
legal@orbytjobs.ai
DPA, SCCs, contract negotiation, NDAs

See also.

Trust Center
Compliance, security, methodology
Reliability
How we run in production
Methodology
How we build the dataset
API docs
Canonical API reference

Last updated August 2026. This page describes Orbyt's current security practices, not contractual commitments. When Orbyt obtains formal certifications (SOC 2, ISO 27001, etc.) this page will be updated to reflect them. Email security@orbytjobs.ai with questions.

Intelligence

  • Explore Orbyt Intelligence
  • Overview
  • Pricing
  • MCP Server
  • Engines
  • Reports
  • Methodology
Compare

Get started

  • Sign Up
  • Sign In
  • Try It Live

More from Orbyt

  • Orbyt Jobs
  • Orbyt One
  • Developers

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.