Skip to main content

Authentication

All API requests require a Bearer token in the Authorization header.

Create an API key

  1. Go to Settings > API Keys in your Prism dashboard.
  2. Click Create Key and give it a name.
  3. Copy the key immediately — it is only shown once.

Using your API key

Include the key in every request as a Bearer token:
curl https://prismvideos.com/api/templates \
  -H "Authorization: Bearer prism_sk_your_key_here"

Scopes

API keys are issued with scopes that control what they can access:
ScopeAccess
templates:readList and fetch templates
All keys include templates:read by default.

Key management

You can create multiple keys and revoke them independently. Revoking a key immediately prevents any further requests using that key.
Treat your API keys like passwords. Do not share them in client-side code, public repositories, or insecure channels.