Product Hunt is the go-to platform for tech launches.
Product Hunt API (GraphQL, Free)
async function getTopProducts(token) {
const res = await fetch("https://api.producthunt.com/v2/api/graphql", {
method: "POST",
headers: { Authorization: `Bearer ${token}`, "Content-Type": "application/json" },
body: JSON.stringify({ query: `{ posts(order: VOTES) { edges { node { name tagline votesCount url } } } }` })
});
return res.json();
}
Data: name, tagline, upvotes, URL, maker, category, comments
Use Cases
- Competitor tracking
- Trend detection
- Launch strategy research
- Community outreach
Resources
Need startup or Product Hunt data? $20. Email: Spinov001@gmail.com | Hire me
Top comments (0)