Product Hunt Scraper - Launches, Products & Leaderboard avatar

Product Hunt Scraper - Launches, Products & Leaderboard

Pricing

from $1.20 / 1,000 results

Go to Apify Store
Product Hunt Scraper - Launches, Products & Leaderboard

Product Hunt Scraper - Launches, Products & Leaderboard

Scrape Product Hunt launches, product profiles, and leaderboard rankings. Extract name, tagline, votes, comments, topics, pricing, reviews, and website URLs. Daily featured products, category browsing, and historical leaderboard data.

Pricing

from $1.20 / 1,000 results

Rating

0.0

(0)

Developer

Thirdwatch

Thirdwatch

Maintained by Community

Actor stats

0

Bookmarked

1

Total users

0

Monthly active users

7 hours ago

Last modified

Categories

Share

Product Hunt Scraper

Scrape Product Hunt launches, product profiles, and leaderboard rankings. Extracts structured data from Product Hunt's Apollo GraphQL SSR without a browser.

What it does

This actor scrapes Product Hunt in three modes:

  • Launches (default): Daily featured products from the homepage or topic pages. Returns name, tagline, votes, comments, rankings, and topics.
  • Products: Full product profiles with description, website URL, pricing type, review ratings, and follower counts.
  • Leaderboard: Today's top-ranked products sorted by daily rank.

Input parameters

ParameterTypeDefaultDescription
queriesarray of strings[]Topic slugs for launches (e.g., artificial-intelligence, developer-tools), product slugs for products (e.g., chatgpt, notion). Leave empty for homepage.
maxResultsinteger50Maximum total results to return.
scrapeTypestringlaunchesOne of: launches, products, leaderboard.
proxyConfigurationobject{}Proxy settings. Leave default for best results.

Output fields

FieldTypeDescription
namestringProduct name
taglinestringProduct tagline
urlstringProduct Hunt URL
website_urlstring or nullProduct's actual website (products mode only)
votes_countintegerNumber of upvotes
comments_countintegerNumber of comments
daily_rankinteger or nullDaily ranking position
weekly_rankinteger or nullWeekly ranking position
monthly_rankinteger or nullMonthly ranking position
topicsarray of stringsTopic/category names
descriptionstring or nullFull description (products mode only)
pricing_typestring or nullPricing model (products mode only)
reviews_ratingfloat or nullAverage review rating (products mode only)
reviews_countinteger or nullNumber of reviews (products mode only)
thumbnail_urlstring or nullThumbnail image URL
featured_atstring or nullISO date when featured
created_atstring or nullISO date when created
querystringWhich query produced this result

Example usage

Scrape today's launches

{
"scrapeType": "launches",
"maxResults": 20
}

Scrape AI topic launches

{
"queries": ["artificial-intelligence", "developer-tools"],
"scrapeType": "launches",
"maxResults": 50
}

Scrape product profiles

{
"queries": ["chatgpt", "notion", "linear"],
"scrapeType": "products",
"maxResults": 10
}

Scrape today's leaderboard

{
"scrapeType": "leaderboard",
"maxResults": 30
}

Technical details

  • Pattern B: HTTP-only with impit TLS fingerprinting (no browser)
  • Memory: 256 MB
  • Anti-bot bypass: impit with Chrome TLS fingerprint bypasses Cloudflare Managed Challenge
  • Data source: Apollo GraphQL SSR data embedded in HTML script tags
  • Cost: ~$0.05/1K results (pure HTTP, no proxy needed in most cases)