$0.07 / 1k products
Scrape Product Hunt launches — today’s leaderboard, a specific date, or by category/topic. Includes upvotes, makers, and ranks.
Endpoint
POST /api/v1/agents/producthunt/products/run
Parameters
Number · How many products to scrape across the whole run. Use 0 for all.
Date picker · Specific Product Hunt day (YYYY-MM-DD). Leave blank for today’s leaderboard.
Date picker · Optional inclusive end date for a daily range. Leave blank to scrape just the start date.
List · Product Hunt category slugs (e.g. ‘ai-code-editors’). One per line. Mutually exclusive with date/topic mode.
List · Product Hunt topic slugs (e.g. ‘developer-tools’, ‘open-source’). One per line. Mutually exclusive with date/category mode.
Response columns
| Field | Display name | Type |
|---|
productName | Product Name | text |
productUrl | Product URL | url |
tagline | Tagline | text |
upvotes | Upvotes | number |
comments | Comments | number |
followers | Followers | number |
launchDate | Launch Date | date |
dayRank | Day Rank | number |
weekRank | Week Rank | number |
monthRank | Month Rank | number |
categories | Categories | text |
tags | Tags | text |
description | Description | text |
makers | Makers | text |
makerHandles | Maker Handles | text |
thumbnail | Thumbnail | url |
Example
curl -X POST https://api.mindcase.co/api/v1/agents/producthunt/products/run \
-H "Authorization: Bearer mk_live_abc123def456" \
-H "Content-Type: application/json" \
-d '{
"params": {
"maxResults": 25,
"shouldScrapeWebsite": true
}
}'
Example response
{
"job_id": "job_7f3a2b1c",
"status": "completed",
"data": [
{
"productName": "Mindra",
"productUrl": "https://www.producthunt.com/products/mindra/launches/mindra",
"tagline": "Agent Teams You Can Actually Delegate To",
"upvotes": 196,
"comments": 25,
"followers": 522,
"launchDate": "2026-05-04",
"dayRank": 1,
"weekRank": 1,
"monthRank": 33,
"categories": "AI Workflow Automation, AI Agents, No-Code AI Agent Builder",
"tags": "Productivity",
"description": "Mindra is the command center for your non-sleeping, 24/7 awake agentic team. Explain your task, and Mindra will create the best agentic team for you. Automate your marketing, supply chain and more. With Mindra's built-in governance, human oversight, and support for your existing stack, you can finally trust your agents.",
"makers": "Emir Y\u00fccel, \u0130lker Y\u00f6r\u00fc, Yaman Bi\u00e7er, Deniz Soylular, Zeynep Yorulmaz, Ben Lang",
"makerHandles": "@emiryucel, @ilker_yoru, @yamanbicer, @denizsoylular, @zeynep_yorulmaz, @benln",
"thumbnail": "https://ph-files.imgix.net/5ff5a193-a462-404e-8032-abce5121eeaf.png"
}
]
}