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

# Scrape Product Hunt launches, products, search and topics

> Turns Product Hunt into JSON. `mode=leaderboard` returns a day's ranked launches (`date`=YYYY-MM-DD, or today) with votes, comments, topics and rank; `mode=search` returns products matching `query`; `mode=topic` returns products under a `topic` slug; `mode=detail` returns one product by `slug` with description, website, socials, review rating, followers and categories. Set `max_results` for the list modes.



## OpenAPI

````yaml /api-reference/openapi.json post /products/producthunt
openapi: 3.1.0
info:
  title: ScrapeUnblocker API
  description: >-
    Public API for the ScrapeUnblocker proxy/anti-bot service. Authenticate
    every request with the `x-scrapeunblocker-key` header. Three endpoints are
    documented here: page-source extraction, Google SERP scraping, and image
    fetch. All other paths exist for internal operations and are intentionally
    hidden from this spec.
  version: 3.0.0
servers:
  - url: https://api.scrapeunblocker.com
    description: Production
security: []
paths:
  /products/producthunt:
    post:
      tags:
        - Plugins
      summary: Scrape Product Hunt launches, products, search and topics
      description: >-
        Turns Product Hunt into JSON. `mode=leaderboard` returns a day's ranked
        launches (`date`=YYYY-MM-DD, or today) with votes, comments, topics and
        rank; `mode=search` returns products matching `query`; `mode=topic`
        returns products under a `topic` slug; `mode=detail` returns one product
        by `slug` with description, website, socials, review rating, followers
        and categories. Set `max_results` for the list modes.
      operationId: producthunt_scrape_products_producthunt_post
      parameters:
        - name: mode
          in: query
          required: false
          schema:
            type: string
            description: 'What to fetch: leaderboard, search, topic, detail.'
            default: leaderboard
            title: Mode
          description: 'What to fetch: leaderboard, search, topic, detail.'
        - name: query
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: Search terms (mode=search), e.g. 'ai chatbot'.
            title: Query
          description: Search terms (mode=search), e.g. 'ai chatbot'.
        - name: date
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: >-
              Leaderboard day as YYYY-MM-DD (mode=leaderboard). Omit for today.
              Past days are finalised and ranked; today's board is live and not
              ranked yet.
            title: Date
          description: >-
            Leaderboard day as YYYY-MM-DD (mode=leaderboard). Omit for today.
            Past days are finalised and ranked; today's board is live and not
            ranked yet.
        - name: topic
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: Topic slug (mode=topic), e.g. 'artificial-intelligence'.
            title: Topic
          description: Topic slug (mode=topic), e.g. 'artificial-intelligence'.
        - name: slug
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: Product slug (mode=detail), e.g. 'notion'.
            title: Slug
          description: Product slug (mode=detail), e.g. 'notion'.
        - name: max_results
          in: query
          required: false
          schema:
            type: integer
            maximum: 200
            minimum: 1
            description: Max products to return for list modes (leaderboard/search/topic).
            default: 30
            title: Max Results
          description: Max products to return for list modes (leaderboard/search/topic).
        - name: proxy_country
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: >-
              Exit-IP country (ISO-2). Leave blank - Product Hunt is global and
              a forced country only hurts.
            title: Proxy Country
          description: >-
            Exit-IP country (ISO-2). Leave blank - Product Hunt is global and a
            forced country only hurts.
      responses:
        '200':
          description: >-
            JSON with a `products` array (list modes) or a `product` object
            (detail).
          content:
            application/json:
              schema: {}
        '400':
          description: Invalid parameters.
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
        '502':
          description: Blocked by Product Hunt or nothing found.
        '504':
          description: Fetch timed out.
      security:
        - ScrapeUnblockerKey: []
components:
  schemas:
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    ScrapeUnblockerKey:
      type: apiKey
      in: header
      name: x-scrapeunblocker-key
      description: Your ScrapeUnblocker API key. Apply on every request.

````