Gender Detection
Classify speaker gender (file upload)
Classify the gender of the speaker from an uploaded audio file. Accepts audio files in WAV, MP3, FLAC, OGG, and other common formats.
post/gender-detection/classify/upload
Headers
x-api-keystring required
API Key
Response
Successful classification
Example response
{
"predicted_gender": "female",
"confidence": 0.95,
"prediction": {
"female": 0.95,
"male": 0.05
},
"duration_seconds": 3.5,
"processing_time_ms": 120.5
}