Install
openclaw skills install find-productsSearch and discover trending products from ProductHunt with structured analysis data. Use when users ask about product recommendations, tool comparisons, or trending apps.
openclaw skills install find-productsSearch ProductHunt products with structured analysis from trend-hunt.com.
Trigger this skill when the user:
Make a GET request to the search API:
curl -s "https://trend-hunt.com/api/search?q=QUERY&locale=LOCALE&limit=LIMIT&category=CATEGORY"
| Parameter | Required | Default | Description |
|---|---|---|---|
q | Yes | — | Search keywords (supports English and Chinese) |
locale | No | en | Language: en or zh |
limit | No | 10 | Number of results (1–20) |
category | No | — | Filter by category |
AI, Productivity, Developer Tools, Design, Marketing, Analytics, Writing, Video, Audio, Education, Finance, Social, Health, E-commerce
The API returns JSON:
{
"success": true,
"query": "video editor",
"locale": "en",
"count": 5,
"products": [
{
"slug": "product-slug",
"name": "Product Name",
"tagline": "Short description",
"category": "AI",
"upvotes": 523,
"hypeScore": 85,
"utilityScore": 78,
"metaphor": "It's like Canva but for video editing",
"phUrl": "https://www.producthunt.com/posts/product-slug",
"websiteUrl": "https://product.com",
"positiveReviews": ["Great UI", "Fast rendering"],
"negativeReviews": ["Limited free tier"],
"newbieQA": [...],
"translations": [...]
}
]
}
Format each product as:
### Product Name
⭐ Upvotes: 523 | Hype: 85 | Utility: 78
> Metaphor: "It's like Canva but for video editing"
**Tagline**: Short description
**Category**: AI
**Pros**: Great UI, Fast rendering
**Cons**: Limited free tier
🔗 [ProductHunt](phUrl) | [Website](websiteUrl)
curl -s "https://trend-hunt.com/api/search?q=AI+writing&locale=en&limit=5"
curl -s "https://trend-hunt.com/api/search?q=视频编辑&locale=zh&limit=5"
curl -s "https://trend-hunt.com/api/search?q=automation&category=Productivity&limit=10"
locale=zh, translated fields appear in the translations arrayhypeScore = community excitement; utilityScore = practical valuemetaphor field gives a quick "it's like X for Y" comparison