Student report card

Pack 04 · Education · A4

A report card that treats learning commentary as seriously as marks. Academic performance, attendance and teacher voice fit on one balanced page without the visual noise of a spreadsheet export.

  1. Coursework and assessment breakdown
  2. Overall grade, position and attendance
  3. Subject-level teacher notes
  4. Teacher, parent and head signatures
Use this template →Seeds into your account on signup. No setup.Have your own PDF? Import it →

Example data

The data payload this template expects. Generate student report card PDFs by POSTing a shape like this to /v1/generate.

sample_data.json
{
  "term": "Term II",
  "academic_year": "2026-27",
  "result": "Promoted",
  "class_teacher": "Maya Prasad",
  "institution": {
    "name": "Northbridge Academy",
    "motto": "Observe · question · make",
    "address": "Pune 411007"
  },
  "student": {
    "id": "NBA-07284",
    "name": "Kabir Sen",
    "grade": "8",
    "section": "C",
    "house": "Banyan House"
  },
  "attendance": {
    "present": 108,
    "total": 112
  },
  "subjects": [
    {
      "name": "English language",
      "coursework": 37,
      "assessment": 55,
      "total": 92,
      "grade": "A1",
      "note": "Incisive reading and confident argument."
    },
    {
      "name": "Mathematics",
      "coursework": 35,
      "assessment": 51,
      "total": 86,
      "grade": "A2",
      "note": "Strong reasoning; show intermediate steps."
    },
    {
      "name": "Integrated science",
      "coursework": 38,
      "assessment": 54,
      "total": 92,
      "grade": "A1",
      "note": "Excellent experimental discipline."
    },
    {
      "name": "Social studies",
      "coursework": 34,
      "assessment": 48,
      "total": 82,
      "grade": "A2",
      "note": "Connect evidence more explicitly."
    },
    {
      "name": "Visual arts",
      "coursework": 39,
      "assessment": 56,
      "total": 95,
      "grade": "A1",
      "note": "Distinctive ideas and sustained craft."
    },
    {
      "name": "Computer science",
      "coursework": 36,
      "assessment": 53,
      "total": 89,
      "grade": "A2",
      "note": "Thoughtful solutions and clean logic."
    }
  ],
  "summary": {
    "percentage": 89.3,
    "grade": "A1",
    "position": "7 / 31",
    "attendance_rate": 96.4
  },
  "teacher_comment": "Kabir approaches unfamiliar problems with patience and curiosity. His next step is to make the reasoning behind strong answers more visible.",
  "head_comment": "A purposeful term with excellent academic range and a generous contribution to studio work."
}
generate.sh
curl -X POST https://doclinth.com/v1/generate \
  -H "Authorization: Bearer dl_live_YOUR_KEY" \
  -H "Content-Type: application/json" \
  -d '{"template_id":"YOUR_TEMPLATE_ID","data":{"term":"Term II","academic_year":"2026-27","result":"Promoted","class_teacher":"Maya Prasad","institution":{"name":"Northbridge Academy","motto":"Observe · question · make","address":"Pune 411007"},"student":{"id":"NBA-07284","name":"Kabir Sen","grade":"8","section":"C","house":"Banyan House"},"attendance":{"present":108,"total":112},"subjects":[{"name":"English language","coursework":37,"assessment":55,"total":92,"grade":"A1","note":"Incisive reading and confident argument."},{"name":"Mathematics","coursework":35,"assessment":51,"total":86,"grade":"A2","note":"Strong reasoning; show intermediate steps."},{"name":"Integrated science","coursework":38,"assessment":54,"total":92,"grade":"A1","note":"Excellent experimental discipline."},{"name":"Social studies","coursework":34,"assessment":48,"total":82,"grade":"A2","note":"Connect evidence more explicitly."},{"name":"Visual arts","coursework":39,"assessment":56,"total":95,"grade":"A1","note":"Distinctive ideas and sustained craft."},{"name":"Computer science","coursework":36,"assessment":53,"total":89,"grade":"A2","note":"Thoughtful solutions and clean logic."}],"summary":{"percentage":89.3,"grade":"A1","position":"7 / 31","attendance_rate":96.4},"teacher_comment":"Kabir approaches unfamiliar problems with patience and curiosity. His next step is to make the reasoning behind strong answers more visible.","head_comment":"A purposeful term with excellent academic range and a generous contribution to studio work."}}'

Sign up to seed this template and get its template_id.

Related templates