Product Hunt Daily Launches Scraper avatar

Product Hunt Daily Launches Scraper

Pricing

from $3.50 / 1,000 results

Go to Apify Store
Product Hunt Daily Launches Scraper

Product Hunt Daily Launches Scraper

Scrape Product Hunt daily launches with votes, topics, descriptions, screenshots and video links. Supports daily snapshots, date ranges and topic filtering. No API key needed โ€” works out of the box.

Pricing

from $3.50 / 1,000 results

Rating

0.0

(0)

Developer

Logiover

Logiover

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

6 days ago

Last modified

Share

Track every product launch on Product Hunt โ€” the world's largest community for discovering new tech products. Get daily launch data including votes, rankings, makers, topics, pricing and comments via the official Product Hunt GraphQL API v2.


๐Ÿš€ What Is Product Hunt?

Product Hunt is where thousands of makers launch their products every day. Each day's top-voted products get featured on the homepage, making it one of the best signals for discovering emerging tools, SaaS products, AI apps, and developer utilities. Over 4,000 products are launched each month.


๐Ÿ“ฆ What Data Do You Get?

Every product launch record includes:

FieldDescription
nameProduct name
taglineOne-line pitch
descriptionFull product description
urlProduct Hunt post URL
websiteProduct's own website
votesCountTotal upvotes
commentsCountNumber of comments
dailyRankRanking on launch day (#1 = Product of the Day)
weeklyRankRanking for the week
launchDateDate featured on Product Hunt
pricingTypefree / paid / freemium
reviewsCountNumber of user reviews
reviewsRatingAverage review rating
thumbnailUrlThumbnail image URL
topicNamesCategory tags (e.g. AI, Developer Tools, Productivity)
makersFull maker profiles with Twitter, website, follower count
hunterNameWho submitted the product
mediaScreenshots and video URLs
commentsTop comments (optional)

โš™๏ธ Setup: Getting Your API Key

This actor uses the official Product Hunt API โ€” you need free API credentials.

  1. Go to producthunt.com/v2/oauth/applications
  2. Click "Add an Application"
  3. Fill in any name and redirect URI (e.g. https://localhost)
  4. Copy your Client ID and Client Secret
  5. Paste them into the actor input as apiKey and apiSecret

โšก No approval required โ€” credentials are instant for public data access.


โš™๏ธ Input Configuration

{
"apiKey": "your_client_id_here",
"apiSecret": "your_client_secret_here",
"mode": "daily",
"date": "2026-03-14",
"sortBy": "VOTES",
"maxPosts": 100,
"scrapeComments": true,
"maxComments": 20
}

Input Parameters

ParameterTypeDefaultDescription
apiKeystringโ€”Product Hunt API Client ID (required)
apiSecretstringโ€”Product Hunt API Client Secret (required)
accessTokenstringโ€”Alternative: provide a pre-obtained Bearer token
modestringdailydaily / dateRange / topic
datestringtodayTarget date for daily mode: YYYY-MM-DD
dateFromstringโ€”Start date for dateRange mode
dateTostringโ€”End date for dateRange mode
topicstringโ€”Topic slug for topic mode (see below)
sortBystringVOTESVOTES / NEWEST / FEATURED_AT
maxPostsinteger500Max posts to return (0 = unlimited)
scrapeCommentsbooleanfalseInclude top comments for each post
maxCommentsinteger20Max comments per post

Scraping Modes

daily โ€” Get all products launched on a specific day (or today if no date given):

{ "mode": "daily", "date": "2026-03-14" }

dateRange โ€” Get all products launched in a date window:

{ "mode": "dateRange", "dateFrom": "2026-03-01", "dateTo": "2026-03-14" }

topic โ€” Get recent products in a specific category:

{ "mode": "topic", "topic": "artificial-intelligence" }
TopicSlug
Artificial Intelligenceartificial-intelligence
Developer Toolsdeveloper-tools
Productivityproductivity
Marketingmarketing
Design Toolsdesign-tools
SaaSsaas
No-Codeno-code
Chrome Extensionschrome-extensions
Open Sourceopen-source
Fintechfintech

๐Ÿ“ค Output Example

{
"id": "568290",
"name": "Cursor",
"slug": "cursor-3",
"tagline": "The AI-first Code Editor",
"description": "Cursor is a new code editor built for pair-programming with AI...",
"url": "https://www.producthunt.com/posts/cursor-3",
"website": "https://cursor.sh",
"votesCount": 4823,
"commentsCount": 312,
"dailyRank": 1,
"weeklyRank": 3,
"launchDate": "2024-03-14",
"featuredAt": "2024-03-14T07:00:00Z",
"pricingType": "freemium",
"reviewsCount": 89,
"reviewsRating": 4.8,
"thumbnailUrl": "https://ph-files.imgix.net/...",
"topicNames": ["Developer Tools", "Artificial Intelligence", "Productivity"],
"makerNames": ["Aman Sanger", "Sualeh Asif"],
"makerUsernames": ["amansanger", "sualeh"],
"hunterName": "Greg Brockman",
"hunterUsername": "gdb",
"hunterTwitter": "gdb",
"scrapedAt": "2026-03-14T10:00:00.000Z"
}

๐Ÿ’ก Use Cases

๐Ÿ“ˆ Competitor & Market Intelligence

Track what's launching in your category every day. Get alerted when new AI tools, SaaS products, or developer utilities launch โ€” before they hit mainstream press.

๐Ÿค– AI & LLM Training Data

Build datasets of product names, taglines, and descriptions for NLP tasks. Product Hunt's taglines are particularly valuable as short, high-quality product descriptions written by founders.

๐Ÿ“Š Launch Analytics & Trend Detection

Which topics are getting the most traction this month? How many AI tools launch per day? What pricing model dominates in the productivity space? Answer these questions with fresh data.

๐ŸŽฏ Lead Generation & Outreach

Identify founders who just launched products in your target market. The maker profiles include Twitter handles and website URLs โ€” perfect for warm outreach timing.

๐Ÿ“ฐ Newsletter & Content Curation

Power a daily or weekly digest of top Product Hunt launches. Filter by topic, minimum vote threshold, or pricing type to curate the most relevant products for your audience.

๐Ÿ”ฌ Academic Research

Study innovation patterns, startup ecosystems, or the spread of new technology categories. Product Hunt is one of the best longitudinal datasets of tech product launches.

๐Ÿ“ฑ Product Discovery Apps

Build apps that surface the best new tools in specific categories โ€” for developers, designers, marketers, or any niche audience.


๐Ÿ“ˆ Expected Volume

ModeExpected Records
Daily (typical day)20โ€“60 products
Date range (1 month)600โ€“1,800 products
Topic (recent posts)20โ€“500 products
With commentsEach post + up to N comment records

Product Hunt features approximately 20โ€“60 products per day on the homepage. Many more are submitted but not featured.


๐Ÿ”ง Technical Notes

  • API: Official Product Hunt GraphQL API v2 at https://api.producthunt.com/v2/api/graphql
  • Auth: OAuth 2.0 client_credentials flow โ€” token obtained automatically from your API key
  • Pagination: Cursor-based, handles any volume of results
  • Rate limits: PH API uses complexity-based rate limiting (1000 complexity per query). This actor stays well within limits with 20 posts per page
  • No proxy needed for the API โ€” calls go directly to api.producthunt.com
  • Dates: Product Hunt uses PST timezone for its daily featured cycle

โš ๏ธ Important Notes

  • Product Hunt's API does not expose maker Twitter handles due to privacy policy changes (as of 2023). The twitterUsername field may be null for maker profiles.
  • The dailyRank field reflects the product's ranking at the time of scraping โ€” it may change throughout the day as more votes come in.
  • By default, the Product Hunt API is not licensed for commercial use without explicit permission from Product Hunt. Contact hello@producthunt.com for commercial licensing.