Skip to content

Webhooks

Shows how to list webhooks configured in your Synthesia account.

This example assumes using Synthesia; is in scope and apiKey contains your Synthesia API key.

1
2
3
4
5
6
using var client = new SynthesiaClient(apiKey);

// List all currently configured webhooks in your Synthesia account.
// Webhooks notify your application when video generation events occur.
var response = await client.Webhooks.GetWebhooksAsync(
    limit: 10);