# Scrape Coursera data science courses

**Use case:** 

Extract public Coursera search results for data science courses, including providers, ratings, reviews, level, duration, skills, and course URLs.

## Input

```json
{
  "queries": [
    "data science"
  ],
  "startUrls": [
    {
      "url": "https://www.coursera.org/search?query=project%20management"
    }
  ],
  "language": "English",
  "productType": "Course",
  "maxItems": 25,
  "maxPagesPerQuery": 3,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "query": {
    "label": "Query",
    "format": "text"
  },
  "courseTitle": {
    "label": "Course title",
    "format": "text"
  },
  "url": {
    "label": "Course URL",
    "format": "link"
  },
  "partnerNames": {
    "label": "Partners",
    "format": "array"
  },
  "productType": {
    "label": "Product type",
    "format": "text"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "reviewCount": {
    "label": "Review count",
    "format": "number"
  },
  "reviewCountText": {
    "label": "Reviews",
    "format": "text"
  },
  "skills": {
    "label": "Skills",
    "format": "array"
  },
  "level": {
    "label": "Level",
    "format": "text"
  },
  "duration": {
    "label": "Duration",
    "format": "text"
  },
  "descriptionSnippet": {
    "label": "Description snippet",
    "format": "text"
  },
  "imageUrl": {
    "label": "Image URL",
    "format": "link"
  },
  "tags": {
    "label": "Tags",
    "format": "array"
  },
  "sourceUrl": {
    "label": "Source URL",
    "format": "link"
  },
  "position": {
    "label": "Position",
    "format": "number"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "date"
  }
}
```

## About this Actor

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