# Enterprise Image

Detect AI-generated images with zero data retention.

## Endpoint

`POST https://enterprise.bitmind.ai/image`

## Authentication

Send a Bearer token in the `Authorization` header.

Use an enterprise API key.

Standard API keys are rejected.

See [Authentication](https://docs.bitmind.ai/api-reference/authentication).

## Availability

This endpoint is for enterprise customers.

Keys are provisioned by the BitMind team.

## Request

```bash
curl -X POST https://enterprise.bitmind.ai/image \
  -H "Authorization: Bearer $ENTERPRISE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"image": "https://example.com/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"` |

## Response

```json
{
  "isAI": false,
  "confidence": 0.897
}
```

## Notes

* Uses the enterprise zero-retention pipeline.
* No media is stored.
* No analytics are logged.
