Skip to main content
GET
/
capture
/
session
/
{streaming_session_id}
Get capture session with RTSP URLs
curl --request GET \
  --url https://api.videodb.io/capture/session/{streaming_session_id} \
  --header 'x-access-token: <api-key>'
{
  "success": true,
  "data": {
    "session_id": "capture-12345",
    "status": "active",
    "channels": [
      {
        "channel_id": "<string>",
        "rtsp_url": "<string>"
      }
    ]
  }
}
Retrieve details of an active streaming session, including RTSP URLs for each channel.
  • RTSP URLs are available once the session is in active status
  • Each channel has its own RTSP URL for independent streaming

Authorizations

x-access-token
string
header
required

API key for authentication (sk-xxx format)

Path Parameters

streaming_session_id
string
required
Example:

"capture-12345"

Response

Session details with RTSP URLs

success
boolean
Example:

true

data
object