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 provided401Missing API key
Non-gck_ prefix401Invalid API key format
Key not recognized401Invalid API key
Key inactive or expired401API key not active or expired