# Coursera & EdX YouTube Channel Video Data Export

**Use case:** 

Extract up to 100 videos from Coursera and EdX YouTube channels. Gain access to detailed video metadata including titles and views.

## Input

```json
{
  "channels": [
    "@coursera",
    "@edx"
  ],
  "contentType": "videos",
  "country": "US",
  "language": "en",
  "maxVideos": 100,
  "maxResults": 0
}
```

## Output

```json
{
  "channelTitle": {
    "label": "Channel",
    "format": "string"
  },
  "title": {
    "label": "Video title",
    "format": "string"
  },
  "viewCount": {
    "label": "Views",
    "format": "integer"
  },
  "publishedTime": {
    "label": "Published",
    "format": "string"
  },
  "duration": {
    "label": "Duration",
    "format": "string"
  },
  "videoId": {
    "label": "Video ID",
    "format": "string"
  },
  "url": {
    "label": "Video URL",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [YouTube Channel Scraper](https://apify.com/logiover/youtube-channel-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/logiover/youtube-channel-scraper) to learn more, explore other use cases, and run it yourself.