๐ŸŽ™๏ธSet Podcast Style

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

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

Last updated