> ## Documentation Index
> Fetch the complete documentation index at: https://help.opus.pro/llms.txt
> Use this file to discover all available pages before exploring further.

# Brand Template

## Customizing Brand Templates

<Steps>
  <Step title="Manage brand template on dashboard">
    <Card title="Customizing Brand Templates" icon="gear" href="https://clip.opus.pro/brand-templates">
      For a high level of customization, you can create and manage your brand template.
    </Card>
  </Step>

  <Step title="Get a list of brand templates">
    Send request to retrieve a list of brand templates.

    ```bash theme={"dark"}
    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.

    ```json theme={"dark"}
    [
        {
            "templateId": "your-brand-template-id",
            "name": "Karaoke Template",
            ...other properties
        }
    ]
    ```
  </Step>

  <Step title="Create project with brand template">
    <Card title="Creating project with brand template" icon="gear" href="/api-reference/endpoints/create-project#using-brand-templates">
      For a high level of customization, you can create and manage your brand template.
    </Card>

    ```bash theme={"dark"}
    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"
    }'
    ```
  </Step>
</Steps>

## 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.

<Tip>
  Preview below preset brand templates, pick the one you like and use the `id` in your project.
</Tip>

<CardGroup cols={3}>
  <Card title="Karaoke">
    <video autoPlay muted loop playsInline className="w-full" src="https://public.cdn.opus.pro/clip-web/videos/fancy-template-thumbnails/Karaoke-transcode.mp4" />

    id: <b>preset-fancy-Karaoke</b>
  </Card>

  <Card title="Gameplay">
    <video autoPlay muted loop playsInline className="w-full" src="https://public.cdn.opus.pro/clip-web/videos/fancy-template-thumbnails/Gameplay-transcode.mp4" />

    id: <b>preset-fancy-Gameplay</b>
  </Card>

  <Card title="Beasty">
    <video autoPlay muted loop playsInline className="w-full" src="https://public.cdn.opus.pro/clip-web/videos/fancy-template-thumbnails/Beasty-transcode.mp4" />

    id: <b>preset-fancy-Beasty</b>
  </Card>

  <Card title="Deep Diver">
    <video autoPlay muted loop playsInline className="w-full" src="https://public.cdn.opus.pro/clip-web/videos/fancy-template-thumbnails/Deep-Diver-transcode.mp4" />

    id: <b>preset-fancy-Deep\_Diver</b>
  </Card>

  <Card title="Youshaei">
    <video autoPlay muted loop playsInline className="w-full" src="https://public.cdn.opus.pro/clip-web/videos/fancy-template-thumbnails/Youshaei3-transcode.mp4" />

    id: <b>preset-fancy-Youshaei</b>
  </Card>

  <Card title="Pod_P">
    <video autoPlay muted loop playsInline className="w-full" src="https://public.cdn.opus.pro/clip-web/videos/fancy-template-thumbnails/Pod-P-transcode.mp4" />

    id: <b>preset-fancy-Pod\_P</b>
  </Card>

  <Card title="Mozi">
    <video autoPlay muted loop playsInline className="w-full" src="https://public.cdn.opus.pro/clip-web/videos/fancy-template-thumbnails/Mozi-transcode.mp4" />

    id: <b>preset-fancy-Mozi</b>
  </Card>

  <Card title="Popline">
    <video autoPlay muted loop playsInline className="w-full" src="https://public.cdn.opus.pro/clip-web/videos/fancy-template-thumbnails/Popline-transcode.mp4" />

    id: <b>preset-fancy-Popline</b>
  </Card>

  <Card title="Simple">
    <video autoPlay muted loop playsInline className="w-full" src="https://public.cdn.opus.pro/clip-web/videos/fancy-template-thumbnails/Simple-transcode.mp4" />

    id: <b>preset-fancy-Simple</b>
  </Card>

  <Card title="Think Media">
    <video autoPlay muted loop playsInline className="w-full" src="https://public.cdn.opus.pro/clip-web/videos/fancy-template-thumbnails/Think-Media-transcode.mp4" />

    id: <b>preset-fancy-Think\_Media</b>
  </Card>
</CardGroup>
