Quickstart
In this guide you will create a Helios model run, upload a voice recording, and retrieve biomarker scores — the complete end-to-end flow of a Helios integration.
Prerequisites
- A thymia API key. Contact support@thymia.ai to request access.
- A voice recording in a supported format (FLAC, MP3, MP4, Ogg, WebM, or WAV) containing at least 10 seconds of speech.
Step 1 — Create a model run
Create a new Helios model run for your user. This returns a unique model run ID and a pre-signed URL to upload the recording to:
A successful response returns a model run ID and upload URL:
The userLabel should be a unique identifier from your system — for
example, a user ID or anonymised reference. Model runs submitted with
the same userLabel are assumed to refer to the same individual.
Accurate demographic data directly affects the reliability of
benchmarked results.
Step 2 — Upload the recording
Upload your voice recording to the pre-signed URL returned in the
previous step via a PUT request:
The upload URL is valid for 1 hour. The model will not begin processing until the recording has been successfully uploaded.
Step 3 — Poll for results
Once the recording is uploaded, Helios begins processing automatically. Poll the model run endpoint using the ID returned in Step 1 until results are available:
Check the status field in the response to determine whether
processing is complete:
We recommend polling every 3 seconds. Once processing is complete
the response will include a results field containing biomarker scores:
You have successfully run the Helios model and retrieved biomarker scores for your user.
All requests to the thymia API must include your API key in the
x-api-key header. Keep your key secret and never expose it in
client-side code.
Next steps
- Integration Guide — Build a complete production integration including error handling, data deletion, and tagging.
- Interpreting Results — Understand what the scores mean and how to present them to users.
- Error Reference — Handle
COMPLETE_ERRORresponses correctly in your integration.






