Skip to content

Authentication

All endpoints require App authentication via two headers.

HeaderDescription
X-App-IDYour application identifier. Alphanumeric, underscore, hyphen; max 64 chars.
X-API-KeyAPI key for your application. Validated via constant-time comparison.

Acting on a session requires that the session exists and its app_id matches your X-App-ID. Otherwise you receive:

  • 404 Not Found — the session does not exist.
  • 403 Forbidden — the session exists but belongs to another app.