> For the complete documentation index, see [llms.txt](https://docs.autocontentapi.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.autocontentapi.com/quick-start/explainer-videos/set-style.md).

# 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`.

```bash
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`, or `cinematic`). `explainer` is the default.
* `resources`: Any mix is allowed; this example uses raw text.
* `text`: Guide the output by describing your goals or audience.

**Tips**

* Pick `anime` or `paper-craft` for stylized campaigns; stick with `classic` when you need broad appeal.
* Use `short` when you want a tighter delivery, and `cinematic` when you want a premium treatment. Keep `style` focused on art direction.

## Try it in code

* [C#](/code-samples/explainer-videos/csharp/set-style.md)
* [Node.js](/code-samples/explainer-videos/nodejs/set-style.md)
* [Java](/code-samples/explainer-videos/java/set-style.md)
* [PHP](/code-samples/explainer-videos/php/set-style.md)
* [Python](/code-samples/explainer-videos/python/set-style.md)
