RTMP

The datarhei Core includes a simple RTMP server for publishing and playing streams. Check out the RTMP configuration and the RTMP guide. This API endpoint will list the names of all currently publishing streams.

curl http://127.0.0.1:8080/api/v3/rtmp \
   -H 'accept: application/json' \
   -X GET

List all publishing RTMP streams

get

List all currently publishing RTMP streams.

Authorizations
Responses
200
OK
application/json
get
GET /v3/rtmp HTTP/1.1
Host: api
Authorization: YOUR_API_KEY
Accept: */*
200

OK

[
  {
    "name": "text"
  }
]

Last updated

Was this helpful?