For the complete documentation index, see llms.txt. This page is also available as Markdown.

Set Podcast Language

Target your audience with the right narration language. Provide the language field when you are not supplying custom voices.

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": "website", "content": "https://example.com/ai-trends" }
    ],
    "text": "Highlight the three most actionable takeaways.",
    "language": "English"
  }'

Key fields

  • language: Human-readable name from the supported languages list.

  • resources: Refer to any mix of source materials to ground the script.

  • text: Give context or instructions to shape the episode.

Try it in code

Last updated