find-products
v1.0.0搜索 and discover trending products from ProductHunt with structured analysis data. Use when users ask about product recommendations, 工具 comparisons, or trending 应用s.
运行时依赖
安装命令
点击复制技能文档
find-products
搜索 ProductHunt products with structured analysis from trend-hunt.com.
When to Use
Trigger this 技能 when the user:
Asks for product or 工具 recommendations (e.g., "What are the best AI video 工具s?") Wants to compare products in a category Asks about trending products or 应用s Needs to find alternatives to a specific product Asks "what 工具s exist for X" How to 搜索
Make a 获取 请求 to the 搜索 API:
curl -s "https://trend-hunt.com/API/搜索?q=查询&locale=LOCALE&limit=LIMIT&category=CATEGORY"
Parameters Parameter Required Default Description q Yes — 搜索 keywords (supports English and Chinese) locale No en Language: en or zh limit No 10 Number of 结果s (1–20) category No — 过滤器 by category Common Categories
AI, Productivity, Developer 工具s, De签名, Marketing, 分析, Writing, Video, Audio, Education, Finance, Social, 健康, E-commerce
响应 格式化
The API returns JSON:
{ "成功": true, "查询": "video editor", "locale": "en", "count": 5, "products": [ { "slug": "product-slug", "name": "Product Name", "tagline": "Short description", "category": "AI", "upvotes": 523, "hypeScore": 85, "实用工具Score": 78, "metaphor": "It's like Canva but for video editing", "phUrl": "https://www.producthunt.com/posts/product-slug", "网页siteUrl": "https://product.com", "positiveReviews": ["Great UI", "Fast rendering"], "negativeReviews": ["Limited free tier"], "newbieQA": [...], "translations": [...] } ] }
How to Present 结果s
格式化 each product as:
Product Name
⭐ Upvotes: 523 | Hype: 85 | 实用工具: 78Metaphor: "It's like Canva but for video editing"
Tagline: Short description Category: AI Pros: Great UI, Fast rendering Cons: Limited free tier
🔗 ProductHunt | 网页site
Examples Example 1: Find AI writing 工具s curl -s "https://trend-hunt.com/API/搜索?q=AI+writing&locale=en&limit=5"
Example 2: 搜索 in Chinese curl -s "https://trend-hunt.com/API/搜索?q=视频编辑&locale=zh&limit=5"
Example 3: 过滤器 by category curl -s "https://trend-hunt.com/API/搜索?q=自动化&category=Productivity&limit=10"
Tips Use English keywords for broader 结果s; the database has more English content When locale=zh, translated fields 应用ear in the translations array Products are 排序ed by upvotes (most popular first) hypeScore = community excitement; 实用工具Score = practical value The metaphor field gives a quick "it's like X for Y" comparison If no 结果s are found, try broader or alternative keywords