> For clean Markdown of any page, append .md to the page URL.
> For a complete documentation index, see https://docs.resemble.ai/llms.txt.
> For AI client integration (Claude Code, Cursor, etc.), connect to the MCP server at https://docs.resemble.ai/_mcp/server.

# Intelligence

Analyzes media files (audio, video, or image) and returns comprehensive intelligence including speaker details, transcription, emotion detection, authenticity analysis, AI abnormalities, misinformation signals, fraud detection, liveness detection, and digital alteration detection.

```ts
interface IntelligenceRequest {
  media_token?: string;
  url?: string;
  detect_id?: string;
  media_type?: "audio" | "video" | "image";
  callback_url?: string;
}

interface IntelligenceResponse {
  success: boolean;
  item: {
    uuid: string;
    description: IntelligenceDetails;
    created_at: string;
    detect_uuid?: string;
    media_type: "audio" | "video" | "image";
  };
}
```

The response always returns structured JSON data in the `description` field.

Provide `callback_url` to switch the endpoint into async mode. In that case the create request returns `202 Accepted` immediately and the final intelligence payload is delivered to your callback URL via HTTP `POST`.

## Related Endpoints

* [Run Intelligence](/detect/intelligence/create) - Create a new intelligence analysis
* [List Intelligences](/detect/intelligence/list) - Get all intelligence reports with pagination
* [Get Intelligence](/detect/intelligence/get) - Retrieve a single intelligence report by UUID