# Coursera JavaScript Course Data Extractor

**Use case:** 

Scrape detailed course data on JavaScript from Coursera. Get course titles, ratings, and instructor details in a structured format.

## Input

```json
{
  "query": "javascript",
  "results_wanted": 100,
  "max_pages": 10,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "name": {
    "label": "Course Name",
    "format": "text"
  },
  "avgProductRating": {
    "label": "Rating",
    "format": "text"
  },
  "numProductRatings": {
    "label": "Reviews",
    "format": "text"
  },
  "productDifficultyLevel": {
    "label": "Level",
    "format": "text"
  },
  "productDuration": {
    "label": "Duration",
    "format": "text"
  },
  "productType": {
    "label": "Type",
    "format": "text"
  },
  "skills": {
    "label": "Skills",
    "format": "text"
  },
  "url": {
    "label": "URL",
    "format": "link"
  },
  "imageUrl": {
    "label": "Image",
    "format": "text"
  },
  "partners": {
    "label": "Partners",
    "format": "text"
  }
}
```

## About this Actor

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