๐Create a Data Table from Text
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."
}'Last updated