Skip to main content

Brand kits

List the brand kits on your account. A brand kit holds your logo watermark, your intro and outro clips, and your brand colours and fonts. Pass a kit's _id as brandId when you generate a video and every video that request creates comes out branded.

Request​

GEThttps://api.fliki.ai/v1/brands

Headers​

{
"Content-type": "application/json",
"Authorization": "Bearer API_KEY"
}
KeyValueDescription
Content-Typeapplication/jsonSpecifies that the request body format is JSON, allowing the server to parse the data correctly.
AuthorizationBearer YOUR_API_KEYGenerate your API Key in the automation section and replace YOUR_API_KEY with your actual key.

Response​

{
"data": [
{
"_id": String,
"name": String
}
]
}
KeyTypeDescription
_idstringUnique identifier for the brand kit. This is the brandId you pass to generate/video.
namestringName of the brand kit, as shown in the app.

The response lists the kits you own, plus any kit a teammate has shared with your team. Create and edit kits at app.fliki.ai/brand-kits; a kit's ID is also the last part of its URL there. Brand kits are available on Standard plans and above.

Example​

cURL Request
curl \
-H "Authorization: Bearer <API_KEY>" \
-H "Content-Type: application/json" \
-X GET https://api.fliki.ai/v1/brands