producthunt by dylanfeltus/skills
npx skills add https://github.com/dylanfeltus/skills --skill producthunt通过 GraphQL V2 API 搜索产品、追踪发布动态并监控 Product Hunt 活动。
需要 API 令牌。 Product Hunt API 需要身份验证——但它是免费的,设置大约只需 2 分钟。
PH_API_TOKEN如果没有可用的令牌,则回退到使用 web_search 配合 site:producthunt.com 查询。
Product Hunt API 不支持对帖子进行自由文本搜索。您可以按主题、日期浏览,或通过 slug 获取特定帖子——但您无法搜索“AI 写作工具”并获取匹配的产品。
要通过名称查找产品,请先使用 :
广告位招租
在这里展示您的产品或服务
触达数万 AI 开发者,精准高效
web_searchweb_search: site:producthunt.com/posts "产品名称"
然后使用结果中的 slug 查询 API 以获取完整详情(投票数、评论、制作者等)。
https://api.producthunt.com/v2/api/graphqlAuthorization: Bearer {token}使用 exec 配合 curl 发送 GraphQL 请求:
curl -s -X POST https://api.producthunt.com/v2/api/graphql \
-H "Authorization: Bearer $PH_API_TOKEN" \
-H "Content-Type: application/json" \
-d '{"query": "YOUR_GRAPHQL_QUERY"}'
query {
posts(order: VOTES, first: 10) {
edges {
node {
id
name
tagline
votesCount
commentsCount
url
website
createdAt
makers {
name
username
}
topics {
edges {
node {
name
}
}
}
}
}
}
}
query {
posts(order: VOTES, first: 10, topic: "developer-tools") {
edges {
node {
id
name
tagline
votesCount
url
website
}
}
}
}
请记住: 这是按主题浏览——不是文本搜索。要通过名称查找特定产品,请使用 web_search 配合 site:producthunt.com/posts "产品名称",然后通过 API 根据 slug 查找该帖子。
query {
post(slug: "chatgpt") {
id
name
tagline
description
votesCount
commentsCount
reviewsCount
reviewsRating
url
website
createdAt
featuredAt
makers {
name
username
headline
}
topics {
edges {
node {
name
slug
}
}
}
comments(first: 5) {
edges {
node {
body
votesCount
createdAt
user {
name
username
}
}
}
}
}
}
query {
topic(slug: "artificial-intelligence") {
name
postsCount
posts(first: 10, order: VOTES) {
edges {
node {
name
tagline
votesCount
url
createdAt
}
}
}
}
}
query {
posts(postedAfter: "2024-01-15T00:00:00Z", postedBefore: "2024-01-16T00:00:00Z", order: VOTES, first: 10) {
edges {
node {
name
tagline
votesCount
url
}
}
}
}
query {
user(username: "rrhoover") {
name
username
headline
followersCount
followingCount
madePosts(first: 5) {
edges {
node {
name
tagline
votesCount
url
}
}
}
}
}
artificial-intelligence, developer-tools, design-toolsproductivity, marketing, saas, fintechno-code, open-source, social-mediaweb-app, iphone, android, mac, chrome-extensions要获取完整列表,请查询:
query { topics(first: 50, order: FOLLOWERS_COUNT) { edges { node { name slug followersCount } } } }
https://www.producthunt.com/posts/{slug}https://www.producthunt.com/@{username}https://www.producthunt.com/topics/{slug}如果没有可用的 PH_API_TOKEN:
web_search 配合以下查询:
site:producthunt.com/posts "产品名称"site:producthunt.com "主题" launchedweb_fetch 以获取基本信息### Product Hunt 结果
1. **产品名称** — 标语
🔼 投票数 · 💬 评论数 · ⭐ 评分
制作者 @maker_username
主题:AI, 开发者工具
🔗 product_url
🏠 website_url
📅 launched_date
2. ...
PH_API_TOKEN。comments、topics 或 makers 子查询。web_search 搜索以确认确切的 slug。查询今日按投票数排序的帖子,展示前 10 个。
web_search "site:producthunt.com/posts linear"post(slug: "linear-5") 以获取完整详情artificial-intelligence 的帖子Product Hunt API V2 — GraphQL API,需要免费的开发者令牌。
每周安装量
179
代码仓库
GitHub 星标数
173
首次出现
2026年2月19日
安全审计
安装于
gemini-cli171
codex171
opencode171
github-copilot166
cursor165
kimi-cli163
Search for products, track launches, and monitor Product Hunt activity via the GraphQL V2 API.
API Token Required. The Product Hunt API requires authentication — but it's free and takes ~2 minutes to set up.
PH_API_TOKENIf no token is available, fall back to using web_search with site:producthunt.com queries.
The Product Hunt API does not support free-text search on posts. You can browse by topic, date, or get a specific post by slug — but you cannot search "AI writing tool" and get matching products.
To find a product by name , use web_search first:
web_search: site:producthunt.com/posts "product name"
Then use the slug from the result to query the API for full details (votes, comments, makers, etc.).
https://api.producthunt.com/v2/api/graphqlAuthorization: Bearer {token}Use exec with curl to make GraphQL requests:
curl -s -X POST https://api.producthunt.com/v2/api/graphql \
-H "Authorization: Bearer $PH_API_TOKEN" \
-H "Content-Type: application/json" \
-d '{"query": "YOUR_GRAPHQL_QUERY"}'
query {
posts(order: VOTES, first: 10) {
edges {
node {
id
name
tagline
votesCount
commentsCount
url
website
createdAt
makers {
name
username
}
topics {
edges {
node {
name
}
}
}
}
}
}
}
query {
posts(order: VOTES, first: 10, topic: "developer-tools") {
edges {
node {
id
name
tagline
votesCount
url
website
}
}
}
}
Remember: This browses a topic — it's not a text search. To find a specific product by name, use web_search with site:producthunt.com/posts "product name", then look up the post by slug via the API.
query {
post(slug: "chatgpt") {
id
name
tagline
description
votesCount
commentsCount
reviewsCount
reviewsRating
url
website
createdAt
featuredAt
makers {
name
username
headline
}
topics {
edges {
node {
name
slug
}
}
}
comments(first: 5) {
edges {
node {
body
votesCount
createdAt
user {
name
username
}
}
}
}
}
}
query {
topic(slug: "artificial-intelligence") {
name
postsCount
posts(first: 10, order: VOTES) {
edges {
node {
name
tagline
votesCount
url
createdAt
}
}
}
}
}
query {
posts(postedAfter: "2024-01-15T00:00:00Z", postedBefore: "2024-01-16T00:00:00Z", order: VOTES, first: 10) {
edges {
node {
name
tagline
votesCount
url
}
}
}
}
query {
user(username: "rrhoover") {
name
username
headline
followersCount
followingCount
madePosts(first: 5) {
edges {
node {
name
tagline
votesCount
url
}
}
}
}
}
artificial-intelligence, developer-tools, design-toolsproductivity, marketing, saas, fintechno-code, open-source, social-mediaweb-app, , , , For a full list, query:
query { topics(first: 50, order: FOLLOWERS_COUNT) { edges { node { name slug followersCount } } } }
https://www.producthunt.com/posts/{slug}https://www.producthunt.com/@{username}https://www.producthunt.com/topics/{slug}If no PH_API_TOKEN is available:
web_search with queries like:
site:producthunt.com/posts "product name"site:producthunt.com "topic" launchedweb_fetch on specific Product Hunt URLs to get basic info### Product Hunt Results
1. **Product Name** — Tagline
🔼 votes · 💬 comments · ⭐ rating
By @maker_username
Topics: AI, Developer Tools
🔗 product_url
🏠 website_url
📅 launched_date
2. ...
PH_API_TOKEN.comments, topics, or makers sub-queries.web_search first to confirm the exact slug.Query today's posts sorted by votes, present top 10.
web_search "site:producthunt.com/posts linear"post(slug: "linear-5") with full detailsartificial-intelligence with date filtersProduct Hunt API V2 — GraphQL API, requires free developer token.
Weekly Installs
179
Repository
GitHub Stars
173
First Seen
Feb 19, 2026
Security Audits
Gen Agent Trust HubPassSocketPassSnykWarn
Installed on
gemini-cli171
codex171
opencode171
github-copilot166
cursor165
kimi-cli163
lark-cli 共享规则:飞书资源操作指南与权限配置详解
39,000 周安装
Angular SignalStore 最佳实践 - NgRx 信号状态管理规则与技巧
222 周安装
lp-agent:自动化流动性提供策略工具 | Hummingbot API 与 Solana DEX 集成
217 周安装
SkyPilot 多云编排指南:跨 AWS/GCP/Azure 自动优化机器学习成本与分布式训练
215 周安装
邮件序列设计指南:自动化营销策略、模板与最佳实践 | 提升转化率
218 周安装
开发者成长分析工具 - 基于Claude Code聊天历史识别编码模式和改进领域
218 周安装
高级全栈开发技能:项目脚手架与代码质量分析工具,快速搭建Next.js/FastAPI/MERN项目
215 周安装
iphoneandroidmacchrome-extensions