> 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/podcasts/set-style.md).

# Set Podcast Style

Pick a storytelling format such as `deep dive`, `brief`, `critique`, or `debate`. The style adjusts pacing and host banter.

```bash
curl -X POST "https://api.autocontentapi.com/content/Create" \
  -H "Authorization: Bearer YOUR_API_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "outputType": "audio",
    "resources": [
      { "type": "text", "content": "The latest product launch generated strong community feedback..." }
    ],
    "text": "Turn this update into an engaging episode intro.",
    "style": "brief"
  }'
```

**Key fields**

* `style`: Choose from the supported presets (`deep dive`, `brief`, `critique`, `debate`).
* `resources`: Any mix is allowed; this example uses raw text.
* `text`: Guide the output by describing your goals or audience.

## Try it in code

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