Authentication
The Triple API uses Bearer token authentication. All API requests must include your API key in the Authorization header.
Getting Your API Key
API keys are created and managed through the Triple Dashboard.
Creating an API Key
- Log in to your Triple Dashboard
- Navigate to Settings → API Keys
- Click Create API Key
- Copy and securely store your key
caution
Your API key will only be shown once upon creation. Store it securely before closing the dialog.
Using Your API Key
Include your API key in the Authorization header of every request:
curl -X POST https://api.disputes.play.tripledev.app/api/evaluations/ \
-H "Authorization: Bearer $API_KEY" \
-H "Content-Type: application/json" \
-d '{...}'
Authentication Errors
| Status Code | Error | Description |
|---|---|---|
401 | Unauthorized | No API key provided or invalid API key |
403 | Forbidden | API key is valid but lacks permission for this resource |
Example Error Response
{
"detail": "Invalid or missing API key"
}