For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Status
OverviewProductsManageAPI ReferenceTutorialsClient Libraries
OverviewProductsManageAPI ReferenceTutorialsClient Libraries
  • Voice Generation
    • Speech-to-Speech
  • Voice Creation
  • Voice Tools
  • Real-Time Agents
    • Overview
  • Safety & Detection
      • Overview
      • Run Intelligence
      • List Intelligences
      • Get Intelligence
Status
LogoLogo
On this page
  • Path Parameters
  • Example Request
  • Response
  • Response Fields
  • Error Response (404)
Safety & DetectionIntelligence

Get Intelligence

Was this page helpful?
Previous

Audio Source Tracing

Next
Built with

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}