Skip to Content
API ReferenceProduct Hunt

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.

ParamTypeRequiredDefaultDescription
countintegerNo20Number of posts (max 50)
datestringNoFilter to date (YYYY-MM-DD)
periodstringNodailyLeaderboard period: daily, weekly, monthly, yearly
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 }

GET /producthunt/posts/search — 4 credits

Search Product Hunt products by keyword.

ParamTypeRequiredDefaultDescription
qstringYesSearch query
countintegerNo20Number of results (max 50)
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.

ParamTypeRequiredDefaultDescription
slugstringYesProduct slug (e.g. lovable)
curl -H "x-api-key: sk_byc_xxx" \ https://api.bycrawl.com/producthunt/posts/lovable

Response

{ "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.

ParamTypeRequiredDefaultDescription
slugstringYesProduct slug (e.g. lovable)
curl -H "x-api-key: sk_byc_xxx" \ https://api.bycrawl.com/producthunt/posts/lovable/reviews

Response

{ "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" } ] }