Video Inference
AI detection for videos
Video AI detection - Analyze if a video is AI-generated.
Processes videos entirely in memory with zero data retention. Supports MP4, AVI, MOV formats up to 500 MB.
Authentication: OAuth JWT or Organization API Key in Authorization header.
mTLS (optional): If your client requires mTLS, also include X-Client-Cert header.
Authorizations
Header parameters
X-Client-Certstring · byteOptional
For mTLS clients only: Base64-encoded client certificate.
Required only when your client has requires_mtls=true.
Body
videostring · binaryRequired
Video file
Responses
200
Video inference results
application/json
400
Bad request - Invalid input data
application/json
401
Unauthorized - Invalid or missing authentication
application/json
403
Forbidden - Permission denied or missing mTLS certificate
application/json
413
Video file too large (max 500 MB)
application/json
post
/videoPOST /video HTTP/1.1
Host: enterprise.bitmind.ai
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: multipart/form-data
Accept: */*
Content-Length: 18
{
"video": "binary"
}{
"isAI": false,
"confidence": 0.2891,
"processingTime": 1.234
}Last updated