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 callback_url?: string;
8}
9
10interface IntelligenceResponse {
11 success: boolean;
12 item: {
13 uuid: string;
14 description: string | IntelligenceDetails;
15 created_at: string;
16 detect_uuid?: string;
17 media_type: "audio" | "video" | "image";
18 };
19}

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

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.