Create from a PDF Upload
curl -X POST "https://api.autocontentapi.com/content/Create" \
-H "accept: application/json" \
-H "Authorization: Bearer YOUR_API_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"outputType": "video",
"resources": [
{ "type": "pdf", "content": "BASE64_ENCODED_PDF" }
],
"text": "Summarize the executive summary and cite supporting stats."
}'Try it in code
Last updated