# Udacity Machine Learning Course Scraper

**Use case:** 

Extract Udacity machine learning courses with titles, difficulty, ratings and enrollment data. Compare programs fast and export structured results.

## Input

```json
{
  "searchQuery": "machine learning",
  "maxItems": 1,
  "includeDetails": false,
  "sortBy": "relevance",
  "freeOnly": false,
  "maxConcurrency": 10
}
```

## Output

```json
{
  "imageUrl": {
    "label": "Image Url",
    "format": "link"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "url": {
    "label": "Url",
    "format": "link"
  },
  "key": {
    "label": "Key",
    "format": "text"
  },
  "slug": {
    "label": "Slug",
    "format": "text"
  },
  "programKey": {
    "label": "Program Key",
    "format": "text"
  },
  "semanticType": {
    "label": "Semantic Type",
    "format": "text"
  },
  "summary": {
    "label": "Summary",
    "format": "text"
  },
  "difficultyLevel": {
    "label": "Difficulty Level",
    "format": "text"
  },
  "duration": {
    "label": "Duration",
    "format": "number"
  },
  "isFree": {
    "label": "Is Free",
    "format": "text"
  },
  "reviewCount": {
    "label": "Review Count",
    "format": "number"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "schoolName": {
    "label": "School Name",
    "format": "text"
  }
}
```

## About this Actor

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