E-Meeting Deepfake Detection
Detects deepfakes in online meeting recordings using AI-ForensiX multi-modal analysis engine.
The E-Meeting Deepfake Detection API analyzes meeting recordings to detect deepfake manipulation such as face swaps, reenactment, lip-sync tampering, and synthetic AI-generated participants.
It operates on recorded meeting video URLs and produces deepfake labels, confidence scores, and optional heatmap visualizations.
Endpoint
POST /v1/meeting/detectRequest Body
| Field | Type | Required | Description |
|---|---|---|---|
modality | string | Yes | Must be "video". |
label | string | Yes | Deepfake classification: "FAKE" or "REAL". |
score | number | Yes | Confidence probability score. |
heatmap_url | string | No | URL for deepfake heatmap visualization. |
file_url | string | Yes | URL of the meeting video to analyze. |
file_name | string | No | Name of the meeting recording. |
Example Request (cURL)
curl -X POST "https://forensix.com/detect" \
-H "Content-Type: application/json" \
-H "x-api-key: YOUR_API_KEY" \
-d '{
"modality": "video",
"label": "FAKE",
"score": 0.92,
"heatmap_url": "https://example.com/heatmap.png",
"file_url": "https://example.com/meeting.mp4",
"file_name": "team_meeting.mp4"
}'Response Status Codes
| Status Code | Meaning |
|---|---|
| 200 OK | Meeting video analyzed successfully. |
| 400 Bad Request | Missing or invalid parameters. |
| 401 Unauthorized | Missing or invalid API key. |
| 403 Forbidden | Access not permitted. |
| 404 Not Found | Video file or endpoint not found. |
| 500 Internal Server Error | Unexpected server-side error. |