PDF Quiz
Generate a practice quiz from any PDF to test yourself.
Drag and drop, or paste a link
PDF, Word, PowerPoint or text — drop, browse, or paste a link
🔒 Your files are processed privately and deleted automatically. How we handle your data
The fastest way to know if you've actually learned something is to be quizzed on it. PDF.chat generates a practice quiz from any document — multiple-choice or short-answer — with the correct answers and the page each came from.
Miss a question? Ask the document why, and get a grounded explanation you can trust.
How to pdf quiz
Common uses
- Make a practice exam from your course material
- Quiz yourself on a compliance or training document
- Check your understanding of a research paper
- Build review questions for a study group
Frequently asked questions
Use this via the API
Run this tool programmatically with a single POST. Authenticate with the API token from your account page.
curl -X POST https://pdf.chat/api/v1/ocr/ \
-H "Authorization: Bearer YOUR_API_TOKEN" \
-F "file=@your-file.pdf" \
-F "tool=pdf-quiz"
Files of 5 pages or fewer return the result inline; otherwise poll the job, then download it as md:
curl -L "https://pdf.chat/api/v1/ocr/JOB_UUID/download/?format=md" \
-H "Authorization: Bearer YOUR_API_TOKEN" -o result.md
Then ask questions about the document, with answers cited to the page:
curl -X POST https://pdf.chat/api/v1/chat/JOB_UUID/ \
-H "Authorization: Bearer YOUR_API_TOKEN" \
-H "Content-Type: application/json" \
-d '{"message": "Summarize this document"}'
Read the API docs →