Leave Application Generator (Student)
Enter the dates and reason, and get a correctly structured leave application — addressed, dated, and counted — ready to print or copy out.
Subject: Application for leave from __________ to __________
Respected Sir/Madam,
With due respect, I, ________________, a student of __________ of your school, wish to state that ________________________. I therefore request you to kindly grant me leave for ____ day(s), from __________ to __________.
I assure you that I will complete the classwork and homework missed during this period. I shall be grateful for your kind consideration.
The leave application format schools expect
Structure is what gets applications accepted
The school leave application has a fixed structure — recipient address block, subject line stating the leave dates, respectful salutation, one paragraph with the reason and exact dates, an assurance line, and a "Yours obediently" closing with name, class, and roll number. School offices file these against the attendance register, so the from/to dates and day count are the fields that actually get read.
This generator counts the leave days for you (inclusive of both dates) and flags impossible date ranges, the two most common mistakes in handwritten applications.
Sick leave and the medical certificate
For absences of more than two or three days on medical grounds, most schools ask for a doctor's certificate along with the application — attach one from a registered practitioner covering the same dates. If the leave has already been taken (application submitted after returning), change the wording to past tense after printing, or state "I was unable to attend school from … to …".
Print the application, or use it as a correctly structured draft to copy out by hand — many schools still expect handwritten applications from students.
Frequently asked questions
How do I write a leave application for school?
Address it to the Principal or class teacher, add a subject line with the leave dates, state the reason and the exact from/to dates in one respectful paragraph, add an assurance about missed work, and close with "Yours obediently" followed by your name, class, and roll number. This tool assembles exactly that structure from your inputs.
How many days of leave should I mention?
Count both the first and last day of absence (inclusive). The tool computes this automatically from your from/to dates — a 29th-to-31st leave is 3 days, not 2 — and will flag the dates if "to" falls before "from".
Do I need a medical certificate with a sick-leave application?
For a day or two, usually not; for longer medical absence, most schools require a certificate from a registered medical practitioner covering the same dates — especially if attendance is close to the minimum requirement for exam eligibility. Generate the standard certificate format with the Medical Certificate Format Generator for the doctor to complete.
Should the application be addressed to the Principal or the class teacher?
Follow your school's practice: short leaves usually go to the class teacher, longer leaves to the Principal. The recipient selector switches the address block; everything else stays the same.
Can parents submit a leave application on behalf of a young child?
Yes — for primary classes, parents commonly write it. Change the first line after printing to "my son/daughter, [name], a student of…" and sign it as the parent, or have the child copy the generated text in their own hand where the school prefers that.
For developers & AI agents
The Leave Application Generator (Student) 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/student-leave-application-generator| Parameter | Required | Description |
|---|---|---|
recipient | No | Recipient of the application |
schoolName | Yes | Institution name for the address block |
schoolPlace | No | City for the address block (optional) |
date | Yes | Date of the application (YYYY-MM-DD) |
studentName | Yes | Student's full name |
classSection | Yes | Class and section |
rollNo | No | Roll number (optional) |
fromDate | Yes | First day of leave (YYYY-MM-DD) |
toDate | Yes | Last day of leave (YYYY-MM-DD) |
reason | Yes | Reason for the leave |
Request:
GET https://knwdle.com/api/tools/student-leave-application-generator?recipient=The+Principal&schoolName=Knwdle+Public+School&schoolPlace=Jaipur&date=2026-07-28&studentName=Riya+Meena&classSection=Class+VIII-B&rollNo=17&fromDate=2026-07-29&toDate=2026-07-31&reason=I+am+suffering+from+viral+fever+and+have+been+advised+rest+by+the+doctor
Response:
{
"tool": "student-leave-application-generator",
"name": "Leave Application Generator (Student)",
"formatSource": "Standard Indian school leave-application format (address block to the Principal/class teacher, subject line, respectful salutation, reason with exact dates, \"Yours obediently\" closing) as taught in school English curricula and expected by school offices.",
"document": {
"title": null,
"subject": "Application for leave from 29/07/2026 to 31/07/2026",
"textLines": [
"To,",
"The Principal",
"Knwdle Public School",
"Jaipur",
"",
"Subject: Application for leave from 29/07/2026 to 31/07/2026",
"",
"Respected Sir/Madam,",
"",
"With due respect, I, Riya Meena, a student of Class VIII-B (Roll No. 17) of your school, wish to state that I am suffering from viral fever and have been advised rest by the doctor. I therefore request you to kindly grant me leave for 3 days, from 29/07/2026 to 31/07/2026.",
"",
"I assure you that I will complete the classwork and homework missed during this period. I shall be grateful for your kind consideration.",
"",
"Yours obediently,",
"Riya Meena",
"Class VIII-B, Roll No. 17"
],
"text": "To,\nThe Principal\nKnwdle Public School\nJaipur\n\nSubject: Application for leave from 29/07/2026 to 31/07/2026\n\nRespected Sir/Madam,\n\nWith due respect, I, Riya Meena, a student of Class VIII-B (Roll No. 17) of your school, wish to state that I am suffering from viral fever and have been advised rest by the doctor. I therefore request you to kindly grant me leave for 3 days, from 29/07/2026 to 31/07/2026.\n\nI assure you that I will complete the classwork and homework missed during this period. I shall be grateful for your kind consideration.\n\nYours obediently,\nRiya Meena\nClass VIII-B, Roll No. 17"
}
}