---
title: "List Student Exams"
method: GET
path: "/student-exams"
tags: ["student-exams"]
---

# List Student Exams

`GET /student-exams`

List all student exams created by the logged-in user (student).
Only returns exams that have structured exercises (i.e., have content).

## Response `200`

Successful Response

- GetStudentExamsResponse
  - `status` string, required
  - `exams` StudentExam[], required
    - `_id` string
    - `user_id` string, required
    - `exam_title` string, required
    - `time_limit` string, required
    - `exam_subject_images` string[]
    - `exam_subject_transcribed` string
    - `exam_started_at` string, date-time, nullable
    - `exam_finished_at` string, date-time, nullable
    - `time_spent_seconds` integer, nullable
    - `student_work_images` string[]
    - `student_work_diagrams` string[]
    - `student_work_transcribed` string
    - `correction_transcribed` string
    - `performance` StudentExamPerformance
      - `total_questions` integer, required
      - `correct` integer, required
      - `partial` integer, required
      - `wrong` integer, required
    - `feedback` string, nullable
    - `structured_exercises` ExamExercise[]
      - `id` integer, required
      - `title` string, required
      - `content` string, required
      - `solution` string, nullable
      - `points` number
      - `figure_id` string, nullable
      - `solution_figure_id` string, nullable
      - `figure_content` string, nullable
      - `figure_solution` string, nullable
      - `preamble` string, nullable
      - `estimated_minutes` integer, nullable
    - `created_at` string, date-time
    - `updated_at` string, date-time, nullable
    - `is_finished` boolean

## Changes

- **2026-09-15** `2a0c1636fd3b` — 1 info
  - added the optional property `exams/items/structured_exercises/items/estimated_minutes` to the response with the `200` status
- **2026-09-09** `a5af9b3b34f7` — 1 info
  - added the optional property `exams/items/structured_exercises/items/preamble` to the response with the `200` status

[Change history](https://skmtc.dev/excellence-ai/apis/excellence-learning/changes/student-exams/get.md)

---

[API](https://skmtc.dev/excellence-ai/apis/excellence-learning.md) · [All operations](https://skmtc.dev/excellence-ai/apis/excellence-learning/llms.txt) · [OpenAPI document](https://skmtc.dev/excellence-ai/apis/excellence-learning/revisions/2a0c1636fd3b?raw)
