Image Deepfake Detection
The Image Deepfake Detection API analyzes images to determine whether they are AI-generated, manipulated, or digitally altered.
| Field | Type | Required | Description |
|---|
file | binary | Yes | The image file to be analyzed. |
explain | boolean | No | Returns detailed explanation. |
url | string | No | URL of an image if file upload not used. |
curl -X POST "https://forensiz.ai/" \
-H "x-api-key: YOUR_API_KEY" \
-F file=@"/path/image.jpg"
| Status Code | Meaning |
|---|
| 200 OK | Image processed successfully. |
| 400 Bad Request | Invalid input or missing file. |
| 401 Unauthorized | Invalid or missing API key. |
| 403 Forbidden | Access denied. |
| 404 Not Found | Endpoint not found. |
| 413 Request Entity Too Large | Uploaded file exceeds size limit. |
| 415 Unsupported Media Type | Wrong file format. |
| 500 Internal Server Error | Unexpected server failure. |