For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Status
OverviewProductsManageAPI ReferenceTutorialsClient Libraries
OverviewProductsManageAPI ReferenceTutorialsClient Libraries
  • Voice Generation
    • Speech-to-Speech
  • Voice Creation
  • Voice Tools
  • Real-Time Agents
    • Overview
  • Safety & Detection
      • Overview
      • List Audio Source Tracings
      • Get Audio Source Tracing
Status
LogoLogo
On this page
  • Path Parameters
  • Example Request
  • Response
  • Response Fields
  • Error Response (404)
  • Notes
Safety & DetectionAudio Source Tracing

Get Audio Source Tracing

Was this page helpful?
Previous

Identity API

Next
Built with

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

Retrieve a single source tracing report by its UUID.

Path Parameters

ParameterTypeRequiredDescription
uuidstring✅The 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