Get Audio Intelligence

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

Retrieve a single audio intelligence report by its UUID.

Path Parameters

ParameterTypeRequiredDescription
uuidstringThe UUID of the audio intelligence report.

Example Request

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

Response

1{
2 "success": true,
3 "item": {
4 "uuid": "int456def...",
5 "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## Misinformation Analysis\nNo false claims detected.\n\n## Anti-Cheating Analysis\nNo signs of AI assistance detected.",
6 "created_at": "2025-12-10T15:31:00.000Z",
7 "detect_uuid": "a1b2c3d4e5f6..."
8 }
9}

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.

Error Response (404)

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

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