---
title: "List Webinar Slots"
method: GET
path: "/admin/webinars/slots"
tags: ["Admin - Webinars"]
---

# List Webinar Slots

`GET /admin/webinars/slots`

List webinar slots with optional filtering and registration information.
Only accessible by admin users.

## Query parameters

- `month` integer, nullable — Filter by month (1-12)
- `year` integer, nullable — Filter by year
- `is_active` boolean, nullable — Filter by active status

## Response `200`

Successful Response

- WebinarSlotResponse[]
  - `id` string, required
  - `start_time_utc` string, date-time, required
  - `title` string, nullable
  - `description` string, nullable
  - `zoom_link` string, required
  - `max_attendees` integer, nullable
  - `is_active` boolean, required
  - `created_by` string, required
  - `created_at` string, date-time, required
  - `updated_at` string, date-time, required
  - `registrations_count` integer
  - `registrations` WebinarRegistrationInfo[]
    - `teacher_id` string, required
    - `teacher_name` string, nullable
    - `teacher_email` string, required
    - `registered_at_utc` string, date-time, required

## 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/8d495ed916c6/schema)
