Deepfake Detection

The 0xIQ.ai 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
    }
}

Last updated