Product Hunt Scraper - Launches, Topics & Makers avatar

Product Hunt Scraper - Launches, Topics & Makers

Under maintenance

Pricing

from $1.00 / 1,000 results

Go to Apify Store
Product Hunt Scraper - Launches, Topics & Makers

Product Hunt Scraper - Launches, Topics & Makers

Under maintenance

Scrape Product Hunt launches via the official GraphQL API. Filter by date, topic, or featured status. Returns name, tagline, description, votes, comments, makers, topics, and links. Built for founders, marketers, VCs, and trend hunters.

Pricing

from $1.00 / 1,000 results

Rating

0.0

(0)

Developer

NIJ KANANI

NIJ KANANI

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

2 days ago

Last modified

Share

๐Ÿฆ„ Product Hunt Scraper

Scrape Product Hunt launches via the official GraphQL API. Filter by date, topic, or featured status. Get name, tagline, votes, comments, makers, topics, links, and media.

๐ŸŽฏ Built for founders, marketers, agencies, VCs, and content creators who track competitor launches and emerging products.


โœจ What you can do

  • ๐Ÿ†• Recent launches โ€” newest first, all categories
  • ๐Ÿท๏ธ By topic โ€” artificial-intelligence, developer-tools, design-tools, etc.
  • โญ Featured launches โ€” only PH-curated home-page features
  • ๐Ÿ“… Date range filter โ€” pull specific weeks or months
  • ๐Ÿ“Š Sort by โ€” RANKING / NEWEST / VOTES / FEATURED_AT

๐Ÿš€ Quick start

{
"mode": "topic",
"topics": ["artificial-intelligence", "developer-tools"],
"postedAfter": "2026-04-01",
"order": "VOTES",
"maxItems": 200,
"developerToken": "your_token_here"
}

๐Ÿ”‘ Get the Developer Token (free, 2 min)

  1. Sign in at https://api.producthunt.com/v2/oauth/applications
  2. Click "ADD AN APPLICATION"
  3. Fill any name (e.g. apify-scraper) + redirect URI http://localhost
  4. After creation, click "CREATE TOKEN" (for testing)
  5. Copy the long token string โ†’ paste in the input field above

Token quota: ~6,000 requests / 15 minutes (plenty for any scrape).


๐Ÿ“ฅ Input

FieldDescription
moderecent / topic / featured
topicsTopic slugs (mode = topic)
postedAfter, postedBeforeISO date range
featuredOnlyOnly PH-featured launches
orderRANKING / NEWEST / VOTES / FEATURED_AT
maxItemsCap per target
developerTokenREQUIRED โ€” see above

๐Ÿ“ค Output (per launch)

{
"id": "12345",
"name": "Awesome Tool",
"tagline": "Does X better than Y",
"description": "Long product description",
"slug": "awesome-tool",
"url": "https://www.producthunt.com/posts/awesome-tool",
"website": "https://awesometool.com",
"votesCount": 1234,
"commentsCount": 87,
"reviewsCount": 12,
"reviewsRating": 4.8,
"createdAt": "2026-04-15T...",
"featuredAt": "2026-04-16T...",
"thumbnail": "https://...",
"media": [{ "url": "https://...", "type": "image" }],
"topics": [{ "name": "Artificial Intelligence", "slug": "artificial-intelligence" }],
"makers": [{ "name": "Founder", "username": "founder", "profileUrl": "https://..." }],
"productLinks": [{ "type": "WEBSITE", "url": "https://awesometool.com" }],
"scrapedAt": "2026-05-06T..."
}

๐ŸŽฏ Use cases

WhoWhy
๐Ÿš€ Indie foundersTrack competitor launches in your niche
๐Ÿ“ˆ MarketersDiscover trending tools to write about
๐Ÿ’ฐ VCs / scoutsEarly-stage signal, identify rising products
๐Ÿ“ฐ JournalistsAuto-build "best new tools" newsletters
๐ŸŽฏ AgenciesOutreach to fresh-launch makers

โš™๏ธ Tech notes

  • Uses Product Hunt's official GraphQL API v2
  • All fields fetched in one paginated query
  • Quota-aware retries with exponential backoff
  • Token never logged, never stored โ€” only sent to Product Hunt's servers