๐Ÿ“œCreate from a Custom Script

Use the dedicated endpoint when you already have a full script marked with speaker labels (SPEAKER_00, SPEAKER_01, ...).

curl -X POST "https://api.autocontentapi.com/content/CreatePodcastCustomScript" \
  -H "Authorization: Bearer YOUR_API_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "outputType": "audio",
    "script": "SPEAKER_00: Welcome back!\nSPEAKER_01: Today we dig into productivity hacks..."
  }'

Tips

  • The service keeps your dialogue intact and focuses on delivery.

  • Provide two or more voices if you want distinct hosts, or let defaults handle it.

Try it in code

Last updated