Deep Voice Fake Detection API

Detect synthetic or manipulated voice clips with one API call.

Upload an audio file with multipart/form-data and receive a prediction, confidence score, probability breakdown, and remaining request count. Built for trust, moderation, and voice workflow screening.

Multipart file upload
Real and fake probabilities returned
Remaining requests included
Secure over HTTPS

Quickstart

POST multipart/form-data
/v1/deep-voice-fake/apiPOST

// Headers

apiKey:

YOUR_API_KEY

// Form Data

formData.append("file", yourAudioFile);

// Sample Response

{
  "success": true,
  "prediction": "fake", // possible values: "real" | "fake"
  "confidence": "97.20",
  "probabilities": {
    "real": "2.80",
    "fake": "97.20"
  },
  "remainingRequests": 119
}

Send the audio file using the file field. Supported formats include WAV, MP3, M4A, FLAC, OGG, WebM, AAC, Opus, WMA, AMR, 3GP, AIFF, AU, and more.

Fraud screening

Add deep voice fake checks to onboarding, support, and account recovery flows where trust matters.

Trust and safety workflows

Score suspicious audio before it reaches moderation or manual review queues.

Clean JSON responses

Receive prediction, confidence, probabilities, and remainingRequests in a compact response.

Fast integration

A simple multipart upload flow keeps implementation straightforward in web, backend, and mobile services.

Usage visibility

Track remaining request quota directly in each successful response.

Focused format support

Designed to handle many common voice analysis formats, including WAV, MP3, M4A, FLAC, OGG, WebM, AAC, Opus, WMA, AMR, 3GP, AIFF, AU, and more.

How it works

Deep voice fake detection in three steps.

1

Upload the file

POST multipart/form-data to the /api endpoint with your apiKey header and a file field.

2

Receive JSON

Get prediction, confidence, probabilities, and remainingRequests after processing completes.

3

Act on the signal

Route likely fake clips into review queues, alerts, or additional verification flows.

cURL

Multipart upload
curl -X POST 'https://api.genderrecognition.com/v1/deep-voice-fake/api' \
  -H 'apiKey: YOUR_API_KEY' \
  -F 'file=@/path/to/your/audio.wav'

JavaScript

fetch example
const apiKey = "YOUR_API_KEY";
const formData = new FormData();
formData.append("file", yourAudioFile);

const response = await fetch(
  "https://api.genderrecognition.com/v1/deep-voice-fake/api",
  {
    method: "POST",
    headers: {
      apiKey,
    },
    body: formData,
  }
);

const result = await response.json();

User-generated audio checks

Screen uploaded clips in creator, messaging, and marketplace products before publishing.

Voice workflow verification

Add a synthetic-audio signal to authentication, KYC, and support escalation pipelines.

Smarter review queues

Prioritize clips with a high fake probability so reviewers spend time where it matters most.

Ready to Get Started?

We provide the best gender recognition services using advanced AI technology to ensure accuracy and privacy for all users.

Create an account in minutes to claim your API key and have unrestricted access.

Register Account

Daily Free Usage

Enjoy a generous free tier every day to test and explore our APIs.

Try API

Pricing

Simple, transparent pricing. First 1000 requests free, then pay as you go. Check out our pricing page for more details.

View Pricing

Frequently Asked Questions