API Tokens

API tokens authenticate your applications when making requests to the 88Agents API. Tokens are created per-user and don't expire until deleted.

Creating Tokens

API Tokens page with create form and token list
  1. Go to User Settings → API Tokens
  2. Enter a descriptive name (e.g. "Mobile App", "CI/CD Pipeline")
  3. Click Create Token

Warning

The token is only shown once after creation. Copy it immediately and store it securely. You cannot view the full token again.

Using Tokens

Include your API token in the Authorization header:

bash
curl -X POST https://app.88agents.co/api/agents/AGENT_ID/chat \  -H "Authorization: Bearer YOUR_API_TOKEN" \  -H "Content-Type: application/json" \  -d '{"message": "Hello!"}'

Managing Tokens

Your existing tokens are listed below the create form, showing the token name, creation date, and last used status. Click Delete to revoke a token — it stops working immediately.

Tip

Create one token per integration so you can revoke access to a single application without disrupting others.