Skip to main content

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

  1. Log in to your Triple Dashboard
  2. Navigate to SettingsAPI Keys
  3. Click Create API Key
  4. 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 CodeErrorDescription
401UnauthorizedNo API key provided or invalid API key
403ForbiddenAPI key is valid but lacks permission for this resource

Example Error Response

{
"detail": "Invalid or missing API key"
}