Skip to main content
A preset is a reusable render configuration — background, subtitle style, layout, and other visual settings — that you can apply to any project or export. Presets are ideal when you have a consistent look across many tracks. See Render settings reference for the full preset shape and every enum-backed option.

preset schema

Return the JSON Schema for preset settings. Use this to discover valid fields before creating or updating a preset.
Agents should call preset schema before mutating presets so they know the exact field names and value types.

preset list

List all presets owned by the authenticated account.

preset show

Fetch a single preset by ID.

preset create

Create a new preset.

Options

The request body should contain the full preset object. For large payloads, prefer --body instead of inline JSON.

Examples

CLI flags override matching fields from --body.

preset update

Update an existing preset.
Example:

preset delete

Delete a preset by ID.
Deleting a preset does not delete projects or exports that were previously rendered with it. Future exports that reference the deleted preset will fail.

preset default

Get or set the default preset.
With no argument, the command returns the current default preset or null. With a preset ID, it marks that preset as the default.

Applying a preset

Apply a preset to a project or export with --preset:

What’s next