For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Status
OverviewProductsManageAPI ReferenceTutorialsClient Libraries
OverviewProductsManageAPI ReferenceTutorialsClient Libraries
  • Voice Generation
    • Speech-to-Speech
  • Voice Creation
  • Voice Tools
  • Real-Time Agents
    • Overview
  • Safety & Detection
      • Overview
      • Run Intelligence
      • List Intelligences
      • Get Intelligence
Status
LogoLogo
On this page
  • Related Endpoints
Safety & DetectionIntelligence

Intelligence

Was this page helpful?
Previous

Run Intelligence

Next
Built with

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.

Related Endpoints

  • Run Intelligence - Create a new intelligence analysis
  • List Intelligences - Get all intelligence reports with pagination
  • Get Intelligence - Retrieve a single intelligence report by UUID