Product Hunt
Overview
Product discovery platform — daily curated tech products, tools, and startups with community voting.
Workflows
Browse today's featured products
getToday → name, tagline, votesCount, dailyRank, slug
Search and explore products
searchProducts(query) → slug, name, reviewsRating
getPost(slug) → description, makers, categories, votesCount
Browse posts by time section
getPosts(section) → slug, name, tagline, votesCount, dailyRank
getPost(slug) → description, makers, categories
Operations
| Operation |
Intent |
Key Input |
Key Output |
Notes |
| getToday |
today's featured products |
— |
name, tagline, slug, votesCount, dailyRank, topics |
entry point |
| getPosts |
featured posts by section |
section? (TODAY default) |
name, tagline, slug, votesCount, dailyRank |
entry point, supports YESTERDAY/LAST_WEEK/LAST_MONTH |
| getPost |
product details |
slug ← getToday/getPosts/searchProducts |
name, description, votesCount, makers, categories |
|
| searchProducts |
find products by keyword |
query |
name, tagline, slug, reviewsRating |
entry point |
Quick Start
# Today's featured products
openweb producthunt exec getToday '{}'
# Yesterday's top products
openweb producthunt exec getPosts '{"section": "YESTERDAY"}'
# Search for products
openweb producthunt exec searchProducts '{"query": "ai"}'
# Get a specific product's details
openweb producthunt exec getPost '{"slug": "novavoice"}'
1---2name: producthunt3description: Product Hunt4---5# Product Hunt67## Overview8Product discovery platform — daily curated tech products, tools, and startups with community voting.910## Workflows1112### Browse today's featured products131. `getToday` → `name`, `tagline`, `votesCount`, `dailyRank`, `slug`1415### Search and explore products161. `searchProducts(query)` → `slug`, `name`, `reviewsRating`172. `getPost(slug)` → `description`, `makers`, `categories`, `votesCount`1819### Browse posts by time section201. `getPosts(section)` → `slug`, `name`, `tagline`, `votesCount`, `dailyRank`212. `getPost(slug)` → `description`, `makers`, `categories`2223## Operations2425| Operation | Intent | Key Input | Key Output | Notes |26|-----------|--------|-----------|------------|-------|27| getToday | today's featured products | — | name, tagline, slug, votesCount, dailyRank, topics | entry point |28| getPosts | featured posts by section | section? (TODAY default) | name, tagline, slug, votesCount, dailyRank | entry point, supports YESTERDAY/LAST_WEEK/LAST_MONTH |29| getPost | product details | slug ← getToday/getPosts/searchProducts | name, description, votesCount, makers, categories | |30| searchProducts | find products by keyword | query | name, tagline, slug, reviewsRating | entry point |3132## Quick Start3334```bash35# Today's featured products36openweb producthunt exec getToday '{}'3738# Yesterday's top products39openweb producthunt exec getPosts '{"section": "YESTERDAY"}'4041# Search for products42openweb producthunt exec searchProducts '{"query": "ai"}'4344# Get a specific product's details45openweb producthunt exec getPost '{"slug": "novavoice"}'46```