LogoAI ForensiX

Audio Deepfake / Voice Spoof Detection

Detects synthetic voices, cloned speakers, and audio generated using TTS (Text-to-Speech) models.

The Audio Deepfake Detection API analyzes audio signals to detect synthetic voices, cloned speakers, and speech generated using TTS models.
It identifies spoofing patterns, AI artifacts, and manipulation in recorded audio.


Endpoint

POST /v1/audio/detect

Request Body

FieldTypeRequiredDescription
filebinaryYesAudio file to analyze.
explainbooleanNoReturns detailed explanation of detected spoofing.
transcribebooleanNoEnables speech-to-text transcription.
urlstringNoURL to an audio file (alternative to uploading).

Example Request (cURL)

curl -X POST "https://forensiz.ai/" \
  -H "x-api-key: YOUR_API_KEY" \
  -F file=@"/path/audio.mp3"

Response Status Codes

Status CodeMeaning
200 OKAudio processed successfully.
400 Bad RequestRequest is invalid or missing fields.
401 UnauthorizedMissing or invalid API key.
403 ForbiddenAccess denied for this API key.
404 Not FoundEndpoint does not exist.
413 Request Entity Too LargeAudio file exceeds the size limit.
415 Unsupported Media TypeIncorrect or unsupported audio format.
500 Internal Server ErrorUnexpected error occurred.

On this page