API Keys
All requests to Orthogonal require an API key in theAuthorization header:
Getting Your Key
- Sign in at orthogonal.com
- Go to Dashboard → API Keys
- Copy your API key
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
How to authenticate with the Orthogonal API
Authorization header:
Authorization: Bearer orth_live_xxxxxxxxxxxx
| Type | Prefix | Use Case |
|---|---|---|
| Live | orth_live_ | Production usage, charged to your account |
| Test | orth_test_ | Testing, no charges (limited APIs) |
export ORTHOGONAL_API_KEY=orth_live_xxxxxxxxxxxx
const apiKey = process.env.ORTHOGONAL_API_KEY;
import os
api_key = os.environ['ORTHOGONAL_API_KEY']
curl -H "Authorization: Bearer $ORTHOGONAL_API_KEY" ...
