---
title: "Retrieve course lesson interaction"
method: GET
path: "/course_lesson_interactions/{id}"
tags: ["Course lesson interactions"]
---

# Retrieve course lesson interaction

`GET /course_lesson_interactions/{id}`

Retrieves the details of an existing course lesson interaction.

Required permissions:
 - `courses:read`
 - `course_analytics:read`

## Path parameters

- `id` string, required

## Response `200`

A successful response

- CourseLessonInteraction — A record of a user's progress on a specific lesson, tracking whether they have completed it.
  - `completed` boolean, required — Whether the user has finished this lesson.
  - `course` object, required — The course that contains the tracked lesson.
    - `experience` object, required — The parent experience that this course belongs to.
      - `id` string, required — The unique identifier for the experience.
    - `id` string, required — The unique identifier for the course.
    - `title` string, nullable, required — The display name of the course shown to students. Null if no title has been set.
  - `created_at` string, date-time, required — The datetime the lesson interaction was created.
  - `id` string, required — The unique identifier for the lesson interaction.
  - `lesson` object, required — The lesson that this progress record belongs to.
    - `chapter` object, required — The parent chapter that contains this lesson.
      - `id` string, required — The unique identifier for the chapter.
    - `id` string, required — The unique identifier for the lesson.
    - `title` string, required — The display name of the lesson shown to students. Maximum 120 characters.
  - `user` object, required — The user whose progress is being tracked.
    - `id` string, required — The unique identifier for the user.
    - `name` string, nullable, required — The user's display name shown on their public profile.
    - `username` string, required — The user's unique username shown on their public profile.

## Other responses

- `400` — Bad request
- `401` — Unauthorized
- `403` — Forbidden
- `404` — Not found
- `422` — Verification required
- `429` — Too many requests
- `500` — Internal server error

---

[API](https://skmtc.net/whop/apis/whop-api.md) · [All operations](https://skmtc.net/whop/apis/whop-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/whop/whop-api/versions/db0883548bc5/schema)
