---
title: "Get detection feedback"
method: GET
path: "/detect/{uuid}/feedback"
tags: ["deepfakeDetection"]
---

# Get detection feedback

`GET /detect/{uuid}/feedback`

Retrieve your own feedback for a detect. Returns 404 when *you* haven't answered this
detect, even if the detect exists and a teammate has answered it.

## Path parameters

- `uuid` string, required

## Headers

- `Authorization` string, required

## Response `200`

Feedback

- DeepfakeDetectionGetDetectFeedbackResponse200
  - `success` boolean
  - `item` DetectFeedback — A reviewer's answer about a detection verdict, stored with a snapshot of what the model said at the time the answer was submitted. Returned by `POST /detect/{uuid}/feedback` and `GET /detect/{uuid}/feedback`.
    - `detect_uuid` string — The detect this answer is attached to.
    - `type` 'correct' | 'should_be_ai_generated' | 'should_be_authentic' | 'should_be_non_ai' | 'should_be_neutral' | 'skipped' — What the verdict should have been.
    - `vote` 'up' | 'down' — Derived from `type` — `correct` is `up`, everything else is `down`. Never independent of `type`.
    - `verdict` 'ai_generated' | 'authentic' — What the model said, snapshotted when the feedback was submitted. `null` when the detection landed somewhere indeterminate. `should_be_neutral` and `should_be_non_ai` have no counterpart here — this field records only the two decided model outcomes.
    - `score` number, double, nullable — The model's headline confidence, 0.0–1.0, or `null`. For video, the higher of the audio and video confidences.
    - `media_type` 'audio' | 'video' | 'image' | 'text' — Media type of the detect.
    - `comment` string, nullable — The reviewer's free-text comment, or `null`.
    - `credit` integer — Credits awarded for this answer. Written by Resemble, never by the submitter; `0` on a fresh row.
    - `source` string — Attribution string recorded for this answer. Defaults to `api`.
    - `created_at` string, date-time
    - `updated_at` string, date-time — Moves when the answer is revised; `created_at` does not.

## Other responses

- `404` — No such detect for the authenticated team, or you have not left feedback on it.

---

[API](https://skmtc.dev/resemble/apis/api-reference.md) · [All operations](https://skmtc.dev/resemble/apis/api-reference/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/resemble/api-reference/revisions/e93597a6b425/schema)
