> ## 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 maker's profile

> Fetch a maker's profile by username or URL.



## OpenAPI

````yaml get /v1/product-hunt/maker
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/maker:
    get:
      tags:
        - Product Hunt
      summary: Get a maker's profile
      description: >-
        Retrieves a Product Hunt maker's profile: headline, follower count,
        launched products, and social links. Accepts either `username` or a full
        `url`. Self-hosted extraction behind a Cloudflare bypass. Requires a
        Starter plan or higher.
      operationId: getProductHuntMaker
      parameters:
        - name: username
          in: query
          required: false
          schema:
            description: Product Hunt username, e.g. 'rrhoover' (without @)
            type: string
            minLength: 1
        - name: url
          in: query
          required: false
          schema:
            description: Full Product Hunt profile URL
            type: string
            format: uri
      responses:
        '200':
          description: Structured Product Hunt maker profile.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ProductHuntMakerResponse'
        '400':
          description: Missing both username 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 maker 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/maker?username=rrhoover" \
              -H "Authorization: Bearer $SCRAPIO_API_KEY"
components:
  schemas:
    ProductHuntMakerResponse:
      type: object
      properties:
        provider:
          type: string
          enum:
            - product_hunt
        page_type:
          type: string
          enum:
            - maker
        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))$
        username:
          anyOf:
            - type: string
            - type: 'null'
        name:
          anyOf:
            - type: string
            - type: 'null'
        headline:
          anyOf:
            - type: string
            - type: 'null'
        followers:
          anyOf:
            - type: integer
              minimum: -9007199254740991
              maximum: 9007199254740991
            - type: 'null'
        links:
          type: array
          items:
            type: object
            properties:
              label:
                type: string
              url:
                type: string
                format: uri
            required:
              - label
              - url
            additionalProperties: false
        products:
          type: array
          items:
            type: object
            properties:
              slug:
                type: string
              name:
                type: string
              tagline:
                anyOf:
                  - type: string
                  - type: 'null'
              upvotes:
                anyOf:
                  - type: integer
                    minimum: -9007199254740991
                    maximum: 9007199254740991
                  - type: 'null'
              url:
                type: string
                format: uri
            required:
              - slug
              - name
              - tagline
              - upvotes
              - url
            additionalProperties: false
        url:
          type: string
          format: uri
      required:
        - provider
        - page_type
        - snapshot_at
        - username
        - name
        - headline
        - followers
        - links
        - products
        - 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

````