# Build a Udemy course list for a topic

**Use case:** 

Collect matching Udemy courses for a topic and review their title, instructor, price, rating, reviews, enrollment, level, language, and course URL.

## Input

```json
{
  "searchQueries": [
    "python for beginners"
  ],
  "startUrls": [
    "https://www.udemy.com/course/the-complete-javascript-course/"
  ],
  "maxResults": 25,
  "language": "en",
  "sortBy": "relevance",
  "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.