AI Detection
Detect AI-generated content with high accuracy, providing confidence scores and detailed analysis predictions.
POSTv1/34/detect-image
Detect an image
Detect AI-generated images with high accuracy.
Required attributes
- Name
image
- Type
- string
- Description
URL or Base64 encoded image for analysis.
Response model
- Name
isAI
- Type
- boolean
- Description
Indicates if the content is predicted to be AI-generated.
- Name
confidence
- Type
- float
- Description
Confidence score of the inference result.
- Name
predictions
- Type
- array
- Description
List of prediction scores.
- Name
similarity
- Type
- float
- Description
Similarity to known AI generated content.
- Name
fqdn
- Type
- string
- Description
Fully qualified domain name of the validator that generated the inference result.
This endpoint is authenticated. Get your API key
Request
POST
v1/34/detect-imagecurl -X POST "https://api.bitmind.ai/oracle/v1/34/detect-image" \
-H "Authorization: Bearer {token}" \
-H "Content-Type: application/json" \
-d '{
"image": "https://picsum.photos/256"
}'
Response
{
"isAI": true,
"confidence": 0.95,
"predictions": [
0.92,
0.96,
0.97
],
"similarity": 0.85,
"fqdn": "validator.bitmind.ai"
}
POSTv1/34/detect-video
Detect a video
Detect AI-generated videos with high accuracy.
Required attributes
- Name
video
- Type
- file
- Description
Video file uploaded as form data.
Max duration is limited by frame count (144 frames maximum, roughly 6 seconds at 24fps).
Supported formats:mp4
,mov
,avi
.
This endpoint is authenticated. Get your API key
Request
POST
v1/34/detect-videocurl -X POST "https://api.bitmind.ai/oracle/v1/34/detect-video" \
-H "Authorization: Bearer {token}" \
-H "Content-Type: application/json" \
-d '{
"formData": {
"video": "<binary file>"
}
}'
Last updated: April 4, 2025