Free Tool · No Sign-up

Syllabus Completion Tracker

List chapters with planned and completed status — see overall % done and chapters still pending.

100% freeNo sign-up requiredRuns in your browserJSON API for agents

Completion

50%
Weighted completion
%
Completion rate
A4
Progress sheet
Live
Pending list

How syllabus tracking works

Chapter rows

Enter Chapter|Status|Weight where status is done / in-progress / pending and weight is relative importance (default 1). Overall completion = weighted done ÷ total weight.

Source

Simple planned-vs-completed tracker for term reviews and academic audits. Pair with your board’s official unit list.

Frequently asked questions

What counts as “done”?

Your department rule — typically taught + notes given + at least one assessment. Be consistent across subjects.

Can weights reflect mark weightage?

Yes — set weight to unit marks or periods allotted so overall % reflects exam importance.

Does in-progress count partially?

In-progress contributes 50% of its weight toward the overall percentage.

Is this for one subject only?

Yes per sheet — duplicate for each subject or class.

For developers & AI agents

The Syllabus Completion Tracker 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.

Endpoint
GET https://knwdle.com/api/tools/syllabus-completion-tracker
Query parameters
ParameterRequiredDescription
subjectYesSubject name
classNameNoClass / section
chaptersYesSemicolon-separated Chapter|Status|Weight (status: done|in-progress|pending)
Example

Request:

GET https://knwdle.com/api/tools/syllabus-completion-tracker?subject=Mathematics&className=10-A&chapters=Real+Numbers|done|1;Polynomials|done|1;Trigonometry|in-progress|2;Statistics|pending|1

Response:

{
  "tool": "syllabus-completion-tracker",
  "name": "Syllabus Completion Tracker",
  "source": "Simple planned-vs-completed tracker for term reviews and academic audits. Pair with your board’s official unit list.",
  "subject": "Mathematics",
  "className": "10-A",
  "chapters": [
    {
      "name": "Real Numbers",
      "status": "done",
      "weight": 1
    },
    {
      "name": "Polynomials",
      "status": "done",
      "weight": 1
    },
    {
      "name": "Trigonometry",
      "status": "in-progress",
      "weight": 2
    },
    {
      "name": "Statistics",
      "status": "pending",
      "weight": 1
    }
  ],
  "totalWeight": 5,
  "completionPct": 60,
  "pending": [
    "Statistics"
  ],
  "steps": [
    "Weighted progress = 3 / 5",
    "Completion = 60%"
  ]
}

Run the whole institution on one system

Knwdle connects timetables, attendance, fees, and academics — so planning tools become live operations, not one-off PDFs.

Free trial · No credit card · SaaS or custom-built