List Live Sessions
Retrieve a paginated list of all live translation sessions.
GET
/v2/live/sessionsQuery Parameters
Query Parameters
| Name | Type | Required | Description |
|---|---|---|---|
| cursor | string | optional | Pagination cursor returned from a previous request. Use to fetch the next page of results. |
Response
Returns 200 OK with an array of sessions and an optional pagination cursor.
sessionsarray
Array of live session objects. Each entry has the same shape as the Get Live Session response, including pictureInPicture and the manifests object.
cursorstring
Pagination cursor. Pass as a query parameter to fetch the next page. Absent when there are no more results.
Request
curl -X GET "https://ai.api.production.signapsesolutions.com/v2/live/sessions" \
-H "X-API-KEY: YOUR_API_KEY"Response
{
"sessions": [
{
"sessionId": "ls_abc123def456",
"status": "active",
"sourceType": "RTMP_PUSH",
"outputType": "HLS",
"pictureInPicture": true,
"manifests": {
"hls": "https://output.signapsesolutions.com/live/ls_abc123def456/index.m3u8",
"dash": "https://output.signapsesolutions.com/live/ls_abc123def456/manifest.mpd",
"pip": "https://output.signapsesolutions.com/live/ls_abc123def456/pip/index.m3u8"
},
"startedAt": "2026-03-11T10:00:15Z"
},
{
"sessionId": "ls_xyz789ghi012",
"status": "ended",
"sourceType": "HLS_PULL",
"outputType": "RTMP",
"startedAt": "2026-03-10T14:30:10Z",
"stoppedAt": "2026-03-10T16:45:00Z"
}
],
"cursor": "eyJsYXN0SWQiOiJsc194eXo3ODlnaGkwMTIifQ=="
}Last updated on