Commissioned
API

Authentication

Create and manage API keys for the Commissioned API.

API keys

All API requests require a Bearer token. You create and manage API keys from your profile in the Commissioned app.

Create a key

  1. Go to app.commissioned.tech and sign in
  2. Click your avatar > Profile
  3. Scroll to API Keys > Create API key
  4. Copy the key immediately (shown once)

Using a key

Include your API key in the Authorization header as a Bearer token:

curl https://app.commissioned.tech/v1/chat/completions \
  -H "Authorization: Bearer your-api-key"

Revoking a key

  1. Go to Profile > API Keys
  2. Find the key by its prefix
  3. Click Revoke

The key is immediately invalidated. Any in-flight requests may still complete, but new requests will return 401 Unauthorized.

On this page