# Track Product Hunt Vote Velocity for Launch Detection (2026)

**Use case:** 

Track Product Hunt's daily leaderboard: name, tagline, votes, comments, daily/weekly/monthly rank, topics, and featured date. Monitor vote velocity in real time

## Input

```json
{
  "queries": [
    "artificial-intelligence",
    "developer-tools"
  ],
  "maxResults": 10,
  "maxPerDay": 10,
  "scrapeType": "leaderboard",
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

## Output

```json
{
  "name": {
    "label": "Name",
    "format": "text"
  },
  "tagline": {
    "label": "Tagline",
    "format": "text"
  },
  "votes_count": {
    "label": "Votes",
    "format": "number"
  },
  "comments_count": {
    "label": "Comments",
    "format": "number"
  },
  "daily_rank": {
    "label": "Daily Rank",
    "format": "number"
  },
  "topics": {
    "label": "Topics",
    "format": "array"
  },
  "featured_at": {
    "label": "Featured",
    "format": "date"
  },
  "url": {
    "label": "URL",
    "format": "link"
  }
}
```

## About this Actor

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