# Extract details from specific Udemy course pages

**Use case:** 

Extract structured details from specific Udemy course pages so you can verify course facts from the landing page itself.

## Input

```json
{
  "searchQueries": [
    "excel",
    "digital marketing"
  ],
  "startUrls": [
    "https://www.udemy.com/course/the-complete-javascript-course/"
  ],
  "maxResults": 10,
  "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.