# Course Data Extractor from Udemy

**Use case:** 

Extract detailed course information for Python from Udemy. Get data on titles, ratings, prices, and more across up to 200 courses.

## Input

```json
{
  "startUrl": "https://www.udemy.com/courses/search/?src=ukw&q=python",
  "keyword": "python",
  "results_wanted": 200,
  "max_pages": 10,
  "sort_order": "relevance",
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "course_id": {
    "label": "Course ID",
    "format": "number"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "course_url": {
    "label": "Course URL",
    "format": "link"
  },
  "image_url": {
    "label": "Image",
    "format": "image"
  },
  "instructors": {
    "label": "Instructors",
    "format": "text"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "reviews_count": {
    "label": "Reviews",
    "format": "number"
  },
  "price": {
    "label": "Price",
    "format": "text"
  },
  "list_price": {
    "label": "List Price",
    "format": "text"
  },
  "duration_seconds": {
    "label": "Duration",
    "format": "number"
  },
  "lectures_count": {
    "label": "Lectures",
    "format": "number"
  },
  "level": {
    "label": "Level",
    "format": "text"
  },
  "updated_on": {
    "label": "Updated",
    "format": "date"
  },
  "search_keyword": {
    "label": "Keyword",
    "format": "text"
  },
  "search_page": {
    "label": "Page",
    "format": "number"
  },
  "scraped_at": {
    "label": "Scraped At",
    "format": "date"
  }
}
```

## About this Actor

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