Easily Integrate Quizzes into
Your Organization
The easiest way to generate quizzes, evaluate students, and manage grades using AI in your application.
- Upload your own files to generate & grade quizzes
- Generate quizzes with custom instructions
- Grade quizzes & get relevant written feedback automatically
All-In-One Quiz API
Generate a Quiz Using AI
Send custom instructions in a request to the API – get a usable & personalized quiz back in seconds.
Upload Files
Upload PDF, JPG, PNG files to generate & grade your quizzes!
(Video inputs coming soon!)
Automatic Grading + Written Feedback for Students
Students get tailored written feedback based on their answer inputs, designed to guide them to success.
Fetch Quiz Data & Grades
Simple Javascript API to fetch quiz data & student grades/feedback.
Simple developer experience
Generate quiz
fetch('https://api.arlinear.com/functions/v1/generate-quiz', {
method: 'POST',
headers: {
'Authorization': '<Your API Key>',
},
body: JSON.stringify({
'subject': 'Math',
'instructions': 'A quiz on basic algebra',
'gradeLevel': 'grade 6',
'difficulty': 'Medium',
'numQuestions': 10
})
})
Display quiz
<ArlinearQuiz
quizKey="ba777045-7033-4701-b17b-da9e90dcd41e"
primaryKey="student@email.com"
/>
Fetch grades
fetch('https://api.arlinear.com/functions/v1/get-grades', {
method: 'POST',
headers: {
'Authorization': '<Your API Key>'
},
body: {
'quizKey' : 'ba777045-7033-4701-b17b-da9e90dcd41e',
'primaryKey': 'student@email.com'
}
});