Intelligence

Beta: Contact the Resemble team to gain access.

Analyzes a media file and returns comprehensive intelligence including speaker details, transcription, emotion detection, AI abnormalities, misinformation signals, and anti-cheating indicators.

1interface IntelligenceRequest {
2 url: string;
3 audio_token?: string;
4 json?: boolean;
5 detect_id?: string;
6}
7
8interface IntelligenceResponse {
9 success: boolean;
10 item: {
11 uuid: string;
12 description: string | IntelligenceDetails;
13 created_at: string;
14 detect_uuid?: string;
15 };
16}
17
18interface IntelligenceDetails {
19 speaker_info: string;
20 language: string;
21 dialect: string;
22 emotion: string;
23 speaking_style: string;
24 context: string;
25 message: string;
26 abnormalities: string;
27 transcription: string;
28 translation: string | null;
29 misinformation: string;
30}

Set json=true to receive structured data (IntelligenceDetails) instead of a prose description.