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. 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 (Scale 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 May 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.

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