List Audio Intelligences

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

Retrieve a paginated list of all audio intelligence 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_intelligences?page=1&page_size=10' \
> -H 'Authorization: Bearer YOUR_API_TOKEN'

Response

1{
2 "success": true,
3 "page": 1,
4 "num_pages": 3,
5 "page_size": 10,
6 "total_count": 25,
7 "items": [
8 {
9 "uuid": "int456def...",
10 "description": "## Speaker Analysis\n\n**Language:** English (US)\n**Dialect:** Midwestern American\n**Emotion:** Neutral with slight anxiety\n\n## Transcription\n\"Hello, this is a test recording...\"\n\n## Analysis\nThe speaker appears to be a male in his 30s-40s...",
11 "created_at": "2025-12-10T15:31:00.000Z",
12 "detect_uuid": "a1b2c3d4e5f6..."
13 }
14 ]
15}

Response Fields

FieldTypeDescription
uuidstringUnique identifier for the intelligence report.
descriptionstringThe AI-generated intelligence analysis (may contain markdown).
created_atstringISO 8601 timestamp of creation.
detect_uuidstringUUID of the associated detect object. Use GET /api/v2/detect/:uuid to fetch full details.

Notes

  • The description field may contain markdown-formatted text including headers, lists, and other formatting
  • 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