Parameters
Audio Upload and Token Authentication
When submitting your job via API, ensure the following:- The
source_audio
is provided viamultipart/form-data
- The
developer_token
must be included in theAuthorization
header as a Bearer token
Biometric Redaction Parameters
Biometric age group to apply to the anonymized voice identity. Only used when
avatar
is not provided.
Allowed values:- young-adult (18–39)
- middle-aged-adult (40–59)
- senior-adult (60+)
- same
- random
Target gender of the anonymized voice identity.
Allowed values:
- same
- opposite
- random
- f
- m
Target language of the audio file.
Allowed values:
- en
- fr
- it
- es
- de
Model variant for biometric voice print redaction.
Allowed values:
- mini 0.25 RTF
- advanced 0.75 RTF
Optional emotion to apply to avatar identity.
Example Curl Usage
✅ Minimal biometric redaction request (uses defaults)
🎯 Custom biometric request
⚠️ Possible API Errors
HTTP Code | Error Condition | Message |
---|---|---|
400 | Invalid field value or combination | Descriptive error string |
401 | Missing or malformed Authorization header | "Missing Authorization header" |
403 | Invalid developer token | "Invalid token" |
400 | Missing audio | "Missing audio file" |
400 | Invalid model_id | "Invalid model_id. Allowed: mini, advanced" |
400 | Invalid biometric-age | "Invalid biometric-age. Allowed: young-adult, middle-aged-adult, senior-adult, same, random" |
400 | Invalid gender | "Invalid gender. Allowed: same, random, opposite" |
400 | Invalid emotion | "Invalid emotion. Allowed: ..." |
500 | Backend failure | "Proxying failed" |
503 | Model not loaded | "Model not loaded" |