๐Ÿ“Create from Raw Text

Paste prepared talking points or script snippets directly by sending a text resource.

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": "Paragraph one... Paragraph two..." }
    ],
    "text": "Transform this memo into a conversational segment."
  }'

Tips

  • Combine with other resource types for additional context.

  • Keep long text chunks readable; the service trims excessive whitespace automatically.

Try it in code

Last updated