Create a Quiz from a Topic Prompt
Let the service research a topic and build quiz questions automatically. Provide a topic and optional text for extra guidance.
curl -X POST "https://api.autocontentapi.com/content/Create" \
-H "Authorization: Bearer YOUR_API_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"outputType": "quiz",
"topic": "Trends in renewable energy storage",
"text": "Write 10 questions aimed at college-level students.",
"quizDifficulty": "medium"
}'Tips
Add
textto define audience and tone.Use
quizDifficultyto adjust how challenging the questions are.
Try it in code
Last updated