Skip to main content
POST
/
webhooks
/
transcoder
curl --request POST \
  --url https://api.tenbyte.io/v1/livestream/webhooks/transcoder \
  --header 'Content-Type: application/json' \
  --header 'X-Webhook-Secret: <api-key>' \
  --data '
{
  "event": "stream.status.live",
  "stream_id": "0000cf2e-ae90-46bc-b119-f5f626258434",
  "status": "live",
  "timestamp": "2026-04-16T12:00:00Z"
}
'
{
  "received": true
}

Authorizations

X-Webhook-Secret
string
header
required

Shared secret for transcoder webhook callbacks

Body

application/json
event
string
required

Event type, e.g. stream.status.live

Example:

"stream.status.starting"

stream_id
string<uuid>
required
status
enum<string>
required
Available options:
idle,
starting,
live,
reconnecting,
stopping,
errored
timestamp
string<date-time>
required
previous_status
enum<string>
Available options:
idle,
starting,
live,
reconnecting,
stopping,
errored
session_id
string<uuid> | null
details
object

Freeform context about the transition

Response

Webhook received

received
boolean
Example:

true