# Product Hunt product page scraper

**Use case:** 

Extract Product Hunt product data from specific slugs or URLs, including descriptions, screenshots, pricing, ratings, and reviews.

## Input

```json
{
  "productUrls": [
    "https://www.producthunt.com/products/notion",
    "https://www.producthunt.com/products/figma",
    "linear"
  ],
  "maxProducts": 10
}
```

## Output

```json
{
  "name": {
    "label": "Name",
    "format": "string"
  },
  "url": {
    "label": "URL",
    "format": "string"
  },
  "tagline": {
    "label": "Tagline",
    "format": "string"
  },
  "aggregateRating": {
    "label": "Rating",
    "format": "number"
  },
  "reviewCount": {
    "label": "Reviews",
    "format": "integer"
  },
  "pricingType": {
    "label": "Pricing",
    "format": "string"
  },
  "datePublished": {
    "label": "Launched",
    "format": "string"
  },
  "categories": {
    "label": "Categories",
    "format": "array"
  },
  "imageUrl": {
    "label": "Image",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Product Hunt Scraper](https://apify.com/automation-lab/producthunt-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/producthunt-scraper) to learn more, explore other use cases, and run it yourself.