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

๐Ÿ”—Create a Data Table from a Website

Extract structured facts from a public page.

curl -X POST "https://api.autocontentapi.com/content/Create" \
  -H "Authorization: Bearer YOUR_API_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "outputType": "datatable",
    "resources": [
      {
        "type": "website",
        "content": "https://example.com/ai-vendor-landscape"
      }
    ],
    "text": "Build a vendor comparison table with columns for vendor, category, target customer, notable feature, pricing signal, and source note."
  }'

Tips

  • Use one focused page or report URL when possible.

  • If the page is long, describe the exact entities or metrics to extract in text.

Last updated