Manage brand template on dashboard
Get a list of brand templates
curl --request GET \ --url https://api.opus.pro/api/brand-templates?q=mine \ --header 'Authorization: <API_KEY>'
[ { "templateId": "your-brand-template-id", "name": "Karaoke Template", ...other properties } ]
Create project with 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" }'
id
Was this page helpful?