Create a Quiz from Text
curl -X POST "https://api.autocontentapi.com/content/Create" \
-H "Authorization: Bearer YOUR_API_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"outputType": "quiz",
"resources": [
{ "type": "text", "content": "Key takeaways from our 2024 SaaS pricing study." }
],
"text": "Create an 8-question multiple-choice quiz with 4 options each.",
"quizDifficulty": "medium"
}'Last updated