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

1{
2 "success": true,
3 "item": {
4 "uuid": "8670b3cb8442fb4429a375c21545451a",
5 "results": {
6 "error_message": null,
7 "label": "elevenlabs"
8 },
9 "created_at": "2025-05-13T19:15:32.250Z",
10 "detect_uuid": "8c6e7a99f3faee6e0ec0cb138bdd4a20"
11 }
12}

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)

1{
2 "success": false,
3 "item": null,
4 "message": "Not found"
5}

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