Base URL
https://api.videowise.com
All analytics endpoints require authentication. Rate limit: 100 requests per minute.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Retrieve live shopping performance for a show by live stream ID.
https://api.videowise.com
All analytics endpoints require authentication. Rate limit: 100 requests per minute.
/external/analytics/v1/live-streams/:lsId| Key | Type | Required | Description |
|---|---|---|---|
X-Videowise-Access-Token | String | Yes | Store license key. Same token as Product and Media. |
| Key | Type | Required | Description |
|---|---|---|---|
lsId | String | Yes | Live stream ID. |
curl -X GET "https://api.videowise.com/external/analytics/v1/live-streams/<lsId>" \
-H "X-Videowise-Access-Token: <your_access_token>"
{
"id": "507f1f77bcf86cd799439011",
"name": "Fall show",
"startedAt": "2026-09-21T12:00:00.000Z",
"endedAt": "2026-09-21T13:05:00.000Z",
"durationSeconds": 3900,
"host": {
"name": "Jane Host",
"email": "jane@example.com"
},
"kpis": {
"sales": { "live": 10, "replay": 5, "total": 17 },
"orders": { "live": 3, "replay": 1, "total": 6 },
"viewers": { "live": 100, "replay": 40, "total": 140 },
"addToCart": { "live": 12, "replay": 8, "avg": 10 },
"avgViewTime": { "live": 60, "replay": 30, "avg": 45 },
"devices": [
{ "device": "mobile", "value": 70 },
{ "device": "desktop", "value": 25 },
{ "device": "unknown", "value": 5 }
]
}
}
| Field | Description |
|---|---|
startedAt | Show start time. |
endedAt | Start plus duration for ended/archived shows. null while the show is live. |
host | Host name and email when a host owner is set. Otherwise null. |
kpis.sales / kpis.orders | Live, replay, and total (live + replay + referral channels). |
kpis.viewers | Distinct viewers, live + replay. |
kpis.addToCart | Add-to-cart rate (%). |
kpis.avgViewTime | Average view time in seconds. |
kpis.devices | Device share (%). |
| Status | Description |
|---|---|
200 | Analytics for the show. |
401 | Missing or invalid access token. |
404 | Live stream not found, or it does not belong to this store. |