Real-time Product Hunt data -- product details, daily top products, search, and comments. All data is scraped directly from Product Hunt and returned as structured JSON.
See real data shapes from every endpoint — no signup required.
/producthunt/product
curl -G "https://api.pullapi.com/producthunt/product" \
-H "x-rapidapi-key: YOUR_API_KEY"
{
"success": true,
"data": {
"id": 64236,
"name": "Notion",
"slug": "notion",
"tagline": "The all-in-one workspace for notes, tasks, wikis & databases",
"description": "Notion is the connected workspace where better, faster work happens. It combines your everyday work apps into one, so you can create docs, take notes, manage tasks, and organize your life.",
"url": "https://www.producthunt.com/posts/notion",
"website_url": "https://www.notion.so",
"image_url": "https://ph-files.imgix.net/example-image.png",
"logo_url": "https://ph-files.imgix.net/example-logo.png",
"screenshots": [ "https://ph-files.imgix.net/screenshot1.png", "https://ph-files.imgix.net/screenshot2.png"
],
"votes_count": 4523,
"reviews_count": 312,
"reviews_rating": 4.7,
"followers_count": 8920,
"comments_count": 87,
"daily_rank": 1,
"weekly_rank": 3,
"monthly_rank": 12,
"makers": [
{
"name": "Ivan Zhao",
"image": "https://ph-avatars.imgix.net/example-avatar.jpg",
"profile_url": "https://www.producthunt.com/@ivanz"
}
],
"topics": [
{
"name": "Productivity",
"slug": "productivity"
},
{
"name": "Note Taking",
"slug": "note-taking"
}
],
"category": "Productivity",
"twitter_url": "https://twitter.com/NotionHQ",
"website_clean_url": "notion.so",
"ios_url": "https://apps.apple.com/app/notion/id1232780281",
"android_url": "https://play.google.com/store/apps/details?id=notion.id",
"github_url": null,
"featured_at": "2018-06-18",
"created_at": "2016-08-03T07: 00: 00+00: 00"
},
"credits_used": 1,
"cache_hit": false,
"timestamp": "2026-03-15T12: 00: 00+00: 00"
}
4 endpoints across 3 categories.
/producthunt/product
Get full details for a Product Hunt product including name, tagline, description, vote/review counts, rankings, makers, topics, screenshots, and external links (website, Twitter, iOS, Android, GitHub). Accepts a product slug or full Product Hunt URL.
| Name | Type | Required | Description | Example |
|---|---|---|---|---|
slug |
string | Yes | Product slug or full Product Hunt URL. Examples: "notion", "chatgpt",... | notion |
{
"success": true,
"data": {
"id": 64236,
"name": "Notion",
"slug": "notion",
"tagline": "The all-in-one workspace for notes, tasks, wikis & databases",
"description": "Notion is the connected workspace where better, faster work happens. It combines your everyday work apps into one, so you can create docs, take notes, manage tasks, and organize your life.",
"url": "https://www.producthunt.com/posts/notion",
"website_url": "https://www.notion.so",
"image_url": "https://ph-files.imgix.net/example-image.png",
"logo_url": "https://ph-files.imgix.net/example-logo.png",
"screenshots": [ "https://ph-files.imgix.net/screenshot1.png", "https://ph-files.imgix.net/screenshot2.png"
],
"votes_count": 4523,
"reviews_count": 312,
"reviews_rating": 4.7,
"followers_count": 8920,
"comments_count": 87,
"daily_rank": 1,
"weekly_rank": 3,
"monthly_rank": 12,
"makers": [
{
"name": "Ivan Zhao",
"image": "https://ph-avatars.imgix.net/example-avatar.jpg",
"profile_url": "https://www.producthunt.com/@ivanz"
}
],
"topics": [
{
"name": "Productivity",
"slug": "productivity"
},
{
"name": "Note Taking",
"slug": "note-taking"
}
],
"category": "Productivity",
"twitter_url": "https://twitter.com/NotionHQ",
"website_clean_url": "notion.so",
"ios_url": "https://apps.apple.com/app/notion/id1232780281",
"android_url": "https://play.google.com/store/apps/details?id=notion.id",
"github_url": null,
"featured_at": "2018-06-18",
"created_at": "2016-08-03T07: 00: 00+00: 00"
},
"credits_used": 1,
"cache_hit": false,
"timestamp": "2026-03-15T12: 00: 00+00: 00"
}
/producthunt/daily-top
Get the top-ranked products on Product Hunt for a specific date. Returns products sorted by vote count for that day. If no date is provided, defaults to today.
| Name | Type | Required | Description | Example |
|---|---|---|---|---|
date |
string | No | Date in YYYY-MM-DD format. Defaults to today if not provided. Example: "2026-03-15" | 2026-03-15 |
{
"success": true,
"data": {
"date": "2026-03-15",
"products": [
{
"id": 456789,
"name": "SuperApp AI",
"slug": "superapp-ai",
"tagline": "Your AI-powered productivity assistant",
"description": "SuperApp AI helps you automate your daily workflows with intelligent agents.",
"url": "https://www.producthunt.com/posts/superapp-ai",
"website_url": "https://superapp.ai",
"image_url": "https://ph-files.imgix.net/example-daily.png",
"logo_url": "https://ph-files.imgix.net/example-daily-logo.png",
"screenshots": [],
"votes_count": 892,
"reviews_count": 45,
"reviews_rating": 4.5,
"followers_count": 320,
"comments_count": 34,
"daily_rank": 1,
"weekly_rank": null,
"monthly_rank": null,
"makers": [
{
"name": "Jane Doe",
"image": "https://ph-avatars.imgix.net/maker-avatar.jpg",
"profile_url": "https://www.producthunt.com/@janedoe"
}
],
"topics": [
{
"name": "Artificial Intelligence",
"slug": "artificial-intelligence"
}
],
"category": "Artificial Intelligence",
"twitter_url": null,
"website_clean_url": "superapp.ai",
"ios_url": null,
"android_url": null,
"github_url": null,
"featured_at": "2026-03-15",
"created_at": "2026-03-15T00: 01: 00+00: 00"
}
],
"total_products": 20
},
"credits_used": 1,
"cache_hit": false,
"timestamp": "2026-03-15T12: 00: 00+00: 00"
}
/producthunt/search
Search Product Hunt for products matching a query string. Returns matching products with full details including votes, rankings, makers, and topics.
| Name | Type | Required | Description | Example |
|---|---|---|---|---|
query |
string | Yes | Search query to find products. Examples: "AI writing", "project management", "design tools" | AI writing |
{
"success": true,
"data": {
"query": "AI writing",
"results": [
{
"id": 345678,
"name": "Jasper",
"slug": "jasper-2",
"tagline": "AI content platform for enterprise marketing teams",
"description": "Jasper is the AI content platform that helps marketing teams create on-brand content 10x faster.",
"url": "https://www.producthunt.com/posts/jasper-2",
"website_url": "https://www.jasper.ai",
"image_url": "https://ph-files.imgix.net/jasper-image.png",
"logo_url": "https://ph-files.imgix.net/jasper-logo.png",
"screenshots": [],
"votes_count": 1567,
"reviews_count": 89,
"reviews_rating": 4.3,
"followers_count": 2100,
"comments_count": 52,
"daily_rank": null,
"weekly_rank": null,
"monthly_rank": null,
"makers": [],
"topics": [
{
"name": "Writing Tools",
"slug": "writing-tools"
},
{
"name": "Artificial Intelligence",
"slug": "artificial-intelligence"
}
],
"category": "Writing Tools",
"twitter_url": "https://twitter.com/jasaborIO",
"website_clean_url": "jasper.ai",
"ios_url": null,
"android_url": null,
"github_url": null,
"featured_at": "2023-02-28",
"created_at": "2023-02-28T08: 00: 00+00: 00"
}
],
"total_results": 15
},
"credits_used": 1,
"cache_hit": false,
"timestamp": "2026-03-15T12: 00: 00+00: 00"
}
/producthunt/comments
Get comments and discussion threads for a Product Hunt product. Returns top-level comments with user info, vote counts, reply counts, and timestamps. Accepts a product slug or full post URL.
| Name | Type | Required | Description | Example |
|---|---|---|---|---|
slug |
string | Yes | Product slug or full Product Hunt post URL. Examples: "notion",... | notion |
{
"success": true,
"data": {
"product_slug": "notion",
"comments": [
{
"id": 1234567,
"body": "This is a game changer for our team! We've been using it for 6 months and it replaced 3 other tools.",
"user": {
"name": "Alex Chen",
"username": "alexchen",
"avatar_url": "https://ph-avatars.imgix.net/user-avatar.jpg"
},
"votes_count": 12,
"replies_count": 3,
"created_at": "2026-03-15T08: 30: 00+00: 00",
"url": "https://www.producthunt.com/posts/notion/comments/1234567"
},
{
"id": 1234568,
"body": "Love the new features! The AI integration is especially useful.",
"user": {
"name": "Sarah Kim",
"username": "sarahkim",
"avatar_url": "https://ph-avatars.imgix.net/user-avatar2.jpg"
},
"votes_count": 5,
"replies_count": 1,
"created_at": "2026-03-15T09: 15: 00+00: 00",
"url": "https://www.producthunt.com/posts/notion/comments/1234568"
}
],
"total_comments": 87
},
"credits_used": 1,
"cache_hit": false,
"timestamp": "2026-03-15T12: 00: 00+00: 00"
}
Get started in seconds with your preferred language.
curl -G "https://api.pullapi.com/producthunt/product?slug=notion" \
-H "x-rapidapi-host: product-hunt-scraper-api.p.rapidapi.com" \
-H "x-rapidapi-key: YOUR_API_KEY"
HTTP-based API. No Selenium, no Puppeteer, no headless browsers to manage.
Automatic residential proxy rotation handles anti-bot detection for you.
Smart Redis caching means faster repeated queries and lower costs.
No monthly commitment. Free tier included. Pay only for what you use.
What developers build with the Product Hunt Scraper API.
More APIs in Business Data.
Lead Generation · Local SEO Audit
Lead Generation · Business Directory
Startup Research · Funding Intelligence
Talent Intelligence · Company Research
Salary Research · Job Market Analysis
Salary Benchmarking · Employer Branding
Start with the free tier. No credit card required.
Subscribe on RapidAPI →