/generate-quiz
Create a new quiz with custom settings and receive a unique quiz ID + quiz data.
Parameter
Type
Default
Description
// Example to generate a quiz
fetch('https://api.arlinear.com/functions/v1/generate-quiz', {
method: 'POST',
headers: {
'Authorization': '<Your API Key>',
},
body: JSON.stringify({
'numQuizzes': 2,
'subject': 'Math',
'instructions': 'A quiz on basic algebra',
'gradeLevel': 'grade 6',
'difficulty': 'Medium',
'numQuestions': 20
})
})Last updated