What You Need
- A Dolva API token (from your dashboard at dolva.ai)
- An audio file to analyze (WAV, MP3, or similar — see Audio Requirements)
curl, Python 3, or Node.js
Step 1: Pick Your Analysis Type
Dolva offers two analysis endpoints:/v1/analyze/cognitive— for cognitive load, clarity, and processing signals/v1/analyze/emotion— for emotional state and valence signals
Step 2: Make the Request
Replacedv-xxxxxxxx with your token and /path/to/audio.wav with your file path:
Step 3: Read the Response
A successful request returns HTTP200 with a JSON body containing the analysis signals:
Example Response
The exact fields returned depend on the Dolva model version and the content of your audio. See Interpreting Results for a detailed explanation of each field.
Step 4: Try Emotion Analysis
Repeat the same request against the emotion endpoint to see affective signals:curl
What’s Next
Interpreting Results
Understand what each signal value means.
Error Handling
Handle errors and edge cases in production.