Restream · Example Payload

Restream Get Stream Key Example

BroadcastChatContent DeliveryLive StreamingMultistreamingVideo Streaming

Restream Get Stream Key Example is an example object payload from Restream, with 4 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

operationIdsummaryrequestresponse

Example Payload

Raw ↑
{
  "operationId": "getStreamKey",
  "summary": "Get Stream Key",
  "request": {
    "method": "GET",
    "url": "https://api.restream.io/v2/user/streamKey",
    "headers": {
      "Authorization": "Bearer {access_token}"
    }
  },
  "response": {
    "status": 200,
    "headers": {
      "Content-Type": "application/json"
    },
    "body": {
      "streamKey": "re_abc123_def456xyz",
      "srtUrl": "srt://live.restream.io:5000?streamid=re_abc123_def456xyz"
    }
  }
}