get
https://api-v2.pandavideo.com.br/lives//rtmp_endpoint
Lists the restream RTMP/RTMPS destinations attached to a live stream. Each item has rtmp_id (used to remove via DELETE) and rtmp_url.
Recent Requests
Log in to see full request history
| Time | Status | User Agent | |
|---|---|---|---|
Retrieving recent requests… | |||
Loading…
GET /lives/{live_id}/rtmp_endpoint
{live_id}/rtmp_endpointReturns the list of restream destinations currently attached to a live stream. Each entry contains the rtmp_id (used to remove the destination) and the rtmp_url (the destination RTMP/RTMPS URL).
AuthorizationRequires a valid Panda API token sent in the
Authorizationheader (no Bearer prefix).
HTTP Method & Path
GET /lives/{live_id}/rtmp_endpoint
Base URL: https://api-v2.pandavideo.com.br
Authentication Requirements
| Security Scheme | Header | Note |
|---|---|---|
| API Key | Authorization | Panda API token (without Bearer prefix) |
Parameters
| Name | In | Type | Required | Description |
|---|---|---|---|---|
Authorization | header | string | Yes | Panda API token (without Bearer prefix) |
Path Parameters
| Field | Type | Required | Description | Constraints |
|---|---|---|---|---|
live_id | string (uuid) | Yes | ID of the live stream whose restream destinations you want to list. | uuid |
Response
Success Response (200)
Returns an array of restream destinations:
[
{
"rtmp_id": "aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee",
"rtmp_url": "rtmps://a.rtmp.youtube.com/live2/your-stream-key"
},
{
"rtmp_id": "bbbbbbbb-cccc-dddd-eeee-ffffffffffff",
"rtmp_url": "rtmps://live.twitch.tv/app/your-twitch-key"
}
]If the live has no restream destinations attached, returns an empty array [].
Response Schema (item)
| Field | Type | Description |
|---|---|---|
rtmp_id | string (uuid) | ID of the restream binding. Use this with DELETE to remove a specific destination. |
rtmp_url | string | Destination RTMP/RTMPS URL. |
Error Responses
- 401 Unauthorized — Missing or invalid API token.
- 404 Not Found — Live not found for the given
live_id. - 500 Internal Server Error — Server-side error.
Example Usage
cURL
curl -X GET \
'https://api-v2.pandavideo.com.br/lives/<live_id>/rtmp_endpoint' \
-H 'Authorization: your_api_token_here' \
-H 'Accept: application/json'Related
- Live Restream —
POSTto attach a new destination. - Delete Restream Destination —
DELETE /lives/{live_id}/rtmp_endpoint?rtmp_id=...(see the related page in this category).
