# Build a language-filtered Udemy course list

**Use case:** 

Build a language-filtered course list so you can compare offerings in a single course language across a topic.

## Input

```json
{
  "searchQueries": [
    "learn spanish"
  ],
  "startUrls": [
    "https://www.udemy.com/course/the-complete-javascript-course/"
  ],
  "maxResults": 15,
  "language": "en",
  "sortBy": "highest-rated",
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountry": "US"
  }
}
```

## Output

```json
{
  "title": {
    "label": "Title",
    "format": "string"
  },
  "instructorName": {
    "label": "Instructor name",
    "format": "string"
  },
  "price": {
    "label": "Price",
    "format": "string"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "numReviews": {
    "label": "Reviews",
    "format": "integer"
  },
  "numSubscribers": {
    "label": "Students",
    "format": "integer"
  },
  "level": {
    "label": "Level",
    "format": "string"
  },
  "category": {
    "label": "Category",
    "format": "string"
  },
  "language": {
    "label": "Language",
    "format": "string"
  },
  "url": {
    "label": "URL",
    "format": "string"
  }
}
```

## About this Actor

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