Voice biomarker analysis for health and wellness
Analyze voice recordings for behavioral, cognitive, and metabolic health signals. Structured scores and recommended actions you can plug into your product.
How it works
- 1POST
/v2/models/{model_name}/analyzeMultipart upload — audio file; model name in the URL path. Returns a job_id immediately.
- 2GET
/v2/jobs/{job_id}Poll until status is done, or configure a webhook to receive the result.
- 3
result.summary.overall_level · result.summary.recommended_action · result.signals[]Structured for routing — use overall_level and recommended_action in your workflow logic.
Submit audio and retrieve results
Submit one recording; the response includes a job_id for polling or webhook delivery.
curl -X POST https://api.amplifierhealth.com/v2/models/apex/analyze \
-H "X-Account-ID: your-account-id" \
-H "X-API-Key: your-api-key" \
-F "audio=@recording.wav;type=audio/wav"Get the result with the job_id from that response (or use your webhook instead):
curl https://api.amplifierhealth.com/v2/jobs/your-job-id \
-H "X-Account-ID: your-account-id" \
-H "X-API-Key: your-api-key"