get_lesson_transcript
Get the full transcript of any video lesson by supplying the course and lesson slugs. Choose between plain text or timestamped lines to support summarization and note-taking.
Instructions
Fetch the full transcript for one video lesson.
Args:
course_slug: from list_enrolled_courses.
lesson_slug: from list_lessons (the short lesson id like "pu5xbv").
format: "plain" gives one flowing text block; "timestamped" gives
lines prefixed with [M:SS] markers.
Returns {course_name, lesson_name, duration_seconds, transcript}.
Only video lessons have transcripts; other lesson types raise an error.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| format | No | plain | |
| course_slug | Yes | ||
| lesson_slug | Yes |