Product Hunt Scraper — Launches, Reviews & Leaderboards avatar

Product Hunt Scraper — Launches, Reviews & Leaderboards

Pricing

from $4.00 / 1,000 detailed launches

Go to Apify Store
Product Hunt Scraper — Launches, Reviews & Leaderboards

Product Hunt Scraper — Launches, Reviews & Leaderboards

Scrape Product Hunt launches, leaderboards, reviews & comments. Export startup leads, ratings, and discussion threads as JSON. No PH API needed. Paginated boards & reviews.

Pricing

from $4.00 / 1,000 detailed launches

Rating

0.0

(0)

Developer

Andrej Kiva

Andrej Kiva

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

a day ago

Last modified

Share

Disclaimer: Unofficial integration for publicly accessible Product Hunt pages. Not affiliated with, sponsored by, or endorsed by Product Hunt or its operators. Trademarks belong to their respective owners.

This Actor is provided for informational and research purposes only. You are solely responsible for ensuring your use complies with applicable laws, platform terms of use, and your organization's policies.

No warranty is given as to accuracy, completeness, or continued availability of third-party data. Use at your own risk.

Product Hunt scraper and API alternative — extract product launches, taglines, votes, websites, social handles, user reviews, ratings, and threaded comments. Scrape daily/weekly/monthly/yearly leaderboards or any custom launch list. Built for lead gen, competitor research, and startup datasets via Python, Node.js, or MCP.

Product HuntGoogle PlayApple App StoreApp Stores Combined
Product Hunt Scraper ◄── you are hereGoogle Play ScraperApple App Store ScraperApp Stores Scraper

When to use this Actor

Use the Product Hunt Scraper when you need launch-day signals, leaderboard ranks, reviews, and maker/website enrichment from Product Hunt without a PH API key.

For mobile app store listings and ratings, use the Google Play / Apple App Store scrapers instead.

Key Features

  • Feed & launches — Homepage or custom category/topic pages
  • Leaderboards — Daily, weekly, monthly, yearly by date or week
  • Deep product details — Description, company info, social / app store links
  • Reviews & ratings — Overall and aspect ratings, pros/cons, reviewer profiles
  • Threaded comments — Discussion body, upvotes, timestamps, authors
  • Fast HTTPcurl_cffi TLS impersonation; no heavy browser for v1

Input Parameters

ParameterTypeDefaultDescription
startUrlsArrayProduct Hunt homepageHomepage, posts, or leaderboard URLs
scrapeDetailsBooleantrueVisit detail pages for description, links, reviews, comments
maxItemsInteger500Max launches to scrape
scrapeReviewsBooleantrueExtract reviews (up to maxReviews per product)
scrapeCommentsBooleantrueExtract comments (up to maxComments per product)
maxReviewsInteger20Max reviews per product
maxCommentsInteger50Max comments per product
proxyConfigurationObjectResidentialApify Residential recommended
concurrencyLimitInteger2Concurrent workers (keep low)

Input Example

{
"startUrls": [{ "url": "https://www.producthunt.com/" }],
"scrapeDetails": true,
"maxItems": 25,
"scrapeReviews": true,
"scrapeComments": true,
"maxReviews": 10,
"maxComments": 20,
"proxyConfiguration": {
"useApifyProxy": true,
"apifyProxyGroups": ["RESIDENTIAL"]
},
"concurrencyLimit": 2
}

Output Format

{
"id": "1175520",
"name": "Spira for Product Hunt Makers",
"slug": "spira-for-product-hunt-makers",
"tagline": "Social media growth agents that build your momentum",
"votesCount": 447,
"commentsCount": 161,
"dailyRank": 1,
"weeklyRank": 2,
"monthlyRank": 39,
"websiteUrl": "https://spira.ai",
"reviewsRating": 4.8,
"reviewsCount": 12,
"featuredAt": "2026-06-29T00:01:00-07:00"
}

Use cases

Use caseWhat you get
B2B lead genNew launches, websites, social handles, makers
Competitor analysisCategory launches, ratings, review themes
Market sentimentVotes, comments, review scores over time
Startup researchLeaderboard ranks, funding / YC signals when present
AI / MCP workflowsRun via Apify API, clients, or MCP

Integration examples

Node.js

import { ApifyClient } from 'apify-client';
const client = new ApifyClient({ token: process.env.APIFY_TOKEN });
const run = await client.actor('crawloop/producthunt-scraper').call({
startUrls: [{ url: 'https://www.producthunt.com/' }],
maxItems: 25,
scrapeDetails: true,
scrapeReviews: true,
proxyConfiguration: { useApifyProxy: true, apifyProxyGroups: ['RESIDENTIAL'] },
});
const { items } = await client.dataset(run.defaultDatasetId).listItems();
console.log(items.slice(0, 5));

Python

from apify_client import ApifyClient
client = ApifyClient(token)
run = client.actor("crawloop/producthunt-scraper").call(
run_input={
"startUrls": [{"url": "https://www.producthunt.com/"}],
"maxItems": 25,
"scrapeDetails": True,
"proxyConfiguration": {"useApifyProxy": True, "apifyProxyGroups": ["RESIDENTIAL"]},
}
)
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
print(item.get("name"), item.get("votesCount"), item.get("websiteUrl"))

cURL

curl "https://api.apify.com/v2/acts/crawloop~producthunt-scraper/runs?token=$APIFY_TOKEN" \
-H "Content-Type: application/json" \
-d '{"startUrls":[{"url":"https://www.producthunt.com/"}],"maxItems":25,"scrapeDetails":true,"proxyConfiguration":{"useApifyProxy":true,"apifyProxyGroups":["RESIDENTIAL"]}}'

MCP and AI assistants

Use this Actor from AI tools via Apify MCP. Connect your Apify account, then call crawloop/producthunt-scraper.

Example prompts:

  • "Run Product Hunt Scraper for today's homepage, max 25, and return name, tagline, votesCount, websiteUrl"
  • "Scrape Product Hunt launches with reviews and summarize top-rated products"
  • "Chain Product Hunt then Google Play Scraper when a launch has an Android app link"

Suite next step

For mobile store presence after a launch, use Google Play Scraper or Apple App Store Scraper. For both stores in one run, use App Stores Scraper.

FocusActor
Product Hunt launches & reviewsProduct Hunt Scraper ◄── you are here
Google Play appsGoogle Play Scraper
Apple App Store appsApple App Store Scraper
Both app storesApp Stores Scraper