EvoluAIv2 Docs

Authentication

Authentication

All requests must include:

X-API-Key: evai_your_key_here
Content-Type: application/json

Getting API Key

  1. Access the dashboard
  2. Go to Settings → API Keys
  3. Create new key

Verify Authentication

curl -X GET 'https://api.evolu-ai.com/trpc/user.me' \
  -H 'X-API-Key: evai_your_key_here'

Response:

{
  "result": {
    "data": {
      "id": "user_123",
      "name": "Name",
      "email": "email@company.com",
      "role": "admin",
      "companyId": "comp_456"
    }
  }
}

On this page