Developer hub
Start a live camera session from your own app or helpdesk and watch the customer's camera in the browser — no app install. Everything the dashboard does is available over a simple REST API.
Base URL
http
https://api.seeitlive.io/v1Explore
Authentication
Use a team API key as a bearer token.
Sessions
Create a session and get a short link to send your customer.
Snapshots
Capture and retrieve high-quality frames.
Live streaming
How the phone camera streams to the agent viewer.
Quick start
Create a session with one request; SeeItLive returns a link to send your customer and an embeddable agent-viewer URL.
curl -X POST https://api.seeitlive.io/v1/sessions \
-H "Authorization: Bearer sil_test_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" \
-H "Content-Type: application/json" \
-d '{ "channel": "sms", "recipientPhone": "+15555550123" }'json
{
"id": "f74f1305-84b9-43fb-886b-2bf8a6a363e4",
"status": "pending",
"inviteCode": "abc123",
"inviteUrl": "https://seeitlive.io/u/abc123#<token>",
"agentViewUrl": "https://seeitlive.io/a/xyz789#<token>",
"expiresAt": "2026-06-26T18:30:00.000Z"
}New here? Follow the Getting started walkthrough.