Skip to content

Search is only available in production builds. Try building and previewing the site to test it out locally.

Authentication

All API requests require authentication via a gck_* gateway config key.

Keys start with the gck_ prefix:

gck_abc123def456...

Get your key from the dashboard.

Two header options (use either):

Authorization: Bearer gck_your_key_here
X-API-Key: gck_your_key_here
Terminal window
curl -H "Authorization: Bearer gck_your_key" \
https://ingest.prism.optra-ai.com/v1/telemetry/stats

When your request arrives:

  1. Key is validated and matched to your account
  2. Your organization is resolved from the key
  3. Key must be active and not expired
  4. Request proceeds with the resolved org and developer context
ScenarioStatusMessage
No key provided401”Missing API key”
Invalid format401”Invalid API key format”
Key not found401”Invalid API key”
Key expired401”API key expired”
Key inactive401”API key inactive”