Skip to main content
Version: 2.0.0

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 that reflects whether the media file is fake or real, and a score array that contains the prediction per chunk. For audio files, metrics includes a consistency field. For video files, metrics includes a consistency field for the audio track analysis, and there will be a key named "video_metrics" with detailed visual analysis including nested results with timestamps and certainty scores. For image files, there will be an "image_metrics" key with the analysis results.

{
"success": true,
"item": {
"uuid": "5c17d732-0d10-4ee3-8c1d-41ad9b9142a1",
"metrics": {
"label": "fake",
"score": ["0.9", "0.8", "0.7"],
"consistency": "0.85",
"aggregated_score": "0.566"
},
"image_metrics": {
"label": "fake",
"score": "0.9",
"type": "<type>",
"image": "<image>",
"children": []
},
"video_metrics": {
"label": "Fake",
"score": "0.9",
"certainty": "0.9",
"treeview": "<treeview>",
"children": [
{
"type": "VideoResult",
"conclusion": "Fake",
"score": "0.99",
"certainty": "0.9",
"certainty (%)": "0.9",
"children": [
{
"type": "ImageResult",
"conclusion": "Fake",
"score": "0.9",
"certainty": "0.95",
"certainty (%)": "95.0",
"timestamp": "0.23",
"children": [
{
"type": "<type>",
"conclusion": "Fake",
"score": "0.9",
"certainty": "0.995",
"certainty (%)": "99.5"
}
]
}
]
}
]
}
}
}