> For the complete documentation index, see [llms.txt](https://docs.autocontentapi.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.autocontentapi.com/quick-start/data-tables/from-website.md).

# Create a Data Table from a Website

Extract structured facts from a public page.

```bash
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`.
