Skip to main content
Version: 2.0.0

Get Detection Result

note

Detect API is currently in beta. Please contact us if you would like to be added to the beta program.

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 clip is fake or real, and a score array that contains the prediction per chunk.

{
"success": true,
"item": {
"uuid": "5c17d732-0d10-4ee3-8c1d-41ad9b9142a1",
"metrics": {
"label": "fake",
"score": ["0.9", "0.8", "0.7"]
}
}
}