Skip to main content

Authentication

Orbit supports two authentication methods:

API Key (Server-to-Server)

Include your API key in the X-API-Key header:
curl https://orbit-api.devotel.io/api/v1/messages \
  -H "X-API-Key: dv_live_sk_your_key_here"

Bearer Token (Dashboard Users)

For dashboard users, use JWT Bearer tokens:
curl https://orbit-api.devotel.io/api/v1/messages \
  -H "Authorization: Bearer eyJhbG..."

API Key Format

TypePrefixUsage
Live Secretdv_live_sk_Server-side API calls
Test Secretdv_test_sk_Server-side API calls (test mode)
Live Publicdv_live_pk_Client-side (limited scope)