Skip to main content
The Intellixent API uses API keys to authenticate requests. Include your API key as a Bearer token in the Authorization header of every request.

Obtaining an API key

1

Log in to Intellixent

Go to https://portal.intellixent.ai/ and sign in to your account.
2

Navigate to API Keys

Open the API Keys page from your account settings.
3

Create a new key

Click Create new API Key, then copy and securely store the generated key.
Keep your API key confidential. Do not share it publicly or commit it to version control. If a key is compromised, delete it and create a new one.

Using your API key

Pass your key in the Authorization header of every request:
Authorization: Bearer YOUR_API_KEY

Example

curl -X GET "https://portal.intellixent.ai/api/user/campaigns" \
  -H "Authorization: Bearer YOUR_API_KEY"

Error responses

If your API key is missing or invalid, the API returns a 401 Unauthorized response:
{
  "message": "Unauthenticated."
}