LogoAI ForensiX

Image Deepfake Detection

The Image Deepfake Detection API analyzes images to determine whether they are AI-generated, manipulated, or digitally altered.


Endpoint

POST /v1/image/detect

Request Body (multipart/form-data)

FieldTypeRequiredDescription
filebinaryYesThe image file to be analyzed.
explainbooleanNoReturns detailed explanation.
urlstringNoURL of an image if file upload not used.

Example Request (cURL)

curl -X POST "https://forensiz.ai/" \
  -H "x-api-key: YOUR_API_KEY" \
  -F file=@"/path/image.jpg"

Response Status Codes

Status CodeMeaning
200 OKImage processed successfully.
400 Bad RequestInvalid input or missing file.
401 UnauthorizedInvalid or missing API key.
403 ForbiddenAccess denied.
404 Not FoundEndpoint not found.
413 Request Entity Too LargeUploaded file exceeds size limit.
415 Unsupported Media TypeWrong file format.
500 Internal Server ErrorUnexpected server failure.

On this page