Integrate with the Product Hunt catalog, pull voting structures, fetch maker details, and analyze launch datasets programmatically.
Make a POST request to https://api.producthunt.com/v2/api/graphql with your OAuth Bearer Token in headers.
query {
posts(first: 5, order: VOTES) {
edges {
node {
name
tagline
votesCount
makers {
name
}
}
}
}
}
Generate API Keys