Customizing Brand Templates

2

Get a list of brand templates

Send request to retrieve a list of brand templates.

curl --request GET \
--url https://api.opus.pro/api/brand-templates?q=mine \
--header 'Authorization: <API_KEY>'

Get id of the brand template you want to use.

[
    {
        "templateId": "your-brand-template-id",
        "name": "Karaoke Template",
        ...other properties
    }
]
3

Create project with brand template

Creating project with brand template

For a high level of customization, you can create and manage your brand template.

curl --request POST \
--url https://api.opus.pro/api/clip-projects \
--header 'Authorization Bearer <API_KEY>' \
--header 'Content-Type: application/json' \
--data '{
    "videoUrl": "https://www.youtube.com/watch?v=tEXaoozFRes",
    "brandTemplateId": "your-brand-template-id"
}'

Using Preset Brand Templates

We provide popular templates for your convenience. You can directly use the id of the brand template you want to use.

Preview below preset brand templates, pick the one you like and use the id in your project.

Karaoke

id: preset-fancy-Karaoke

Gameplay

id: preset-fancy-Gameplay

Beasty

id: preset-fancy-Beasty

Deep Diver

id: preset-fancy-Deep_Diver

Youshaei

id: preset-fancy-Youshaei

Pod_P

id: preset-fancy-Pod_P

Mozi

id: preset-fancy-Mozi

Popline

id: preset-fancy-Popline

Simple

id: preset-fancy-Simple

Think Media

id: preset-fancy-Think_Media

Was this page helpful?