Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.mindcase.co/llms.txt

Use this file to discover all available pages before exploring further.

$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

maxResults
integer
default:25
Number · How many products to scrape across the whole run. Use 0 for all.
startDate
date
Date picker · Specific Product Hunt day (YYYY-MM-DD). Leave blank for today’s leaderboard.
endDate
date
Date picker · Optional inclusive end date for a daily range. Leave blank to scrape just the start date.
categorySlugs
array
List · Product Hunt category slugs (e.g. ‘ai-code-editors’). One per line. Mutually exclusive with date/topic mode.
topicSlugs
array
List · Product Hunt topic slugs (e.g. ‘developer-tools’, ‘open-source’). One per line. Mutually exclusive with date/category mode.

Response columns

FieldDisplay nameType
productNameProduct Nametext
productUrlProduct URLurl
taglineTaglinetext
upvotesUpvotesnumber
commentsCommentsnumber
followersFollowersnumber
launchDateLaunch Datedate
dayRankDay Ranknumber
weekRankWeek Ranknumber
monthRankMonth Ranknumber
categoriesCategoriestext
tagsTagstext
descriptionDescriptiontext
makersMakerstext
makerHandlesMaker Handlestext
thumbnailThumbnailurl

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

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