The Grades API exposes course grades and GPA data imported directly from the student’s connected school platform. This is deliberately its own scope (Documentation Index
Fetch the complete documentation index at: https://mintlify.com/UAnirudh/IntelliPlan/llms.txt
Use this file to discover all available pages before exploring further.
read:grades) rather than being bundled under read:assignments — knowing what is due and knowing what a student scored are different levels of trust, and grades are the most sensitive academic data IntelliPlan holds. Two endpoints surface this data: the public API endpoint at /api/v1/grades which normalizes the response into a consistent shape regardless of the underlying LMS, and the internal web route /grades/data which returns the raw per-provider payload. Third-party integrations should always use the /api/v1/ endpoint.
Grade data is sourced from the student’s connected school platform (Canvas, Google Classroom, StudentVue, Schoology, Blackboard, or Moodle). If no LMS is connected, or if the connected platform does not provide grade data via its API, the
grades array will be empty. Grades require the read:grades scope — this scope must be explicitly granted when creating or requesting an API key.GET /api/v1/grades — Course Grades and GPA
Returns a normalized list of course grades and computed GPA pulled live from the student’s connected school platform. The response shape is consistent regardless of which LMS is connected — IntelliPlan normalizes the raw platform payload so your client only needs one renderer. Required scope:read:grades
- Request
- Response
cURL
Response Fields
Array of course grade objects, one per enrolled course with grade data. Empty array if no LMS is connected or the platform has no grade data available.
GET /grades/data — Raw Grade Data (Web Route)
The internal web route that returns raw grade data from the connected provider. This is called by the Grades page in the IntelliPlan web app and by/api/v1/grades internally. It returns the platform’s native payload shape, which varies by provider.
This is a session-authenticated web route, not a public API endpoint. Use
GET /api/v1/grades for third-party integrations — it normalizes the response into a consistent shape and is protected by API key scopes.cURL — web session required
/api/v1/grades endpoint normalizes all providers into the structure documented above by scanning the provider response for a grades, courses, or classes array key.
Grade Modeler
The Grade Modeler — available at/grademodel in the IntelliPlan web UI — lets students run “what if I score X% on my next test?” simulations. It takes the current grades data and hypothetical future scores to project how the course grade and GPA would change. This feature is available in the web UI only; there is currently no dedicated API endpoint for it.
Scope Reference
read:grades
Required for
GET /api/v1/grades. This scope must be explicitly requested when applying for an API key at intelliplan.tech/developers. It is not included in default key grants.read:assignments
Used by the assignments and tasks endpoints. Does not grant access to grades — the two scopes are intentionally separate.
Error Responses
upstream_failed (502)
upstream_failed (502)
The connected school platform returned an error. This happens when the student’s OAuth token has expired, the school’s LMS is temporarily unavailable, or the platform account has been deauthorized. Prompt the student to reconnect their LMS.
insufficient_scope (403)
insufficient_scope (403)
The API key used does not have the
read:grades scope. Request a new key with the grade scope explicitly enabled.unauthorized (401)
unauthorized (401)