List restream destinations

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
TimeStatusUser Agent
Retrieving recent requests…
LoadingLoading…

GET /lives/{live_id}/rtmp_endpoint

Returns 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).

📘

Authorization

Requires a valid Panda API token sent in the Authorization header (no Bearer prefix).

HTTP Method & Path

GET /lives/{live_id}/rtmp_endpoint

Base URL: https://api-v2.pandavideo.com.br

Authentication Requirements

Security SchemeHeaderNote
API KeyAuthorizationPanda API token (without Bearer prefix)

Parameters

NameInTypeRequiredDescription
AuthorizationheaderstringYesPanda API token (without Bearer prefix)

Path Parameters

FieldTypeRequiredDescriptionConstraints
live_idstring (uuid)YesID 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)

FieldTypeDescription
rtmp_idstring (uuid)ID of the restream binding. Use this with DELETE to remove a specific destination.
rtmp_urlstringDestination 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 RestreamPOST to attach a new destination.
  • Delete Restream DestinationDELETE /lives/{live_id}/rtmp_endpoint?rtmp_id=... (see the related page in this category).
Path Params
uuid
required

ID of the live stream.

Response

Language
Credentials
Header
LoadingLoading…
Response
Click Try It! to start a request and see the response here! Or choose an example:
application/json