Authentication
Every QorBOM™ Partner API request requires a Bearer API key issued to your partner-tenant account. Apply via the partner application form — we'll mint and email you a sandbox key within two business days.
Key format
qb_live_xxxxxxxxxxxxxxxx_yyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyylive or test · 16-char lookup · 32-char secret
Authorization: Bearer qb_live_…Same scheme Stripe, OpenAI, and Anthropic use. Drop into any standard HTTP client.
Storage & rotation
Rotation is recommended every 90 days. Generate the new key first (both old + new are valid during overlap), roll callers over, then revoke the old one.
Environments
| Environment | Key prefix | Base URL |
|---|---|---|
| Sandbox | qb_test_… | https://api.qorbom.com |
| Production | qb_live_… | https://api.qorbom.com |
Both environments live behind the same URL; the prefix decides the tenant routing. Test-mode scans count against a 25/day soft cap.
Example
curl https://api.qorbom.com/api/v1/cbom/health \
-H "Authorization: Bearer $QORBOM_KEY"The health endpoint is public, but sending your key lets the response include tenant-specific quota + rate-limit metadata in the X-QorBOM-* response headers.