Docs/Snapshots

Snapshots

Capture high-quality frames from a live session and retrieve them later.

Upload a snapshot

POST/agent-view/snapshots

From a custom agent viewer, upload a captured frame using the agent token — the fragment after # in agentViewUrl. The upload is authenticated by the token itself, not a dashboard login.

FieldDescription
codeThe 6–10 character invite code — the path segment of agentViewUrl, before the # fragment.
tokenThe agent-view token — the URL fragment after # in agentViewUrl. Rejected if the link wasn't issued with snapshot capture enabled.
imageThe captured frame as a PNG data URL (data:image/png;base64,…).
curl -X POST https://api.seeitlive.io/v1/agent-view/snapshots \
  -H "Content-Type: application/json" \
  -d '{ "code": "xyz789", "token": "<agent token>", "image": "data:image/png;base64,iVBORw0K..." }'
json
{
  "id": "3f9a2b71-8c4d-4e2a-9b1f-1234567890ab"
}
Rate limited
Limited to 30 requests per minute per IP.
Snapshots