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

๐Ÿ’กCreate a Data Table from a Topic Prompt

Use topic when you want AutoContent to research and structure a table around a subject.

curl -X POST "https://api.autocontentapi.com/content/Create" \
  -H "Authorization: Bearer YOUR_API_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "outputType": "datatable",
    "topic": "European AI infrastructure startups",
    "text": "Create a comparison table with startup, headquarters, product category, buyer persona, funding stage, and one notable risk."
  }'

Tips

  • Keep topic under 500 characters.

  • Use text to define columns, sort order, and what counts as a relevant row.

Last updated