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
  • Overview
  • Response Schema
  • Response Fields
  • Source Tracing Visibility
  • Related Endpoints
Safety & DetectionAudio Source Tracing

Audio Source Tracing

Was this page helpful?
Previous

List Audio Source Tracings

Next
Built with

Audio Source Tracing identifies the origin of synthetic audio by analyzing audio patterns and comparing them against known AI voice generation platforms.

Overview

When audio is detected as synthetic (labeled fake), source tracing can identify which AI platform was likely used to generate it. The system returns a label identifying the likely source (e.g., resemble_ai, elevenlabs) or real if the audio is determined to not be synthetic.

Response Schema

1interface AudioSourceTracingResult {
2 uuid: string;
3 results: {
4 label: string;
5 error_message: string | null;
6 };
7 created_at: string;
8 detect_uuid: string;
9}

Response Fields

FieldTypeDescription
uuidstringUnique identifier for the source tracing report.
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.

Source Tracing Visibility

  • In detect objects: audio_source_tracing results are only returned when the audio detection result is labeled as fake
  • Standalone endpoints: When accessing the /audio_source_tracings endpoints directly, results are always returned regardless of the detection label

Related Endpoints

Use these endpoints to retrieve source tracing reports:

  • List Audio Source Tracings - Get all source tracing reports
  • Get Audio Source Tracing - Get a single report by UUID