For the complete documentation index, see llms.txt. This page is also available as Markdown.

Detect Video

Detect AI-generated videos.

Detect if a video is AI-generated.

Endpoint

POST https://api.bitmind.ai/detect-video

Authentication

Send a Bearer token in the Authorization header.

See Authentication.

Request

curl -X POST https://api.bitmind.ai/detect-video \
  -H "Authorization: Bearer $API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"video": "https://example.com/video.mp4"}'

Multipart upload

curl -X POST https://api.bitmind.ai/detect-video \
  -H "Authorization: Bearer $API_KEY" \
  -F "video=@video.mp4"

JSON fields

Field
Type
Required
Description

video

string

Yes

Video URL. Supports YouTube, Twitter, TikTok, and direct links

startTime

float

No

Start time in seconds

endTime

float

No

End time in seconds

fps

integer

No

Frames per second for analysis

debug

boolean

No

Include debug data in the response

Multipart fields

Field
Type
Required
Description

video

file

Yes

Video file to upload

startTime

string

No

Start time in seconds

endTime

string

No

End time in seconds

fps

string

No

Frames per second for analysis

debug

string

No

"true" or "false"

Response

Notes

  • Direct uploads are limited to 10MB

  • For larger files, use the presigned upload flow in API Reference

Last updated