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

Detect Image

Detect AI-generated images.

Detect if an image is AI-generated.

Endpoint

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

Authentication

Send a Bearer token in the Authorization header.

See Authentication.

Request

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

Multipart upload

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

JSON fields

Field
Type
Required
Description

image

string

Yes

Image URL or base64 data URI

debug

boolean

No

Include debug data in the response

Multipart fields

Field
Type
Required
Description

image

file

Yes

Image file to upload

debug

string

No

"true" or "false"

Supported formats

JPEG, PNG, GIF, BMP, WebP, AVIF

Response

Response with debug enabled

Last updated