> 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-text.md).

# Create a Data Table from Text

Turn pasted source material into a spreadsheet file.

```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": "text",
        "content": "Company A raised $12M in Series A funding in Spain. Company B raised $35M in Series B funding in France. Company C bootstrapped in Germany and focuses on supply-chain AI."
      }
    ],
    "text": "Create columns for company, country, funding stage, funding amount, and positioning notes."
  }'
```

**Tips**

* Put raw facts in `resources`.
* Put column instructions and normalization rules in `text`.
* Poll `/content/Status/{id}` and download with `/data-tables/{id}/download`.
