List Intelligences

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

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

Query Parameters

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

Example Request

$curl 'https://app.resemble.ai/api/v2/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": "abc123...",
10 "description": "Analysis content...",
11 "created_at": "2025-12-10T15:31:00.000Z",
12 "detect_uuid": "def456...",
13 "media_type": "audio"
14 }
15 ]
16}

Response Fields

FieldTypeDescription
uuidstringUnique identifier for the intelligence report.
descriptionstringThe AI-generated intelligence analysis.
created_atstringISO 8601 timestamp of creation.
detect_uuidstringUUID of the associated detect object.
media_typestringType of media analyzed: audio, video, or image.