Getting Started
Follow these steps to call the Amplifier Health API from your app.
Create an account
Sign up at console.amplifierhealth.com, verify your email, and sign in to the console.
Get your credentials
In the console, copy your account ID and create an API key under API Keys — enter a label in the New Key field and click Create key. Send them as the X-Account-ID and X-API-Key headers on every v2 request. Store the API key securely and never commit it to source control.
Make your first call
POST to /v2/models/{model_name}/analyze with multipart/form-data:
- Headers:
X-Account-IDandX-API-Key - The model name goes in the URL path; the only form field needed is the recording file as
audio
Examples:
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"