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 json?: boolean;
4}
5
6interface IntelligenceResponse {
7 success: boolean;
8 item: {
9 description: string | IntelligenceDetails;
10 created_at: string;
11 };
12}
13
14interface IntelligenceDetails {
15 speaker_info: string;
16 language: string;
17 dialect: string;
18 emotion: string;
19 speaking_style: string;
20 context: string;
21 message: string;
22 abnormalities: string;
23 transcription: string;
24 translation: string | null;
25 misinformation: string;
26}

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