Asset events
Set up a webhook endpoint, then in Developers → Webhooks create a webhook with your URL and select the asset events you need. See Webhooks for signature verification and payload format.
Stream events
Create a webhook and select the stream/recording/multistream events. Your endpoint receives the event type and the related object (stream, session, etc.) in the payload.
Setup steps
- Implement a POST endpoint that returns 2XX and verifies the
Livepeer-Signatureheader. - In Studio, add the webhook URL and choose events.
- Handle the
eventandevent_objectin your code (e.g. Update DB, notify user, retry on failure).