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

# /indiehackers/products/search

> Search and filter the Indie Hackers products database. Combine a free-text query with any of the on-site filters (category/vertical, business model, founders, team size, funding, platform, commitment, technical vs non-technical founders, Stripe-verified revenue, monthly revenue range) and sort by recency or revenue. Each result carries the product's self-reported or Stripe-verified monthly revenue.

**Price:** 10 credits per 100 results



## OpenAPI

````yaml /openapi/company-startup-intel.json post /api/indiehackers/products/search
openapi: 3.1.0
info:
  title: Any Site API
  description: >+
    Any Site API provides programmatic access to data from LinkedIn, Instagram,
    Twitter, and other platforms.


    ## Authentication


    All API endpoints require an `access-token` header with a valid API token.
    Tokens can be created in the [dashboard](https://app.anysite.io/).


    ## Pricing


    Each endpoint has a credit cost listed in its description. Credits are
    deducted from your token balance per request.

  version: 0.0.1
servers: []
security:
  - AccessToken: []
paths:
  /api/indiehackers/products/search:
    post:
      tags:
        - /indiehackers
      summary: /indiehackers/products/search
      description: >-
        Search and filter the Indie Hackers products database. Combine a
        free-text query with any of the on-site filters (category/vertical,
        business model, founders, team size, funding, platform, commitment,
        technical vs non-technical founders, Stripe-verified revenue, monthly
        revenue range) and sort by recency or revenue. Each result carries the
        product's self-reported or Stripe-verified monthly revenue.


        **Price:** 10 credits per 100 results
      operationId: __api_indiehackers_products_search_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/IndiehackersProductsSearchPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/IndiehackersProduct'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    IndiehackersProductsSearchPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        query:
          type: string
          default: ''
        count:
          type: integer
          minimum: 1
        sort:
          $ref: '#/components/schemas/IndiehackersProductSort'
          default: recently_updated
        category:
          anyOf:
            - $ref: '#/components/schemas/IndiehackersProductVertical'
            - type: 'null'
        business_model:
          anyOf:
            - $ref: '#/components/schemas/IndiehackersRevenueModel'
            - type: 'null'
        founders:
          anyOf:
            - $ref: '#/components/schemas/IndiehackersFoundersType'
            - type: 'null'
        founders_can_code:
          anyOf:
            - type: boolean
            - type: 'null'
        employees:
          anyOf:
            - $ref: '#/components/schemas/IndiehackersEmployees'
            - type: 'null'
        funding:
          anyOf:
            - $ref: '#/components/schemas/IndiehackersFunding'
            - type: 'null'
        platform:
          anyOf:
            - $ref: '#/components/schemas/IndiehackersPlatform'
            - type: 'null'
        commitment:
          anyOf:
            - $ref: '#/components/schemas/IndiehackersCommitment'
            - type: 'null'
        revenue_verification:
          $ref: '#/components/schemas/IndiehackersRevenueVerification'
          default: any
        monthly_revenue_min:
          anyOf:
            - type: number
              minimum: 0
            - type: 'null'
        monthly_revenue_max:
          anyOf:
            - type: number
              minimum: 0
            - type: 'null'
      type: object
      required:
        - count
    IndiehackersProduct:
      properties:
        '@type':
          type: string
          default: IndiehackersProduct
        id:
          type: string
        name:
          type: string
        tagline:
          anyOf:
            - type: string
            - type: 'null'
        revenue:
          anyOf:
            - type: number
            - type: 'null'
        is_revenue_verified:
          type: boolean
          default: false
        follower_count:
          anyOf:
            - type: integer
            - type: 'null'
        website_url:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        twitter_handle:
          anyOf:
            - type: string
            - type: 'null'
        facebook_url:
          anyOf:
            - type: string
            - type: 'null'
        verticals:
          items:
            type: string
          type: array
          default: []
        revenue_models:
          items:
            type: string
          type: array
          default: []
        funding:
          items:
            type: string
          type: array
          default: []
        platforms:
          items:
            type: string
          type: array
          default: []
        employees:
          anyOf:
            - type: string
            - type: 'null'
        commitment:
          anyOf:
            - type: string
            - type: 'null'
        founders_type:
          anyOf:
            - type: string
            - type: 'null'
        founders_can_code:
          anyOf:
            - type: boolean
            - type: 'null'
        start_date:
          anyOf:
            - type: string
            - type: 'null'
        end_date:
          anyOf:
            - type: string
            - type: 'null'
        user_ids:
          items:
            type: string
          type: array
          default: []
        founders:
          items:
            $ref: '#/components/schemas/IndiehackersUserBrief'
          type: array
          default: []
        created_at:
          anyOf:
            - type: integer
            - type: 'null'
        published_at:
          anyOf:
            - type: integer
            - type: 'null'
        updated_at:
          anyOf:
            - type: integer
            - type: 'null'
        approved_at:
          anyOf:
            - type: integer
            - type: 'null'
        bumped_at:
          anyOf:
            - type: integer
            - type: 'null'
        product_url:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - id
        - name
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    IndiehackersProductSort:
      type: string
      enum:
        - recently_updated
        - revenue_high
        - revenue_low
    IndiehackersProductVertical:
      type: string
      enum:
        - ai
        - saas
        - productivity
        - b2b
        - b2c
        - analytics
        - marketing
        - utilities
        - data
        - content
        - programming
        - finance
        - apis
        - education
        - social-media
        - growth
        - health-fitness
        - advertising
        - community
        - privacy-security
        - design
        - task-management
        - writing
        - communication
        - professional-services
        - entertainment
        - e-commerce
        - open-source
        - sales
        - payments
        - movies-video
        - games
        - jobs-hiring
        - marketplaces
        - art
        - email-marketing
        - travel
        - bots
        - wordpress
        - web3
        - investing
        - science-engineering
        - photography
        - books
        - events
        - sports
        - calendar
        - cryptocurrency
        - music-audio
        - food-drinks
        - real-estate
        - shopping
        - news-magazines
        - medical
        - legal
        - fashion
        - cro
        - navigation-mapping
        - kids
        - energy
        - government
        - agriculture
        - transportation
        - podcasting
        - mailing-lists
        - outdoors
        - home-automation
        - biotechnology
        - hardware
        - clothing
        - wearables
        - military
        - weather
        - politics
    IndiehackersRevenueModel:
      type: string
      enum:
        - subscription
        - free
        - transactional
        - advertising
        - commission
        - partnerships
        - consulting
    IndiehackersFoundersType:
      type: string
      enum:
        - solo
        - multiple
    IndiehackersEmployees:
      type: string
      enum:
        - '0'
        - under-10
        - 10-plus
        - 50-plus
        - 200-plus
        - 1k-plus
        - 5k-plus
        - 10k-plus
    IndiehackersFunding:
      type: string
      enum:
        - self
        - bootstrapped
        - donations
        - accelerator
        - seed
        - vc
        - crowd
    IndiehackersPlatform:
      type: string
      enum:
        - web
        - mobile
        - desktop
        - pc
        - android
        - ios
        - mac
        - browser
    IndiehackersCommitment:
      type: string
      enum:
        - side-project
        - full-time
    IndiehackersRevenueVerification:
      type: string
      enum:
        - any
        - stripe_verified
    IndiehackersUserBrief:
      properties:
        '@type':
          type: string
          default: IndiehackersUserBrief
        id:
          type: string
        alias:
          anyOf:
            - type: string
            - type: 'null'
        full_name:
          anyOf:
            - type: string
            - type: 'null'
        bio:
          anyOf:
            - type: string
            - type: 'null'
        twitter_handle:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - id
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
        msg:
          type: string
        type:
          type: string
        input: {}
        ctx:
          type: object
      type: object
      required:
        - loc
        - msg
        - type
  securitySchemes:
    AccessToken:
      type: apiKey
      in: header
      name: access-token
      description: API token from the dashboard

````