---
title: "List Teacher Courses"
method: GET
path: "/teacher/courses/list"
tags: ["Teacher Courses"]
---

# List Teacher Courses

`GET /teacher/courses/list`

List all courses created by the authenticated teacher that are marked as teacher courses.
Only returns courses where is_teacher_course=True and user_id matches the current teacher.
Optionally filters by folder_id (None or empty string for root-level courses).

## Query parameters

- `folder_id` string, nullable

## Response `200`

Successful Response

- CourseSummaryListWithFolders — List of courses with folder support.
  - `courses` CourseSummaryWithFolder[], required
    - `id` string, required
    - `title` string, required
    - `status` string, required
    - `created_at` string, date-time, required
    - `folder_id` string, nullable
    - `class_count` integer
    - `start_date` string, date-time, nullable
    - `quiz_end_date` string, date-time, nullable
    - `classes` CourseClassScheduleOut[]
      - `class_id` string, required
      - `class_name` string
      - `school_year` string, nullable
      - `is_past` boolean
      - `start_date` string, date-time, nullable
      - `quiz_start_date` string, date-time, nullable
      - `quiz_end_date` string, date-time, nullable

## Other responses

- `422` — Validation Error

---

[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/ef67479ed898/schema)
