Skip to content

Templates

Shows how to list available video templates 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 available video templates in your Synthesia STUDIO workspace.
// Templates define reusable video layouts with customizable variables.
var response = await client.Templates.GetTemplatesAsync(
    limit: 10);