1. end-points
  • Semihuman API Documentation
  • end-points
    • Humanize text
      POST
    • Check AI content
      POST
    • AI Video Detection
      POST
  1. end-points

AI Video Detection

POST
https://api.semihuman.ai/ai-video-detection
Check if video is AI-generated or not

Request

Header Params

Body Params multipart/form-data

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api.semihuman.ai/ai-video-detection' \
--header 'x-humanizer-api-key;' \
--form 'file=@""'

Responses

🟢200OK
application/json
Video detection result.
Body

Example
{
    "message": "Detection complete",
    "isHuman": 0,
    "fakePercentage": 100,
    "totalFrames": 8,
    "fakeFrames": 8,
    "realFrames": 0,
    "resultMessage": "The video is likely manipulated (100% fake frames)",
    "framesClassification": [
        {
            "frame": "frame_0000.jpg",
            "predicted_label": "fake",
            "probabilities": [
                [
                    0
                ]
            ]
        }
    ]
}
🟠400Bad Request
🔴500Server Error
Previous
Check AI content
Built with