# 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`, `brief`, 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`, `brief`, 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 `brief` 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)


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.autocontentapi.com/quick-start/explainer-videos/set-style.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
