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
- Go to app.commissioned.tech and sign in
- Click your avatar > Profile
- Scroll to API Keys > Create API key
- 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
- Go to Profile > API Keys
- Find the key by its prefix
- Click Revoke
The key is immediately invalidated. Any in-flight requests may still complete, but new requests will return 401 Unauthorized.