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

{
"success": true,
"page": 1,
"num_pages": 3,
"page_size": 10,
"total_count": 25,
"items": [
{
"uuid": "abc123...",
"description": "Analysis content...",
"created_at": "2025-12-10T15:31:00.000Z",
"detect_uuid": "def456...",
"media_type": "audio"
}
]
}

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.