Set Explainer Video Style
Pick a visual storytelling preset such as classic, whiteboard, watercolor, retro, heritage, paper-craft, or anime. Styles influence camera moves, transitions, and color palettes. Use format separately when you want to switch between explainer, short, and cinematic.
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",
"resources": [
{ "type": "text", "content": "The latest product launch generated strong community feedback..." }
],
"format": "explainer",
"text": "Turn this update into an engaging explainer intro.",
"style": "whiteboard"
}'Key fields
style: Choose from the supported presets (classic,whiteboard,watercolor,retro,heritage,paper-craft,anime).format: Optional output format (explainer,short, orcinematic).explaineris the default.resources: Any mix is allowed; this example uses raw text.text: Guide the output by describing your goals or audience.
Tips
Pick
animeorpaper-craftfor stylized campaigns; stick withclassicwhen you need broad appeal.Use
shortwhen you want a tighter delivery, andcinematicwhen you want a premium treatment. Keepstylefocused on art direction.
Try it in code
Last updated