Students in PlataformaEduca — referred to as Estudiante — have a read-oriented role focused on visibility into their academic data. Once your account is created (either by self-registering withDocumentation Index
Fetch the complete documentation index at: https://mintlify.com/miagv/PlataformaEduca/llms.txt
Use this file to discover all available pages before exploring further.
role=ESTUDIANTE or by receiving credentials from your coordinator), you can log in, browse the courses available on the platform, and retrieve a complete report of every grade recorded for you — including the teacher’s written observations.
Your student profile
When a student account is created, the platform stores additional academic information alongside the base user record:| Field | Description |
|---|---|
codigo | Your unique student code assigned by the institution |
grado | Your grade or year level (e.g., “Primero de Secundaria”) |
usuario | The linked authentication user record |
Authentication
Obtain a JWT token by posting your credentials to the auth endpoint.Bearer header on every subsequent request. The server uses the email embedded in the token to identify you without requiring you to supply your own ID.
Viewing enrolled courses
Retrieve the list of active course assignments currently on the platform.This endpoint currently returns all active assignments on the platform rather than filtering by your personal enrollment. This is a simplified implementation — a future version will scope results to your specific grade level and period.
Viewing your grade report
The grade report returns everyNota record associated with your account. Each entry shows your numeric score, the teacher’s observation, and the full Evaluacion that was graded (including its title, weight, and date).
porcentaje field on each evaluation tells you how much that activity contributes to your final grade. A score on an evaluation with "porcentaje": 30.0 counts for 30% of your total.
Common workflow
Register or receive credentials
Self-register via the platform’s registration endpoint with
"role": "ESTUDIANTE", or ask your coordinator for your account credentials.Log in and obtain a JWT token
POST to
/api/auth/login with your email and password. Save the returned token — you will need it for every request.View available courses
GET
/api/estudiante/mis-cursos to see the courses and classrooms active in the current period.