Webhooks allow you to receive real-time notifications when video renders are completed or failed. Instead of polling our API, webhooks will send HTTP requests to your server when these events occur..
The following webhook events are available:
render.completed
: Triggered when a video render completes successfullyrender.failed
: Triggered when a video render failsFirst, create an endpoint on your server to receive webhook events. The endpoint should be publicly accessible.
Register the webhook using the dashboard. Go to dashboard in the webhook panel and add your webhook endpoint.
When an event occurs, you’ll receive a POST request with the following payload structure:
To ensure the webhook request came from us, we include a signature in the X-Signature
header. Here’s how to verify it:
Webhooks allow you to receive real-time notifications when video renders are completed or failed. Instead of polling our API, webhooks will send HTTP requests to your server when these events occur..
The following webhook events are available:
render.completed
: Triggered when a video render completes successfullyrender.failed
: Triggered when a video render failsFirst, create an endpoint on your server to receive webhook events. The endpoint should be publicly accessible.
Register the webhook using the dashboard. Go to dashboard in the webhook panel and add your webhook endpoint.
When an event occurs, you’ll receive a POST request with the following payload structure:
To ensure the webhook request came from us, we include a signature in the X-Signature
header. Here’s how to verify it: