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

# Get a product's profile

> Fetch a single product's profile by slug or URL.



## OpenAPI

````yaml get /v1/product-hunt/product
openapi: 3.1.0
info:
  title: Scrapio
  version: 1.0.0
  description: >-
    Turn any URL into structured data. Fetch raw HTML, crawl sites, extract
    structured content, interact with dynamic pages, and search the web through
    one API.
  contact:
    name: Scrapio Support
    url: https://scrapio.dev
  license:
    name: Proprietary
servers:
  - url: https://api.scrapio.dev
    description: Production
security:
  - bearerAuth: []
tags:
  - name: System
  - name: Fetch
  - name: Crawl
  - name: Map
  - name: Interact
  - name: Search
  - name: Google
  - name: Fast Search
  - name: Jobs
  - name: YouTube
  - name: Amazon
  - name: Walmart
  - name: Booking
  - name: Agoda
  - name: Airbnb
  - name: ChatGPT
  - name: Perplexity
  - name: Gemini
  - name: Bing
  - name: Reddit
  - name: TikTok
  - name: Apple App Store
  - name: Target
  - name: Monitors
paths:
  /v1/product-hunt/product:
    get:
      tags:
        - Product Hunt
      summary: Get a Product Hunt product page
      description: >-
        Retrieves a Product Hunt product's launch page: tagline, topics,
        upvotes, makers, and optionally top-level comments. Accepts either
        `slug` or a full `url`. Self-hosted extraction behind a Cloudflare
        bypass. Requires a Starter plan or higher.
      operationId: getProductHuntProduct
      parameters:
        - name: slug
          in: query
          required: false
          schema:
            description: Product Hunt post slug, e.g. 'scrapio'
            type: string
            minLength: 1
        - name: url
          in: query
          required: false
          schema:
            description: Full Product Hunt product URL
            type: string
            format: uri
        - name: include_comments
          in: query
          required: false
          schema:
            description: Include top-level discussion comments (default false)
            anyOf:
              - type: boolean
              - type: string
                enum:
                  - 'true'
                  - 'false'
      responses:
        '200':
          description: Structured Product Hunt product page.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ProductHuntProductResponse'
        '400':
          description: Missing both slug and url.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '401':
          description: Missing or invalid API key.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '402':
          description: Product Hunt dedicated endpoints require a Starter plan or higher.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '404':
          description: The requested product could not be found.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '429':
          description: >-
            Daily credit cap exceeded, or the upstream provider rate-limited the
            request.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '502':
          description: Product Hunt upstream failed or returned an unusable response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '503':
          description: Product Hunt execution backend unavailable or unconfigured.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
      x-codeSamples:
        - lang: cURL
          label: cURL
          source: >-
            curl "https://api.scrapio.dev/v1/product-hunt/product?slug=scrapio"
            \
              -H "Authorization: Bearer $SCRAPIO_API_KEY"
components:
  schemas:
    ProductHuntProductResponse:
      type: object
      properties:
        provider:
          type: string
          enum:
            - product_hunt
        page_type:
          type: string
          enum:
            - product
        snapshot_at:
          type: string
          format: date-time
          pattern: >-
            ^(?:(?:\d\d[2468][048]|\d\d[13579][26]|\d\d0[48]|[02468][048]00|[13579][26]00)-02-29|\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\d|30)|(?:02)-(?:0[1-9]|1\d|2[0-8])))T(?:(?:[01]\d|2[0-3]):[0-5]\d(?::[0-5]\d(?:\.\d+)?)?(?:Z))$
        slug:
          anyOf:
            - type: string
            - type: 'null'
        name:
          anyOf:
            - type: string
            - type: 'null'
        tagline:
          anyOf:
            - type: string
            - type: 'null'
        description:
          anyOf:
            - type: string
            - type: 'null'
        topics:
          type: array
          items:
            type: string
        upvotes:
          anyOf:
            - type: integer
              minimum: -9007199254740991
              maximum: 9007199254740991
            - type: 'null'
        comment_count:
          anyOf:
            - type: integer
              minimum: -9007199254740991
              maximum: 9007199254740991
            - type: 'null'
        rank:
          anyOf:
            - type: integer
              minimum: -9007199254740991
              maximum: 9007199254740991
            - type: 'null'
        launched_at:
          anyOf:
            - type: string
            - type: 'null'
        website_url:
          anyOf:
            - type: string
              format: uri
            - type: 'null'
        makers:
          type: array
          items:
            type: object
            properties:
              username:
                type: string
              name:
                anyOf:
                  - type: string
                  - type: 'null'
              profile_url:
                type: string
                format: uri
            required:
              - username
              - name
              - profile_url
            additionalProperties: false
        images:
          type: array
          items:
            type: string
        comments:
          type: array
          items:
            type: object
            properties:
              id:
                anyOf:
                  - type: string
                  - type: 'null'
              author:
                anyOf:
                  - type: string
                  - type: 'null'
              body:
                anyOf:
                  - type: string
                  - type: 'null'
              is_maker:
                type: boolean
              upvotes:
                anyOf:
                  - type: integer
                    minimum: -9007199254740991
                    maximum: 9007199254740991
                  - type: 'null'
              posted_at:
                anyOf:
                  - type: string
                  - type: 'null'
            required:
              - id
              - author
              - body
              - is_maker
              - upvotes
              - posted_at
            additionalProperties: false
        url:
          type: string
          format: uri
      required:
        - provider
        - page_type
        - snapshot_at
        - slug
        - name
        - tagline
        - description
        - topics
        - upvotes
        - comment_count
        - rank
        - launched_at
        - website_url
        - makers
        - images
        - comments
        - url
      additionalProperties: false
    ErrorResponse:
      type: object
      properties:
        request_id:
          type: string
        error:
          type: object
          properties:
            code:
              type: string
            message:
              type: string
          required:
            - code
            - message
        diagnostics:
          type: object
          properties:
            outcome:
              type: string
              enum:
                - failed
            retryable:
              type: boolean
            blocked:
              type: boolean
            timed_out:
              type: boolean
          required:
            - outcome
            - retryable
          additionalProperties: false
      required:
        - request_id
        - error
      additionalProperties: false
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: API Key

````