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.

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

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.