find-products
Search ProductHunt products with structured analysis from trend-hunt.com.
When to Use
Trigger this skill when the user:
- - Asks for product or tool recommendations (e.g., "What are the best AI video tools?")
- Wants to compare products in a category
- Asks about trending products or apps
- Needs to find alternatives to a specific product
- Asks "what tools exist for X"
How to Search
Make a GET request to the search API:
CODEBLOCK0
Parameters
| Parameter | Required | Default | Description |
|---|
| INLINECODE0 | Yes | — | Search keywords (supports English and Chinese) |
| INLINECODE1 |
No |
en | Language:
en or
zh |
|
limit | No |
10 | Number of results (1–20) |
|
category | No | — | Filter by category |
Common Categories
INLINECODE8 , Productivity, Developer Tools, Design, Marketing, Analytics, Writing, Video, Audio, Education, Finance, Social, Health, INLINECODE21
Response Format
The API returns JSON:
CODEBLOCK1
How to Present Results
Format each product as:
CODEBLOCK2
Examples
Example 1: Find AI writing tools
CODEBLOCK3
Example 2: Search in Chinese
CODEBLOCK4
Example 3: Filter by category
CODEBLOCK5
Tips
- - Use English keywords for broader results; the database has more English content
- When
locale=zh, translated fields appear in the translations array - Products are sorted by upvotes (most popular first)
- INLINECODE24 = community excitement;
utilityScore = practical value - The
metaphor field gives a quick "it's like X for Y" comparison - If no results are found, try broader or alternative keywords
find-products
通过 trend-hunt.com 的结构化分析搜索 ProductHunt 产品。
使用时机
当用户出现以下情况时触发此技能:
- - 询问产品或工具推荐(例如:最好的 AI 视频工具有哪些?)
- 想要比较某个类别中的产品
- 询问热门产品或应用
- 需要寻找特定产品的替代品
- 询问有哪些工具可以做 X
搜索方法
向搜索 API 发送 GET 请求:
bash
curl -s https://trend-hunt.com/api/search?q=QUERY&locale=LOCALE&limit=LIMIT&category=CATEGORY
参数
| 参数 | 必填 | 默认值 | 描述 |
|---|
| q | 是 | — | 搜索关键词(支持英文和中文) |
| locale |
否 | en | 语言:en 或 zh |
| limit | 否 | 10 | 结果数量(1–20) |
| category | 否 | — | 按类别筛选 |
常见类别
AI、生产力、开发者工具、设计、营销、分析、写作、视频、音频、教育、金融、社交、健康、电子商务
响应格式
API 返回 JSON:
json
{
success: true,
query: 视频编辑器,
locale: en,
count: 5,
products: [
{
slug: product-slug,
name: 产品名称,
tagline: 简短描述,
category: AI,
upvotes: 523,
hypeScore: 85,
utilityScore: 78,
metaphor: 它就像 Canva,但用于视频编辑,
phUrl: https://www.producthunt.com/posts/product-slug,
websiteUrl: https://product.com,
positiveReviews: [优秀界面, 快速渲染],
negativeReviews: [免费版功能有限],
newbieQA: [...],
translations: [...]
}
]
}
如何展示结果
按以下格式展示每个产品:
产品名称
⭐ 点赞数:523 | 热度:85 | 实用性:78
比喻:它就像 Canva,但用于视频编辑
标语:简短描述
类别:AI
优点:优秀界面、快速渲染
缺点:免费版功能有限
🔗 ProductHunt | 网站
示例
示例 1:查找 AI 写作工具
bash
curl -s https://trend-hunt.com/api/search?q=AI+writing&locale=en&limit=5
示例 2:中文搜索
bash
curl -s https://trend-hunt.com/api/search?q=视频编辑&locale=zh&limit=5
示例 3:按类别筛选
bash
curl -s https://trend-hunt.com/api/search?q=automation&category=Productivity&limit=10
提示
- - 使用英文关键词可获得更广泛的结果;数据库中有更多英文内容
- 当 locale=zh 时,翻译字段会出现在 translations 数组中
- 产品按点赞数排序(最热门优先)
- hypeScore = 社区热度;utilityScore = 实用价值
- metaphor 字段提供快速的它就像 X 用于 Y的对比
- 如果未找到结果,请尝试更广泛或替代的关键词