Apply Brand Logo with projectId

Use the projects array (supply one or more project IDs) to attach your saved brand assets (e.g., company logo) to explainer video outputs. Add it to the /content/Create payload alongside outputType: "video".

curl -X POST "https://api.autocontentapi.com/content/Create" \
  -H "accept: application/json" \
  -H "Authorization: Bearer YOUR_API_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "outputType": "video",
    "projects": ["YOUR_PROJECT_ID"],
    "resources": [
      { "type": "text", "content": "Explain our new platform launch and highlight customer success data." }
    ],
    "text": "Keep this to 90 seconds with a product intro, key proof points, and a closing CTA.",
    "titlePrompt": "Short, benefit-led launch teaser"
  }'

What projects does

  • Pulls your stored brand package to place the company logo into the video frames and thumbnail.

  • Keeps other content controls intact (language, style, duration, title/description prompts).

Poll /content/Status/{id} as usual to retrieve the finished video and logo-bearing thumbnail.

Try it in code

Last updated