AI Video Detection Response
The Copyleaks AI Video Detection API delivers results asynchronously via webhook. The webhook payload contains time-based detection data for the audio and visual tracks, overall AI ratios, video metadata, and scan details.
Response Properties
Section titled “Response Properties”The version of the AI detection model used for the analysis.
audioResult object
Time-based AI detection results for the audio track. Positions and lengths are in milliseconds.
Start positions (in ms) of AI-detected audio segments.
Durations (in ms) of AI-detected audio segments, corresponding to each value in starts.
exclude object
Segments of the audio track that were not scored and are excluded from the AI ratio calculations.
Start positions (in ms) of excluded audio ranges.
Durations (in ms) of excluded audio ranges.
visualResult object
Time-based AI detection results for the visual track. Positions and lengths are in milliseconds.
Start positions (in ms) of AI-detected visual segments.
Durations (in ms) of AI-detected visual segments, corresponding to each value in starts.
exclude object
Segments of the visual track that were not scored and are excluded from the AI ratio calculations.
Start positions (in ms) of excluded visual ranges.
Durations (in ms) of excluded visual ranges.
summary object
Overall AI detection ratios calculated from the scored segments only. Segments listed in exclude are not included in any of these calculations.
Ratio of AI-detected audio duration to total audible duration. Excluded audio ranges are not counted. Range: 0.0–1.0.
Ratio of AI-detected visual duration to total visible duration. Excluded visual ranges are not counted. Range: 0.0–1.0.
Combined AI ratio across both audio and visual tracks, relative to the total video duration. Range: 0.0–1.0.
videoInfo object
Information about the analyzed video.
Total duration of the video in seconds.
metadata object
Optional metadata extracted from the video file (e.g. C2PA provenance data).
Timestamp (if available) indicating when the video was created.
The AI service or tool that created the video, if present in the metadata.
The application or device used to create the video, if available in the metadata.
A summary of how the video was generated, if available in the metadata.
scannedVideo object
Metadata about the scan operation itself.
The unique identifier for this scan, provided by you in the request.
The actual number of credits consumed by the scan.
The expected number of credits for the scan.
The ISO 8601 timestamp indicating when the scan was created.
Example Response
Section titled “Example Response”{ "model": "ai-video-1-pro", "audioResult": { "starts": [13000, 45000, 47000], "lengths": [14000, 1000, 8700], "exclude": { "starts": [0, 3250, 5400, 7600, 10500], "lengths": [2950, 1500, 1200, 650, 1050] } }, "visualResult": { "starts": [11566, 29433], "lengths": [6134, 26267], "exclude": { "starts": [], "lengths": [] } }, "summary": { "audioAIRatio": 0.4902, "visualAIRatio": 0.5817, "overallAIRatio": 0.7487 }, "videoInfo": { "metadata": { "issuedTime": "2026-03-17T13:14:57+00:00", "issuedBy": "OpenAI", "appOrDeviceUsed": "Sora", "contentSummary": "Created using generative AI" }, "duration": 55.7 }, "scannedVideo": { "scanId": "my-video-scan-1", "actualCredits": 1, "expectedCredits": 1, "creationTime": "2026-05-05T12:37:50Z" }}