Upload a document, get exam-ready questions in seconds. Multichoice, true/false, short answer, fill-in-the-blanks, matching — 15 question types out of the box.
Send a PDF, DOCX, PPTX, or TXT file. The AI engine reads it, identifies the key concepts, and produces structured exam questions with answers and explanations. Use it inside your LMS, Moodle plugin, or any internal tool.
/api/v1/generate with a Bearer token.curl -X POST https://aiquestions.intrazero.com/api/v1/generate \
-H "Authorization: Bearer $API_KEY" \
-F "file=@chapter5.pdf" \
-F "num_questions=10" \
-F "question_type=multichoice" \
-F "difficulty=mixed"
Response: JSON with questions[], meta.remaining_quota, and request_id.
{
"success": true,
"request_id": 1234,
"questions": [
{
"name": "Cell Membrane",
"stem": "Which structure controls what enters a cell?",
"choices": ["Nucleus", "Cell membrane", "Cytoplasm", "Mitochondria"],
"answer": "Cell membrane",
"explanation": "The cell membrane is selectively permeable..."
}
],
"meta": { "generated": 10, "remaining_quota": 487, "processing_time_ms": 8421 }
}
Complete reference: authentication, all endpoints, error codes, best practices.
Contact us to get started →