Product Hunt
產品發佈平台 — 排行榜、搜尋、產品詳情與評論。
- 排行榜:瀏覽每日/每週/每月/每年熱門產品
- 搜尋:依關鍵字搜尋產品
- 產品:依 slug 取得詳細產品資訊
- 評論:取得產品的用戶評論
排行榜
GET /producthunt/posts — 4 點數
取得 Product Hunt 排行榜產品,可依日期與時間區間篩選。
| 參數 | 類型 | 必填 | 預設 | 說明 |
|---|---|---|---|---|
count | integer | 否 | 20 | 產品數量(最多 50) |
date | string | 否 | — | 篩選日期(YYYY-MM-DD) |
period | string | 否 | daily | 排行榜區間:daily、weekly、monthly、yearly |
cURL
curl -H "x-api-key: sk_byc_xxx" \
"https://api.bycrawl.com/producthunt/posts?count=10&period=daily"回應
{
"posts": [
{
"name": "Lovable",
"slug": "lovable",
"tagline": "The world's first AI Fullstack Engineer",
"url": "https://www.producthunt.com/products/lovable",
"phUrl": "https://www.producthunt.com/products/lovable",
"topics": [{ "name": "AI", "slug": "artificial-intelligence" }],
"votesCount": 100,
"commentsCount": 20
}
],
"title": "Best of Product Hunt | March 18, 2026",
"date": "2026-03-18",
"period": "daily",
"totalResults": 15
}搜尋
GET /producthunt/posts/search — 4 點數
依關鍵字搜尋 Product Hunt 產品。
| 參數 | 類型 | 必填 | 預設 | 說明 |
|---|---|---|---|---|
q | string | 是 | — | 搜尋關鍵字 |
count | integer | 否 | 20 | 結果數量(最多 50) |
cURL
curl -H "x-api-key: sk_byc_xxx" \
"https://api.bycrawl.com/producthunt/posts/search?q=AI&count=10"回應
{
"query": "AI",
"products": [
{
"name": "Lovable",
"slug": "lovable",
"tagline": "The world's first AI Fullstack Engineer",
"url": "https://www.producthunt.com/products/lovable",
"phUrl": "https://www.producthunt.com/products/lovable",
"thumbnailUrl": "https://ph-files.imgix.net/..."
}
],
"totalResults": 1
}產品
GET /producthunt/posts/:slug — 4 點數
依 slug 取得 Product Hunt 產品。
| 參數 | 類型 | 必填 | 預設 | 說明 |
|---|---|---|---|---|
slug | string | 是 | — | 產品 slug(例如 lovable) |
cURL
curl -H "x-api-key: sk_byc_xxx" \
https://api.bycrawl.com/producthunt/posts/lovable回應
{
"name": "Lovable",
"slug": "lovable",
"tagline": "The world's first AI Fullstack Engineer",
"description": "Lovable is an AI-powered platform...",
"phUrl": "https://www.producthunt.com/products/lovable",
"website": "https://lovable.dev",
"votesCount": 3245,
"overallRating": 4.7,
"reviewCount": 167,
"topics": [
{ "name": "Artificial Intelligence", "slug": "artificial-intelligence" }
],
"makers": [
{
"name": "Anton Osika",
"username": "antonosika",
"profileUrl": "https://www.producthunt.com/@antonosika"
}
],
"thumbnailUrl": "https://ph-files.imgix.net/...",
"launches": [
{
"name": "Lovable",
"slug": "lovable",
"url": "https://www.producthunt.com/posts/lovable"
}
]
}評論
GET /producthunt/posts/:slug/reviews — 5 點數
取得 Product Hunt 產品的評論。
| 參數 | 類型 | 必填 | 預設 | 說明 |
|---|---|---|---|---|
slug | string | 是 | — | 產品 slug(例如 lovable) |
cURL
curl -H "x-api-key: sk_byc_xxx" \
https://api.bycrawl.com/producthunt/posts/lovable/reviews回應
{
"slug": "lovable",
"overallRating": 4.4,
"totalReviews": 167,
"reviews": [
{
"author": {
"name": "Anry Bond",
"username": "znsconnect",
"profileUrl": "https://www.producthunt.com/@znsconnect"
},
"rating": 5,
"pros": {
"tags": [
{ "label": "fast prototyping", "count": 42 },
{ "label": "frontend development", "count": 7 }
],
"text": "Lovable completely changed how we build..."
},
"cons": {
"tags": [{ "label": "buggy", "count": 17 }],
"text": "Gets buggy on complex multi-component pages..."
},
"alternatives": {
"products": [{ "name": "Cursor", "slug": "cursor" }],
"text": "Tried Cursor and Bolt..."
},
"subRatings": {
"Ease of use": 5,
"Reliability": 4,
"Value for money": 4,
"Customization": 4
},
"helpfulCount": 1,
"viewCount": 10,
"timeAgo": "2d ago"
}
]
}