Exam Timetable Generator
Turn subject and date lists into a clear exam date sheet ready to print or share.
Papers
| Date | Session | Subject | Venue |
|---|---|---|---|
| 10/09/2026 | Morning | Mathematics | Hall A |
| 12/09/2026 | Morning | English | Hall A |
| 14/09/2026 | Afternoon | Science | Hall B |
Instructions: Carry hall ticket and photo ID. Report 30 minutes early. Electronic devices prohibited.
How the exam timetable generator works
List every paper
Add rows with subject, date (yyyy-mm-dd), session (Morning/Afternoon), and optional duration or venue.
Rows are sorted by date then session for a chronological date sheet.
Publish
Print the A4 preview for notice boards, or call the JSON API to feed the same schedule into another system.
Source
Institutional exam date-sheet template. Align exam windows with your board/university circular; this tool does not encode board-specific blackout dates.
Frequently asked questions
Is this the same as a hall ticket?
No — this is the overall exam date sheet. Use the Hall Ticket Generator for per-candidate admit cards.
Can I include practical exams?
Yes — add them as separate subject rows with their own dates and sessions.
Does it check for same-day clashes?
The API flags subjects sharing the same date+session. Resolve clashes manually before publishing.
What date format should I use?
ISO dates (yyyy-mm-dd) in the form and API. Printed output uses dd/mm/yyyy.
Can I add instructions?
Yes — an optional instructions block prints under the schedule table.
For developers & AI agents
The Exam Timetable Generator is also available as a free, unauthenticated JSON API — no API key, no sign-up, CORS enabled for all origins. Send a GET request with the parameters below and receive the computed result as JSON, including the source of the format or formula used. Invalid input returns HTTP 400 with a JSON { "error": "..." } body.
GET https://knwdle.com/api/tools/exam-timetable-generator| Parameter | Required | Description |
|---|---|---|
institution | No | Institution name |
examName | Yes | Examination title |
papers | Yes | Semicolon-separated Subject|yyyy-mm-dd|Session|Venue entries |
Request:
GET https://knwdle.com/api/tools/exam-timetable-generator?examName=Half-Yearly+2026&institution=Knwdle+Junior+College&papers=Mathematics|2026-09-10|Morning|Hall+A;English|2026-09-12|Morning|Hall+A;Physics|2026-09-14|Afternoon|Lab+1
Response:
{
"tool": "exam-timetable-generator",
"name": "Exam Timetable Generator",
"source": "Institutional exam date-sheet template. Align exam windows with your board/university circular; this tool does not encode board-specific blackout dates.",
"institution": "Knwdle Junior College",
"examName": "Half-Yearly 2026",
"papers": [
{
"subject": "Mathematics",
"date": "2026-09-10",
"session": "Morning",
"venue": "Hall A"
},
{
"subject": "English",
"date": "2026-09-12",
"session": "Morning",
"venue": "Hall A"
},
{
"subject": "Physics",
"date": "2026-09-14",
"session": "Afternoon",
"venue": "Lab 1"
}
],
"paperCount": 3,
"clashes": []
}