# StableDetect Video Deepfake Detection

> StableDetect Video Deepfake Detection is a paid API for AI agents from stabledetect.dev, paid per call via x402, $0.1/call, status down (last checked 2026-09-15).

Detects whether a video is AI-generated or a deepfake using pay-per-call inference

## Facts

- Endpoint: POST https://stabledetect.dev/api/detect/video
- Price: $0.1/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/stabledetect-video-deepfake-detection-33a37d19
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Q1AaolrVpgr1BWEZxXga2

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability stabledetect-video-deepfake-detection-33a37d19 -d '<json body>'
```

Example prompt: Can you check if this video is a deepfake or AI-generated? Here's the link: https://example.com/video.mp4 — I need to know if it's authentic before sharing it.

## When to prefer this

Choose this endpoint when you need to verify the authenticity of a video and determine whether it is AI-generated or a deepfake. Ideal for content moderation pipelines, journalism fact-checking, social media verification, or any workflow requiring automated detection of synthetic video. Prefer this over general-purpose vision models which are not purpose-built for deepfake detection.

## Known failure modes

- Unsupported video format or codec returns an error
- Video file too large or too long exceeds processing limits
- Invalid or inaccessible video URL returns a fetch error
- Low-quality or heavily compressed video may reduce detection accuracy
- Network timeout for large video files
- Insufficient payment or payment failure blocks the request

## How this service works

Pay-per-call AI content detection. Classify text as AI-generated, AI-assisted, or human-written, and detect AI-generated or deepfake images and video.

## Output

Returns a classification indicating whether the video is AI-generated, a deepfake, or authentic human-recorded content, along with a confidence score or probability indicating how certain the model is in its determination.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object",
     "$schema": "https://json-schema.org/draft/2020-12/schema",
     "required": [
      "video"
     ],
     "properties": {
      "fps": {
       "type": "integer",
       "maximum": 30,
       "minimum": 1,
       "description": "Frames per second to sample"
      },
      "video": {
       "type": "string",
       "format": "uri",
       "description": "Video to analyze. Direct video URLs plus YouTube, Twitter/X, and TikTok links are supported."
      },
      "endTime": {
       "type": "number",
       "minimum": 0,
       "description": "End of the segment to analyze, in seconds"
      },
      "startTime": {
       "type": "number",
       "minimum": 0,
       "description": "Start of the segment to analyze, in seconds"
      }
     },
     "additionalProperties": false
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/stabledetect-video-deepfake-detection-33a37d19/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from stabledetect.dev](https://www.zero.xyz/host/stabledetect.dev/llms.txt)
