Product Hunt Data API

23 dedicated endpoints spanning products, launches, users, topics, collections, categories, and forums โ€” the complete Product Hunt data surface for launch monitoring, maker intelligence, and competitive research.

23 endpoints 7 data families POST ยท JSON ยท access-token Base URL: api.anysite.io

What Product Hunt Unlocks

Product Hunt is where developers launch tools, founders hunt competitors, and early adopters signal intent. Most of that signal โ€” upvotes, stack choices, review sentiment, forum discussion โ€” is locked behind the UI. These endpoints structure the entire platform into JSON: product profiles, launch detail, maker and hunter identity, community discussion, and the taxonomy that organizes it all.

All Product Hunt Endpoints

All endpoints use POST with a JSON body and an access-token header (not Bearer). Base URL: https://api.anysite.io.

Products family

EndpointWhat It ReturnsCost
/api/producthunt/products/searchKeyword search across PH products โ€” id, name, tagline, alias, url, rating, review_count, image1 credit
/api/producthunt/productsFull product profile: profile data, categories, pricing, social links, AI-tagged pros/cons, makers list5 credits
/api/producthunt/products/reviewsUser reviews with 4-dimension rating breakdown, sentiment text, reviewer-named alternatives1 credit
/api/producthunt/products/alternativesAI-ranked competitor products with similarity scores (embedding, category, rating)1 credit
/api/producthunt/products/customersReverse stack โ€” products that use this product, each with a testimonial shoutout1 credit
/api/producthunt/products/launchesFull launch history for a product: ranks, vote counts, awards (Golden Kitty / TopPost)1 credit

Launches family

EndpointWhat It ReturnsCost
/api/producthunt/launchesFull launch detail: hunter, makers, topics, media, badges, vote/comment counts, launch state1 credit
/api/producthunt/launches/commentsLaunch discussion thread โ€” makers, hunters, and community replies with nested structure1 credit
/api/producthunt/launches/searchSearch launches by keyword and optional topic filter1 credit
/api/producthunt/leaderboardsTop-ranked launches for daily / weekly / monthly / yearly periods1 credit

Users family

EndpointWhat It ReturnsCost
/api/producthunt/usersFull user profile: reputation, Kitty Points rankings, badges, social links, products made1 credit
/api/producthunt/users/commentsComments a user posted โ€” each with launch context and parent product1 credit
/api/producthunt/users/launchesMaker's full launch history across all their products1 credit
/api/producthunt/users/upvotesLaunches a user upvoted โ€” intent and affinity signal1 credit
/api/producthunt/users/stacksProducts in a user's stack โ€” what they actually use1 credit
/api/producthunt/users/collectionsCurated product lists a user created1 credit

Topics, Collections, Categories, Forums

EndpointWhat It ReturnsCost
/api/producthunt/topicsTopic page (e.g. artificial-intelligence) with top products and sub-topics1 credit
/api/producthunt/collectionsCurated collection with curator profile and product list1 credit
/api/producthunt/collections/searchBrowse or keyword-search all PH collections1 credit
/api/producthunt/categoriesCategory page with top products and sub-categories1 credit
/api/producthunt/categories/listFull category taxonomy tree1 credit
/api/producthunt/forums/searchForum thread search โ€” global feed, per-forum, or keyword-filtered1 credit
/api/producthunt/forums/threadsSingle forum thread with nested comment tree1 credit

What You Can Build

Launch Monitoring

Track any product's rank trajectory across daily, weekly, and monthly leaderboards. Pull vote velocity, comment activity, and award badges as they land. Combine with launches/comments to surface maker responses and community sentiment in real time.

Maker and Hunter Intelligence

Every launch surfaces its hunter and makers. Cross-reference with users to get their Twitter username, social links, Kitty Points rank, and stack. Chain to users/stacks and users/upvotes for tool preferences and product affinities โ€” the richest intent signal on the platform.

Competitive Research

products/alternatives returns AI-ranked competitors with similarity scores. products/reviews includes reviewer-named alternatives and a 4-dimension rating breakdown. products/customers maps the reverse stack โ€” who uses your competitor and what they say about it.

Market and Trend Discovery

Use launches/search, topics, and categories to map the product landscape in any space. forums/search and forums/threads expose what the PH community is actually discussing โ€” a signal that predates mainstream coverage.

Common Workflows

Track a new launch from leaderboard to detail
# 1. Get today's top launches
anysite api /api/producthunt/leaderboards period=daily date=2026/6/15 count=10

# 2. Pull full detail for a specific launch
anysite api /api/producthunt/launches launch=granola-2-0

# 3. Read the discussion thread
anysite api /api/producthunt/launches/comments launch=granola-2-0 count=50
From a launch to a maker's full profile
# 1. Get launch โ€” surfaces makers[] and hunter
anysite api /api/producthunt/launches launch=granola-2-0

# 2. Pull maker profile (twitter_username, social links, KP rank)
anysite api /api/producthunt/users user=mehedi

# 3. Check their stack โ€” what they use
anysite api /api/producthunt/users/stacks user=mehedi count=20

# 4. Check their upvotes โ€” what they like
anysite api /api/producthunt/users/upvotes user=mehedi count=20
Map the competitive landscape for a product
# 1. Get the product profile + rating
anysite api /api/producthunt/products product=granola

# 2. AI-ranked alternatives with similarity scores
anysite api /api/producthunt/products/alternatives product=granola count=10

# 3. Reviewer-named alternatives + feature-level ratings
anysite api /api/producthunt/products/reviews product=granola count=25

# 4. Who uses it (reverse stack + testimonials)
anysite api /api/producthunt/products/customers product=granola count=10

Pricing

Credits are shared across all Anysite endpoints. Most Product Hunt endpoints cost 1 credit per call. The full product profile (/products) costs 5 credits due to its depth.

Use CaseTypical CallsApprox. Cost
Daily leaderboard snapshot (top 20)1 leaderboards + 20 launches~21 credits
Full competitive map (1 product)1 products + 1 alternatives + 1 reviews + 1 customers~8 credits
Maker outreach batch (10 makers)10 users + 10 stacks + 10 upvotes~30 credits
Topic landscape (1 category)1 topics + 1 launches/search~2 credits

Frequently Asked Questions

What is the difference between a product and a launch?
A product is the persistent tool listed on Product Hunt (e.g. Granola). A launch is one release event for it โ€” the same product can have multiple launches over time. Use products/* endpoints when you need the product as a whole; use launches/* when you need a specific release event. products/launches bridges the two.
How do I identify a product or launch?
Products and launches are identified by their slug (alias) or full URL. For example, product=granola or product=https://www.producthunt.com/products/granola. Users accept a username (user=mehedi), @username, or profile URL.
Can I get who upvoted a specific launch?
No โ€” the per-launch upvoter list is not exposed by Product Hunt. What is available is the reverse: users/upvotes returns what a given user has upvoted. Commenters on a launch are fully available via launches/comments.
Is authentication required?
Yes. All endpoints require an access-token header with your Anysite API key. This is not a Bearer token โ€” pass it directly as the access-token header value. Get your key at anysite.io/pricing.
How do I search launches by topic?
Use /api/producthunt/launches/search with the topic parameter set to the display name in title case โ€” for example topic=Artificial Intelligence or topic=Productivity. Do not use the URL slug form.

Related Endpoints

Start pulling Product Hunt data

Get structured access to launches, makers, products, and community discussion โ€” one API call at a time.