Audio Source Tracing

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

Use these endpoints to retrieve source tracing reports: