# Scrape Skool classroom lessons & videos

**Use case:** 

Extract every course, module, lesson, video URL and transcript from a Skool classroom - export-ready CSV/JSON.

## Input

```json
{
  "communities": [
    "ai-automation-society"
  ],
  "maxItems": 25,
  "resolveMedia": true,
  "maxMediaResolves": 60,
  "includeLocked": false,
  "monitorMode": false,
  "alertOnNewLesson": true,
  "proxyConfiguration": {
    "useApifyProxy": true
  },
  "requestConcurrency": 8,
  "diagnose": false
}
```

## Output

```json
{
  "course_title": {
    "label": "Course",
    "format": "string"
  },
  "module_path": {
    "label": "Module",
    "format": "string"
  },
  "lesson_title": {
    "label": "Lesson",
    "format": "string"
  },
  "media_type": {
    "label": "Media",
    "format": "string"
  },
  "media_url": {
    "label": "Media URL",
    "format": "string"
  },
  "transcript": {
    "label": "Transcript",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Skool Classroom Scraper — Videos, Lessons, Transcripts](https://apify.com/scrapersdelight/skool-classroom-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/scrapersdelight/skool-classroom-scraper) to learn more, explore other use cases, and run it yourself.