MakeAIVideo

API reference

Brand kit API

3 operations · https://app.makeaivideo.ai/api/v1

What the brand kit endpoints are for

Your own watermark, applied to your own videos. This is a branding control you switch on, not a platform mark imposed on output.

The settings live at workspace level rather than per video, so a change here applies to what you render afterwards. Upload a mark with POST /brand-kit/watermark, then toggle or remove it with PATCH /brand-kit. Agencies rendering for several clients usually script the swap rather than doing it by hand.

Turn your watermark on
curl -X PATCH https://app.makeaivideo.ai/api/v1/brand-kit \
  -H "Authorization: Bearer $MAV_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{ "show_watermark": true }'
GET/brand-kitread

Watermark settings

GET https://app.makeaivideo.ai/api/v1/brand-kit

Responses

  • 200Brand kit
PATCH/brand-kitwrite

Toggle or remove the watermark

PATCH https://app.makeaivideo.ai/api/v1/brand-kit

Responses

  • 200Brand kit
POST/brand-kit/watermarkwrite

Upload a watermark image (multipart, field `file`)

POST https://app.makeaivideo.ai/api/v1/brand-kit/watermark

Responses

  • 201Uploaded

Brand kit API questions

Does MakeAIVideo watermark my videos?
No. The only watermark is one you upload and enable yourself through the brand kit; it is off unless you turn it on.
Can I change the watermark between renders?
Yes. The watermark is a workspace setting, so PATCH /brand-kit before a render applies the change to what you produce next, which is how agencies script per-client branding.

Related

  • Quickstart — the create, poll and download loop end to end.
  • Authentication — what the read, write scope on this page mean.
  • Agents — calling these endpoints from an autonomous agent.