Authentication
Authentication
Header
All requests must include:
X-API-Key: evai_your_key_here
Content-Type: application/jsonGetting API Key
- Access the dashboard
- Go to Settings → API Keys
- 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"
}
}
}