List Audio Source Tracings

GET https://app.resemble.ai/api/v2/audio_source_tracings

Retrieve a paginated list of all source tracing reports for the authenticated user’s team.

Query Parameters

ParameterTypeRequiredDefaultDescription
pageinteger-Page number (must be >= 1).
page_sizeinteger10Number of items per page (10-1000).

Example Request

$curl 'https://app.resemble.ai/api/v2/audio_source_tracings?page=1&page_size=10' \
> -H 'Authorization: Bearer YOUR_API_TOKEN'

Response

1{
2 "success": true,
3 "page": 1,
4 "num_pages": 2,
5 "page_size": 10,
6 "total_count": 15,
7 "items": [
8 {
9 "uuid": "8670b3cb8442fb4429a375c21545451a",
10 "results": {
11 "error_message": null,
12 "label": "resemble_ai"
13 },
14 "created_at": "2025-05-13T19:15:32.250Z",
15 "detect_uuid": "8c6e7a99f3faee6e0ec0cb138bdd4a20"
16 }
17 ]
18}

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.

Notes

  • Use the detect_uuid field to retrieve the associated detect object for full detection details
  • The default page size is 10, with a maximum of 1000 items per page