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 media files (audio, images, and video). These endpoints allow you to submit a media file 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
media_type: string // "audio", "image", or "video"
created_at: string
updated_at: string
url: string
duration: string
}
}