Golden Kitty Awards 2026 - Nominations are now open! Submit your favorite products →
Launches Products News Community Advertise
Daily Streak: 7 days
Submit a Product
Type to search launches & products...
Documentation

GraphQL API Reference

Integrate with the Product Hunt catalog, pull voting structures, fetch maker details, and analyze launch datasets programmatically.

GraphQL Query Example

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
        }
      }
    }
  }
}