Skip to content

Videos

Shows how to list videos in your Synthesia workspace.

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 videos created via the API or STUDIO in your workspace.
// Supports pagination with limit and offset parameters.
var response = await client.Videos.GetVideosAsync(
    limit: 10);