AI Detection

Detect AI-generated content with high accuracy, providing confidence scores and detailed analysis predictions on Subnet 34.


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.

Request

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

Response

{
  "isAI": true,
  "confidence": 0.95,
  "predictions": [0.92, 0.96, 0.97],
  "similarity": 0.85,
  "fqdn": "validator.bitmind.ai"
}

The detection model

The detection model contains the inference results for the provided content.

Properties

  • 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.