> ## Documentation Index
> Fetch the complete documentation index at: https://mindcase.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Product Hunt

> Scrape Product Hunt launches — today's leaderboard, a specific date, or by category/topic. Includes upvotes, makers, and ranks.

`$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

<ParamField body="maxResults" type="integer" default={25}>
  **Number** · How many products to scrape across the whole run. Use 0 for all.
</ParamField>

<ParamField body="startDate" type="date">
  **Date picker** · Specific Product Hunt day (YYYY-MM-DD). Leave blank for today's leaderboard.
</ParamField>

<ParamField body="endDate" type="date">
  **Date picker** · Optional inclusive end date for a daily range. Leave blank to scrape just the start date.
</ParamField>

<ParamField body="categorySlugs" type="array">
  **List** · Product Hunt category slugs (e.g. 'ai-code-editors'). One per line. Mutually exclusive with date/topic mode.
</ParamField>

<ParamField body="topicSlugs" type="array">
  **List** · Product Hunt topic slugs (e.g. 'developer-tools', 'open-source'). One per line. Mutually exclusive with date/category mode.
</ParamField>

## 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

<CodeGroup>
  ```bash curl theme={null}
  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
    }
  }'
  ```

  ```python Python theme={null}
  import requests

  resp = requests.post(
      "https://api.mindcase.co/api/v1/agents/producthunt/products/run",
      headers={"Authorization": "Bearer mk_live_abc123def456"},
      json={"params": {
      "maxResults": 25,
      "shouldScrapeWebsite": true
  }},
  )
  data = resp.json()
  ```
</CodeGroup>

### Example response

```json Response theme={null}
{
  "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"
    }
  ]
}
```
