---
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
    - `created_at` string, date-time
    - `updated_at` string, date-time, nullable
    - `is_finished` boolean

---

[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-service-production.skmtc.workers.dev/v1/apis/excellence-ai/excellence-learning/revisions/c407f3b5a05b/schema)
