Skip to main content
GET
/
rtstream
/
{stream_id}
Get RTStream details
curl --request GET \
  --url https://api.videodb.io/rtstream/{stream_id}/ \
  --header 'x-access-token: <api-key>'
{
  "success": true,
  "data": {
    "id": "rts-12345",
    "name": "My Stream",
    "status": "connected",
    "sample_rate": 30,
    "media_types": [
      "video",
      "audio"
    ],
    "collection_id": "default",
    "store": false,
    "created_at": "2023-11-07T05:31:56Z"
  }
}
Retrieve detailed information about a specific real-time stream, including its configuration and current status.
  • Stream IDs start with rts-
  • Returns full configuration including URL, sample rate, media types, and status

Authorizations

x-access-token
string
header
required

API key for authentication (sk-xxx format)

Path Parameters

stream_id
string
required
Example:

"rts-12345"

Response

RTStream details

success
boolean
Example:

true

data
object