Pricing
Pay per usage
Product Hunt Scraper (Free, Daily Launches)
Daily Product Hunt launches as a clean feed. Two modes: RSS (default, zero-auth, headline schema) and GraphQL (richer โ votes, comments, topics, makers; needs a free PH dev token). Use source=auto to pick GraphQL when a token is supplied.
Pricing
Pay per usage
Rating
0.0
(0)
Developer
Actor stats
0
Bookmarked
3
Total users
2
Monthly active users
16 days ago
Last modified
Categories
Share
Product Hunt Daily Launches Scraper โ Free
Today's (and yesterday's, and last week's) Product Hunt launches as a feed. Two modes: free RSS (zero-auth, name + tagline + thumbnail) and richer GraphQL (votes, comments, topics, makers โ needs a free PH dev token).
โจ Why this Actor
- Free + zero-auth by default โ RSS mode requires no API key, no login
- Full GraphQL upgrade path โ if you want votes / topics / makers, plug in a free Product Hunt developer token
- Historical backfill โ GraphQL mode lets you sweep any date range, not just today
- Cloudflare-bypass-free โ Product Hunt fronts their HTML with Cloudflare (which blocks plain scrapers); the RSS feed and GraphQL endpoint are open
๐ Quick start
Latest launches via RSS (no token needed):
{"source":"rss","maxPerDay":50}
Last week's launches with full schema (needs PH dev token):
{"source":"graphql","developerToken":"YOUR_PH_TOKEN","date":"2026-06-01","daysBack":7,"maxPerDay":100}
Auto-detect: use GraphQL if token supplied, else RSS:
{"source":"auto","developerToken":"YOUR_PH_TOKEN"}
๐ฆ Output schema
| Field | Type | Notes |
|---|---|---|
ph_id, slug | str | Stable Product Hunt id + URL slug |
name | str | Product name |
tagline | str | (GraphQL only) one-line pitch |
description | str | Plain-text body |
url | str | https://www.producthunt.com/posts/<slug> |
website | str | (GraphQL only) the product's own URL |
thumbnail_url | str | Logo / preview image |
votes | int | (GraphQL only) upvote count |
comments | int | (GraphQL only) comment count |
topics | array | (GraphQL only) topic / tag names |
makers | array<{username, name}> | (GraphQL only) maker handles |
featured_at, created_at | iso8601 | |
leaderboard_date | YYYY-MM-DD | The leaderboard date this row appears on |
source | str | rss or graphql |
๐ฏ Use cases
- Launch-day newsletter โ daily digest of new PH launches in your niche
- Auto-tweet trending products โ schedule daily, post top 5 to Twitter
- Competitive intelligence โ track competitor launches + their vote velocity
- Year-in-review content โ pull every launch from a year, write the "Best of 2026" roundup
- Investor signal โ products hitting #1 on launch day = potential breakout
- Outreach lists โ
makersarray gives you direct DM targets (founder personas) - Trend analysis โ sweep monthly, see which topics keep showing up in top 10
โ๏ธ Input parameters
| Parameter | Type | Default | Notes |
|---|---|---|---|
source | str | auto | auto / rss / graphql. auto = graphql if token supplied, else rss |
developerToken | str (secret) | โ | Free at producthunt.com/v2/oauth/applications |
date | YYYY-MM-DD | yesterday UTC | (GraphQL only) anchor date |
daysBack | int | 1 | (GraphQL only) number of days back from anchor |
maxPerDay | int | 100 | Per-day cap |
๐ ๏ธ How it works
RSS path (default, free):
- Hit
https://www.producthunt.com/feed - Parse Atom entries
- Normalise to the schema (thinner fields โ no votes/topics/makers)
GraphQL path (richer, needs token):
- Sign up at producthunt.com/v2/oauth/applications, create an app, copy your developer token (free, takes 30 seconds)
- Pass it as
developerToken(stored encrypted by Apify as a secret) - Actor uses PH's official GraphQL API at
api.producthunt.com/v2/api/graphql
โ ๏ธ Tips & caveats
- Today's leaderboard is still moving โ PH's daily ranking resets at midnight PT and votes pour in for the next 24 hours. The default anchor (yesterday UTC) gives you stable data.
- RSS schema is thin โ no vote counts, no makers, no topics. Get a free dev token for the full schema.
- Cloudflare blocks plain HTTP scrapers โ that's why this Actor uses RSS / GraphQL, not HTML parsing. If PH changes either, the Actor will be updated.
๐ Related Actors
Launch + startup intelligence:
- Y Combinator Companies โ many PH launches are YC companies
- Hacker News "Who is Hiring?" โ products that hit PH often appear on HN within days
- Reddit Subreddit + Search โ search
r/SaaS,r/Entrepreneurfor PH-launch discussion - GitHub Trending โ open-source PH launches usually go trending the same week
๐ฌ Support
Need a custom PH scraper (collections, makers' profiles, historical analytics)? Email caspersmartwater@gmail.com.
โญ Star this Actor.
