Get Audio Source Tracing

GET https://app.resemble.ai/api/v2/audio_source_tracings/{uuid}

Retrieve a single source tracing report by its UUID.

Path Parameters

ParameterTypeRequiredDescription
uuidstringThe UUID of the source tracing report.

Example Request

curl 'https://app.resemble.ai/api/v2/audio_source_tracings/trace789ghi' \
-H 'Authorization: Bearer YOUR_API_TOKEN'

Response

{
"success": true,
"item": {
"uuid": "8670b3cb8442fb4429a375c21545451a",
"results": {
"error_message": null,
"label": "elevenlabs"
},
"created_at": "2025-05-13T19:15:32.250Z",
"detect_uuid": "8c6e7a99f3faee6e0ec0cb138bdd4a20"
}
}

Response Fields

FieldTypeDescription
uuidstringUnique identifier for the source tracing report.
resultsobjectSource tracing analysis results.
results.labelstringIdentified source of the audio (e.g., resemble_ai, elevenlabs) or real if audio is not synthetic.
results.error_messagestringError message if tracing failed (null on success).
created_atstringISO 8601 timestamp of creation.
detect_uuidstringUUID of the associated detect object. Use GET /api/v2/detect/:uuid to fetch full details.

Error Response (404)

{
"success": false,
"item": null,
"message": "Not found"
}

Notes

  • Source tracing results identify which AI platform was likely used to generate synthetic audio
  • The results.label field returns real when the audio is determined to not be synthetic
  • Use the detect_uuid field to retrieve the associated detect object for full detection details