Modes
| Mode | Description | Use Case |
|---|---|---|
self_record | User records a short video following on-screen prompts | High-volume, async review |
live_agent | User joins a real-time video call with a trained agent | High-risk, regulated markets |
Creating a Session with Video KYC
Include avideo step in the verification profile when creating a session:
Video Mode Options
| Field | Type | Default | Description |
|---|---|---|---|
video_mode | string | self_record | self_record or live_agent |
video_max_duration | integer | 60 | Maximum recording length in seconds (self-record only) |
video_language | string | en | Prompt language for self-record (en, es, fr, de, pt) |
Retrieving Video Results
Response Fields
| Field | Type | Description |
|---|---|---|
session_id | string | The parent session ID |
video_mode | string | self_record or live_agent |
status | string | pending, in_progress, completed, expired |
result | string | approved, declined, needs_review |
video_url | string | Signed URL to download the recorded video (expires after 1 hour) |
duration_seconds | integer | Length of the video in seconds |
face_match_score | number | Similarity score comparing video face to selfie/document (0-100) |
liveness_score | number | Confidence that the video is from a live person (0-100) |
transcript | string | Extracted speech transcript (self-record only) |
agent_id | string | ID of the reviewing agent (live agent only) |
agent_notes | string | Notes left by the agent (live agent only) |
Webhook Events
| Event | Trigger |
|---|---|
video.completed | Video recording or call finished and is ready for review |
video.reviewed | Video has been reviewed and a decision was made |
video.completed
Self-Record Flow
Session created
Create a session with
video in the steps array. The user is guided through document and selfie capture first.Video recording
The user is shown on-screen prompts (e.g., “State your full name and today’s date”) and records a short video.
Processing
Verilock extracts the face from the video, runs liveness detection, and compares it to the selfie and document photo.
Live Agent Flow
Session created
Create a session with
video_mode: "live_agent". The user completes document and selfie steps first.Verification call
The agent verifies the user’s identity by asking questions, requesting document display, and confirming liveness.
Live agent mode requires the Enterprise plan. Agent availability is subject to your configured agent pool in Dashboard > Video KYC > Agents.

