Product Hunt
Product launch platform — leaderboard, search, product details, and reviews.
- Leaderboard: Browse daily/weekly/monthly/yearly top products
- Search: Search products by keyword
- Products: Get detailed product info by slug
- Reviews: Get user reviews for a product
Leaderboard
GET /producthunt/posts — 4 credits
Get Product Hunt leaderboard posts, optionally filtered by date and period.
| Param | Type | Required | Default | Description |
|---|---|---|---|---|
count | integer | No | 20 | Number of posts (max 50) |
date | string | No | — | Filter to date (YYYY-MM-DD) |
period | string | No | daily | Leaderboard period: daily, weekly, monthly, yearly |
cURL
curl -H "x-api-key: sk_byc_xxx" \
"https://api.bycrawl.com/producthunt/posts?count=10&period=daily"Response
{
"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
}Search
GET /producthunt/posts/search — 4 credits
Search Product Hunt products by keyword.
| Param | Type | Required | Default | Description |
|---|---|---|---|---|
q | string | Yes | — | Search query |
count | integer | No | 20 | Number of results (max 50) |
cURL
curl -H "x-api-key: sk_byc_xxx" \
"https://api.bycrawl.com/producthunt/posts/search?q=AI&count=10"Response
{
"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
}Products
GET /producthunt/posts/:slug — 4 credits
Get a Product Hunt product by its slug.
| Param | Type | Required | Default | Description |
|---|---|---|---|---|
slug | string | Yes | — | Product slug (e.g. lovable) |
cURL
curl -H "x-api-key: sk_byc_xxx" \
https://api.bycrawl.com/producthunt/posts/lovableResponse
{
"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"
}
]
}Reviews
GET /producthunt/posts/:slug/reviews — 5 credits
Get reviews for a Product Hunt product.
| Param | Type | Required | Default | Description |
|---|---|---|---|---|
slug | string | Yes | — | Product slug (e.g. lovable) |
cURL
curl -H "x-api-key: sk_byc_xxx" \
https://api.bycrawl.com/producthunt/posts/lovable/reviewsResponse
{
"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"
}
]
}