ResourcesLive Streams
Live Streams API
Create and manage live streams for your application. Streams support RTMP ingest and HLS/DASH playback with ultra-low latency options.
Endpoints
GET
/v1/streamsList all live streams
Parameters
| Parameter | Type | Description |
|---|---|---|
limit | integer | Maximum number of streams to return (1-100) |
status | string | Filter by status: active, idle, or disabled |
starting_after | string | Cursor for pagination |
Example Request
curl https://api.kite.dev/v1/streams \
-H "Authorization: Bearer sk_live_..." \
-H "Content-Type: application/json"Request
terminalcurl
curl https://api.kite.dev/v1/streams \
-H "Authorization: Bearer sk_live_..." \
-H "Content-Type: application/json"Response
response.jsonjson
{
"object": "list",
"data": [
{
"id": "str_a1b2c3d4",
"object": "stream",
"status": "active",
"playback_id": "play_x1y2z3",
"created_at": "2025-12-30T10:00:00Z",
"latency_mode": "low",
"reconnect_window": 60,
"max_continuous_duration": 43200
}
],
"has_more": false
}