Skip to main content
Version: 2.0.0

Description

note

Detect API is currently in beta. Please contact us if you would like to be added to the beta program.

The Resemble Deepfake Detection API endpoints provide functionality to detect deepfakes in audio files. These endpoints allow you to submit audio for deepfake detection, and retrieve detection results.

interface DetectionRequest {
url: string
callback_url?: string
}

interface DetectionResult {
success: boolean
item: {
uuid: string
metrics: {
label: string
score: string[]
} | null
}
}