API Reference
API documentation for EvoluAI
API Reference
Procurando a nova documentação interativa ou a Collection do Insomnia/Postman? Acesse o Scalar API Reference (http://localhost:3000/api-docs) para testar os endpoints REST em tempo real e fazer o Download automático da coleção!
Base URL: https://api.evolu-ai.com/trpc
Authentication
All requests require an API Key header:
X-API-Key: evai_your_key_here
Content-Type: application/jsonQuick Start
# Test authentication
curl -X GET 'https://api.evolu-ai.com/trpc/user.me' \
-H 'X-API-Key: evai_your_key_here'
# Create analysis
curl -X POST 'https://api.evolu-ai.com/trpc/analysis.create' \
-H 'Content-Type: application/json' \
-H 'X-API-Key: evai_your_key_here' \
-d '{
"json": {
"salespersonId": "user_xxx",
"audioKey": "path/to/audio.mp3"
}
}'