> ## Documentation Index
> Fetch the complete documentation index at: https://docu.scam.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# GenAI Image Detection

Detect AI-generated images from Midjourney, DALL-E, Stable Diffusion, and other AI systems using file upload.

## Parameters

<ParamField body="file" type="file" required>
  Image file (JPEG, PNG, BMP, GIF, WEBP) - Max 10MB
</ParamField>

<ParamField header="x-api-key" type="string" required>
  Your API key
</ParamField>

## Response

```json theme={null}
{
  "likely_ai_generated": true,
  "confidence_score": 0.87,
  "processing_time_ms": 245
}
```

## Example

```bash theme={null}
curl -X POST "https://api.scam.ai/api/defence/ai-image-detection/detect-file" \
  -H "x-api-key: YOUR_API_KEY" \
  -F "file=@/path/to/your/image.png"
```
