LogoAI ForensiX

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/detect

Request Body

FieldTypeRequiredDescription
modalitystringYesMust be "video".
labelstringYesDeepfake classification: "FAKE" or "REAL".
scorenumberYesConfidence probability score.
heatmap_urlstringNoURL for deepfake heatmap visualization.
file_urlstringYesURL of the meeting video to analyze.
file_namestringNoName 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 CodeMeaning
200 OKMeeting video analyzed successfully.
400 Bad RequestMissing or invalid parameters.
401 UnauthorizedMissing or invalid API key.
403 ForbiddenAccess not permitted.
404 Not FoundVideo file or endpoint not found.
500 Internal Server ErrorUnexpected server-side error.

On this page