# Find Beginner Udemy Data Science Courses

**Use case:** 

Find beginner-level data science courses on Udemy and return unique catalog records with course level, ratings, duration, instructors, public prices and direct URLs.

## Input

```json
{
  "searchTerms": [
    "data science"
  ],
  "maxItems": 25,
  "freeOnly": false,
  "sortOrder": "RELEVANCE",
  "languages": [],
  "levels": [
    "BEGINNER"
  ],
  "videoLengths": [],
  "closedCaptionLanguages": [],
  "mustHaveClosedCaptions": false,
  "mustHaveQuizzes": false,
  "mustHaveCodingExercises": false,
  "mustHavePracticeTests": false,
  "mustHaveWorkspaces": false,
  "mustHaveRoleplays": false,
  "practiceTestCoursesOnly": false,
  "certificationPrepOnly": false,
  "includeCourseDetails": false
}
```

## Output

```json
{
  "courseId": {
    "label": "Course ID",
    "format": "string"
  },
  "title": {
    "label": "Title",
    "format": "string"
  },
  "url": {
    "label": "Course",
    "format": "string"
  },
  "locale": {
    "label": "Locale",
    "format": "string"
  },
  "level": {
    "label": "Level",
    "format": "string"
  },
  "ratingAverage": {
    "label": "Rating",
    "format": "number"
  },
  "ratingCount": {
    "label": "Ratings",
    "format": "integer"
  },
  "durationSeconds": {
    "label": "Duration (seconds)",
    "format": "integer"
  },
  "lectureCount": {
    "label": "Lectures",
    "format": "integer"
  },
  "isFree": {
    "label": "Free",
    "format": "boolean"
  },
  "scrapedAt": {
    "label": "Scraped",
    "format": "string"
  }
}
```

## About this Actor

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


## How to integrate an Actor?

This Task's input is already configured above. Use it as-is rather than inventing a new one.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/datascraperes/udemy-course-catalog-scraper.md

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).
