Intelligence

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

1interface IntelligenceRequest {
2 media_token?: string;
3 url?: string;
4 detect_id?: string;
5 media_type?: "audio" | "video" | "image";
6 json?: boolean;
7}
8
9interface IntelligenceResponse {
10 success: boolean;
11 item: {
12 uuid: string;
13 description: string | IntelligenceDetails;
14 created_at: string;
15 detect_uuid?: string;
16 media_type: "audio" | "video" | "image";
17 };
18}

Set json=true to receive structured data instead of a prose description. For images, json defaults to true.