---
title: "Detect image deepfakes"
method: POST
path: "/api/v1/platform/scrapers/image/deepfake-detection"
tags: ["Scrapers"]
---

# Detect image deepfakes

`POST /api/v1/platform/scrapers/image/deepfake-detection`

Analyze an image for signs of face manipulation. Submit either a public image URL or a multipart image file.

## Request body

- PlatformImageDeepfakeDetectionDto
  - `url` string — Public http(s) image URL to analyze. Provide either url or multipart image, not both.
  - `image` string, binary — Multipart image file to analyze. Provide either image or url, not both.

## Response `200`

Image authenticity analysis result.

- object
  - `data` ImageDeepfakeDetectionResponseDto, required
    - `verdict` 'likely_real' | 'uncertain' | 'likely_deepfake', required
    - `score` number, required
    - `status` 'complete' | 'inconclusive', required
    - `signals` ImageDeepfakeSignalsResponseDto, required
      - `fullImageGeneration` ImageDeepfakeSignalResponseDto, required
        - `score` number, nullable, required
      - `faceManipulation` ImageDeepfakeFaceManipulationSignalResponseDto, required
        - `score` number, nullable, required
        - `facesAnalyzed` number, required
  - `meta` PublicResponseMetaDto, required
    - `requestId` string, required

## Other responses

- `400` — The request body or parameters are invalid.
- `401` — Authentication is required.
- `402` — The organization does not have enough credits for this request.
- `500` — An unexpected error occurred.
- `502` — The upstream service could not complete the request.
- `503` — The service is temporarily unavailable.

---

[API](https://skmtc.net/thehog/apis/the-hog-api.md) · [All operations](https://skmtc.net/thehog/apis/the-hog-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/thehog/the-hog-api/versions/f5056017668a/schema)
