ProductHunt Scraper | $0.90/1K | Real-Time Product Data avatar

ProductHunt Scraper | $0.90/1K | Real-Time Product Data

Pricing

from $0.90 / 1,000 results

Go to Apify Store
ProductHunt Scraper | $0.90/1K | Real-Time Product Data

ProductHunt Scraper | $0.90/1K | Real-Time Product Data

Scrape ProductHunt: specific URLs, daily leaderboard, keyword search, maker portfolio, topic top products. Returns upvotes, reviews, makers, hunter, gallery, badges, ranking, tech stack signals, sentiment score, upvote velocity, competitor analysis. $0.0009/result.

Pricing

from $0.90 / 1,000 results

Rating

0.0

(0)

Developer

Apivault Labs

Apivault Labs

Maintained by Community

Actor stats

1

Bookmarked

4

Total users

1

Monthly active users

19 hours ago

Last modified

Share

ProductHunt Scraper | Leaderboard, Search, Makers & Ranking

Scrape ProductHunt products via the direct GraphQL API. Three modes: specific product URLs, daily leaderboard, keyword search.

🚀 Three modes

1. Product URLs

Scrape specific product pages:

{
"mode": "urls",
"productUrls": [
"https://www.producthunt.com/posts/chatgpt",
"https://www.producthunt.com/posts/notion"
]
}

2. Daily Leaderboard ⭐

Get top products for any date:

{
"mode": "leaderboard",
"date": "2026-05-22",
"limit": 50
}

Leave date empty for today's leaderboard.

Find products by keyword:

{
"mode": "search",
"searchQuery": "AI writing tool",
"limit": 20
}

📦 Output fields (30+)

FieldDescription
productNameProduct title
taglineShort description
descriptionFull description
websiteProduct website URL
upvotesUpvote count
commentsCountComment count
reviewsCountReview count
ratingAverage rating (0-5)
followersFollower count
topics[]Category list (structured)
topicsStrCategories as comma string
makers[]{name, username, headline, profileImage} per maker
makersStrMakers as comma string
hunter{name, username} — who posted it
imageThumbnail URL
gallery[]Screenshot/media URLs
pricingFree / Paid / Freemium / Subscription
badges[]PH badges (Product of the Day, etc.)
isFeaturedWas it featured?
featuredAtFeatured timestamp
launchDateLaunch date (YYYY-MM-DD)
dailyRankRank on launch day
weeklyRankRank for the week
popularityScore0-100 composite score
productIdPH internal ID
slugURL slug
dataSource"graphql" or "rendered"

📖 Sample output

{
"success": true,
"productName": "ChatGPT",
"tagline": "An AI-powered chatbot by OpenAI",
"website": "https://chat.openai.com",
"upvotes": 5234,
"commentsCount": 312,
"reviewsCount": 189,
"rating": 4.8,
"followers": 12400,
"topics": ["Artificial Intelligence", "Productivity", "Chatbots"],
"topicsStr": "Artificial Intelligence, Productivity, Chatbots",
"makers": [
{"name": "Sam Altman", "username": "sama", "headline": "CEO at OpenAI", "profileImage": "..."}
],
"makersStr": "Sam Altman",
"hunter": {"name": "Greg Brockman", "username": "gdb"},
"image": "https://ph-files.imgix.net/...",
"gallery": ["https://...", "https://..."],
"pricing": "Free",
"badges": ["Product of the Day", "Product of the Week"],
"isFeatured": true,
"featuredAt": "2022-11-30T00:00:00Z",
"launchDate": "2022-11-30",
"dailyRank": 1,
"weeklyRank": 1,
"popularityScore": 97,
"productId": "12345",
"slug": "chatgpt",
"dataSource": "graphql"
}

💼 Use cases

  • Startup research — track what's launching in your niche
  • Competitor monitoring — watch competitor launches and upvote velocity
  • Daily digest — pull today's top 50 products automatically
  • Maker research — find prolific makers and their products
  • Trend analysis — search by keyword to see what's popular
  • Investment research — track traction signals (upvotes, reviews, badges)

💰 Pricing

$0.90 per 1000 products ($0.0009 per result) — pay-per-event.

🔧 How it works

  1. GraphQL API (primary) — direct queries to ProductHunt's public GraphQL endpoint. Fast, structured, returns all fields including ranking and gallery.
  2. Rendering fallback — for any URL that GraphQL can't resolve.