Deepfake Detection
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