NotebookLM Quiz Validator
Paste your NotebookLM JSON output to validate it, preview your quiz, then import it into 9PM Quiz. Free, no sign-in required.
1
Copy the export prompt into NotebookLM
First, add your sources (PDFs, docs, websites) to NotebookLM. Then copy this prompt and paste it.
NotebookLM prompt
Generate a quiz with the following parameters:
- Topic: [YOUR TOPIC]
- Target audience: General public
- Difficulty level: medium
- Number of questions: 10
- Question type: multiple choice
Output as JSON with this exact structure:
{
"title": "Quiz title based on the topic",
"questions": [
{
"type": "single_choice",
"question": "What is the capital of France?",
"options": ["London", "Paris", "Berlin", "Madrid"],
"correct": "Paris",
"explanation": "Paris has been the capital of France since the 10th century."
}
]
}
Rules:
- Each question must have "type": "single_choice"
- Each question must have exactly 4 options
- "correct" must match exactly one of the options
- Include a brief explanation for each answer
- Output ONLY the JSON object, no other textWant more options? Use the full prompt generator on the NotebookLM Export page.
2