Deepfake Video

Analyzes a video to assess whether the input is likely real or synthetically generated (e.g. deepfake).

Endpoint

POST https://cloud.ooto-ai.com/api/v1.0/video/deepfake

Request Format

  • Method: POST

  • Content-Type: multipart/form-data

Authentication Headers

To access the API, you need to include the following headers in your request:

  • APP-ID: Your application's unique identifier.

  • APP-KEY: Your application's authentication key.

Form Data

Field

Type

Required

Description

video

File

Yes

mov, x-msvideo, webm, quicktime, mp4

Example Request (cURL)

curl -X POST "https://cloud.ooto-ai.com/api/v1.0/video/deepfake" \
  -H "app-id: <APP_ID>" \
  -H "app-key: <APP_KEY>" \
  -F "video=@/path/to/video.mp4"

Replace «app_id», «app_key» with your actual credentials and the path to your video.

Successful Response (HTTP 200)

Last updated