Get Intelligence

GET https://app.resemble.ai/api/v2/intelligences/{uuid}

Retrieve a single intelligence report by its UUID.

Path Parameters

ParameterTypeRequiredDescription
uuidstringYesThe UUID of the intelligence report.

Example Request

$curl 'https://app.resemble.ai/api/v2/intelligences/abc123' \
> -H 'Authorization: Bearer YOUR_API_TOKEN'

Response

1{
2 "success": true,
3 "item": {
4 "uuid": "abc123...",
5 "description": "Analysis content...",
6 "created_at": "2025-12-10T15:31:00.000Z",
7 "detect_uuid": "def456...",
8 "media_type": "audio"
9 }
10}

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.

Error Response (404)

1{
2 "success": false,
3 "item": null,
4 "message": "Not found"
5}