Unified Detect
One endpoint that auto-detects the media type and routes detection.
Last updated
curl -X POST https://api.bitmind.ai/v1/detect \
-H "Authorization: Bearer $API_KEY" \
-H "Content-Type: application/json" \
-d '{"media": "https://example.com/photo.jpg"}'curl -X POST https://api.bitmind.ai/v1/detect \
-H "Authorization: Bearer $API_KEY" \
-F "file=@clip.mp4"curl -X POST https://api.bitmind.ai/v1/detect \
-H "Authorization: Bearer $API_KEY" \
-H "Content-Type: text/plain" \
--data "In conclusion, the synergistic leveraging of cross-functional..."{
"mediaType": "image",
"result": {
"isAI": false,
"confidence": 0.23,
"similarity": 0.05,
"objectKey": "1234567890.jpg"
}
}