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

๐Ÿ“Create a Data Table from Text

Turn pasted source material into a spreadsheet file.

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.

Last updated