Get Detection Result
Retrieve the deepfake detection result using the provided UUID.
HTTP Request
GET https://app.resemble.ai/api/v2/detect/:uuid
HTTP Response
metrics
includes a label
boolean that reflects whether the media file is fake or real, and a score
array that contains the prediction per chunk. For instances where the media file is an image, there will be a key named "image_metrics" the score will be a single value. If the media file is a video file, there will be key named "video_metrics" and the score will be a single value.
{
"success": true,
"item": {
"uuid": "5c17d732-0d10-4ee3-8c1d-41ad9b9142a1",
"metrics": {
"label": "fake",
"score": ["0.9", "0.8", "0.7"]
},
"image_metrics": {
"label": "fake",
"score": "0.9"
},
"video_metrics": {
"label": "fake",
"score": "0.9"
}
}
}