Restream · Schema

Channel

A Restream channel representing a connected destination streaming platform account.

BroadcastChatContent DeliveryLive StreamingMultistreamingVideo Streaming

Properties

Name Type Description
id integer Unique channel identifier
streamingPlatformId integer ID of the associated streaming platform (e.g., 1=Twitch, 5=YouTube)
embedUrl string Embedded player URL for the channel
url string Channel URL on the destination platform
identifier string Platform-specific channel identifier (username, channel ID, etc.)
displayName string Human-readable channel display name
active boolean Whether the channel is currently active and will receive the stream
View JSON Schema on GitHub

JSON Schema

restream-channel-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api.restream.io/schemas/channel",
  "title": "Channel",
  "description": "A Restream channel representing a connected destination streaming platform account.",
  "type": "object",
  "properties": {
    "id": {
      "type": "integer",
      "description": "Unique channel identifier"
    },
    "streamingPlatformId": {
      "type": "integer",
      "description": "ID of the associated streaming platform (e.g., 1=Twitch, 5=YouTube)"
    },
    "embedUrl": {
      "type": "string",
      "format": "uri",
      "description": "Embedded player URL for the channel"
    },
    "url": {
      "type": "string",
      "format": "uri",
      "description": "Channel URL on the destination platform"
    },
    "identifier": {
      "type": "string",
      "description": "Platform-specific channel identifier (username, channel ID, etc.)"
    },
    "displayName": {
      "type": "string",
      "description": "Human-readable channel display name"
    },
    "active": {
      "type": "boolean",
      "description": "Whether the channel is currently active and will receive the stream"
    }
  },
  "required": ["id", "streamingPlatformId", "active"],
  "additionalProperties": false
}