Voice Gender Recognition (Audio URL) API

Detect gender from voice with a URL.

Drop in a publicly accessible audio URL and get gender, confidence, and usage info. Perfect for server-side pipelines and batch jobs.

URL-based audio ingestion
Confidence scores returned
Typical sub-2s for short clips
Secure over HTTPS

Quickstart

POST JSON
/v1/voice-gender-recognition/api/urlPOST

// Headers

apiKey:

YOUR_API_KEY

// JSON Body

{
  "url": "https://example.com/audio.wav"
}

// Sample Response

{
  "gender": "male",
  "confidence": 92.3,
  "remainingRequests": 120,
  "success": true
}

Tip: ensure the URL is publicly reachable and points directly to audio content.

Hands-off ingestion

No file handling—just pass a URL for rapid integration with your pipelines.

Personalization

Use gender signals from audio to tailor experiences and flows.

Fraud & moderation

Validate or flag voice submissions without manual review.

Built for scale

Handle spikes gracefully; swap to file upload for non-public assets.

Clean JSON responses

Simple fields: gender, confidence, remainingRequests, success.

Global coverage

Supports many audio formats and accents worldwide.

How it works

Voice gender from a URL in three steps.

1

Send an audio URL

POST the audio URL to the /url endpoint with your apiKey header.

2

Get JSON response

Receive gender, confidence, and usage info in seconds.

3

Scale when ready

Use batch jobs with URLs or switch to file upload for private assets.

cURL

URL lookup
curl -X POST 'https://api.genderrecognition.com/v1/voice-gender-recognition/api/url' \
  -H 'Content-Type: application/json' \
  -H 'apiKey: YOUR_API_KEY' \
  -d '{"url":"https://example.com/audio.wav"}'

JavaScript

fetch example
const apiKey = "YOUR_API_KEY";
const payload = {
  url: "https://example.com/audio.wav"
};

const response = await fetch(
  "https://api.genderrecognition.com/v1/voice-gender-recognition/api/url",
  {
    method: "POST",
    headers: {
      "Content-Type": "application/json",
      apiKey,
    },
    body: JSON.stringify(payload),
  }
);
const result = await response.json();

Contact centers

Enrich call data with gender signals for analytics and routing.

Voice-led apps

Detect gender from stored prompts or IVR recordings via URL without hosting changes.

Moderation

Automate voice content checks and flag anomalies with minimal code.

Prêt à commencer ?

Nous offrons les meilleurs services de reconnaissance de genre en utilisant une technologie IA avancée pour garantir précision et confidentialité pour tous les utilisateurs

Créez un compte en quelques minutes pour obtenir votre clé API et bénéficier d'un accès sans restriction

Créer un compte

Utilisation quotidienne gratuite

Profitez d'un niveau gratuit généreux chaque jour pour tester et explorer nos APIs

Essayer l'API

Tarifs

Tarification simple et transparente. Les 1 000 premières requêtes sont gratuites, puis payez au fur et à mesure. Consultez notre page de tarifs pour plus de détails

Voir les tarifs

Frequently Asked Questions