๐ŸŽคUse One Custom Voice

Target a single narrator by calling the CustomVoices endpoint with only voice1.

curl -X POST "https://api.autocontentapi.com/content/CreatePodcastCustomVoices" \
  -H "Authorization: Bearer YOUR_API_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "outputType": "audio",
    "voice1": "DonnaNarrative",
    "resources": [
      {
        "type": "text",
        "content": "Highlights from this week''s roadmap, customer wins, and upcoming launches."
      }
    ],
    "text": "Record this as a solo host update with a warm, confident tone."
  }'

Key fields

  • voice1: Required when using CustomVoices; pick any ID from your clones or the Voices catalog.

  • voice2: Omit this field to keep a single-speaker format.

  • endpoint: Use /content/CreatePodcastCustomVoices whenever you provide explicit voices.

Try it in code

Last updated