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

# /softwareadvice/products/search

> List Software Advice (softwareadvice.com) products within a category, with filtering and sorting

**Price:** 20 credits per 5 results

**⚠️ Common errors:** 412: Category not found



## OpenAPI

````yaml /openapi/reviews-software-employer.json post /api/softwareadvice/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/softwareadvice/products/search:
    post:
      tags:
        - /softwareadvice
      summary: /softwareadvice/products/search
      description: >-
        List Software Advice (softwareadvice.com) products within a category,
        with filtering and sorting


        **Price:** 20 credits per 5 results


        **⚠️ Common errors:** 412: Category not found
      operationId: __api_softwareadvice_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/SoftwareadviceProductsSearchPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SoftwareadviceSearchProduct'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    SoftwareadviceProductsSearchPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        category:
          type: string
          minLength: 1
        count:
          type: integer
          minimum: 1
        sort:
          $ref: '#/components/schemas/SoftwareadviceSort'
          default: recommendations
        min_rating:
          anyOf:
            - type: number
              maximum: 5
              minimum: 0
            - type: 'null'
        free_trial:
          anyOf:
            - type: boolean
            - type: 'null'
        free_version:
          anyOf:
            - type: boolean
            - type: 'null'
        company_size:
          anyOf:
            - $ref: '#/components/schemas/SoftwareadviceCompanySize'
            - type: 'null'
        max_price:
          anyOf:
            - type: number
              minimum: 0
            - type: 'null'
      type: object
      required:
        - category
        - count
    SoftwareadviceSearchProduct:
      properties:
        '@type':
          type: string
          default: SoftwareadviceSearchProduct
        id:
          type: string
        seo_id:
          type: string
        alias:
          anyOf:
            - type: string
            - type: 'null'
        name:
          type: string
        image:
          anyOf:
            - type: string
            - type: 'null'
        vendor_name:
          anyOf:
            - type: string
            - type: 'null'
        vendor_website_url:
          anyOf:
            - type: string
            - type: 'null'
        rating:
          anyOf:
            - type: number
            - type: 'null'
        review_count:
          anyOf:
            - type: integer
            - type: 'null'
        ease_of_use_rating:
          anyOf:
            - type: number
            - type: 'null'
        customer_support_rating:
          anyOf:
            - type: number
            - type: 'null'
        value_for_money_rating:
          anyOf:
            - type: number
            - type: 'null'
        functionality_rating:
          anyOf:
            - type: number
            - type: 'null'
        advisor_recommendations_count:
          anyOf:
            - type: integer
            - type: 'null'
        has_free_trial:
          anyOf:
            - type: boolean
            - type: 'null'
        has_free_version:
          anyOf:
            - type: boolean
            - type: 'null'
        price_range:
          anyOf:
            - type: integer
            - type: 'null'
        pricing:
          anyOf:
            - $ref: '#/components/schemas/SoftwareadvicePricing'
            - type: 'null'
        review_distribution:
          anyOf:
            - $ref: '#/components/schemas/SoftwareadviceRatingDistribution'
            - type: 'null'
        target_company_sizes:
          items:
            type: integer
          type: array
          default: []
        frontrunner_years:
          items:
            type: string
          type: array
          default: []
        features:
          items:
            $ref: '#/components/schemas/SoftwareadviceFeature'
          type: array
          default: []
        integrations:
          items:
            $ref: '#/components/schemas/SoftwareadviceIntegrationRef'
          type: array
          default: []
        what_users_love:
          items:
            $ref: '#/components/schemas/SoftwareadviceSentiment'
          type: array
          default: []
        to_take_in_mind:
          items:
            $ref: '#/components/schemas/SoftwareadviceSentiment'
          type: array
          default: []
        reviews_past_12_months_count:
          anyOf:
            - type: integer
            - type: 'null'
        reviews_past_6_months_count:
          anyOf:
            - type: integer
            - type: 'null'
        modified_at:
          anyOf:
            - type: integer
            - type: 'null'
        url:
          anyOf:
            - type: string
            - type: 'null'
        position:
          type: integer
      type: object
      required:
        - id
        - seo_id
        - name
        - position
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    SoftwareadviceSort:
      type: string
      enum:
        - recommendations
        - rating
        - reviews
        - name
    SoftwareadviceCompanySize:
      type: string
      enum:
        - small_business
        - midsize
        - enterprise
    SoftwareadvicePricing:
      properties:
        '@type':
          type: string
          default: SoftwareadvicePricing
        currency:
          anyOf:
            - type: string
            - type: 'null'
        currency_symbol:
          anyOf:
            - type: string
            - type: 'null'
        price_range:
          anyOf:
            - type: integer
            - type: 'null'
        has_free_trial:
          anyOf:
            - type: boolean
            - type: 'null'
        has_free_version:
          anyOf:
            - type: boolean
            - type: 'null'
        plans:
          items:
            $ref: '#/components/schemas/SoftwareadvicePlan'
          type: array
          default: []
      type: object
    SoftwareadviceRatingDistribution:
      properties:
        '@type':
          type: string
          default: SoftwareadviceRatingDistribution
        one:
          anyOf:
            - type: integer
            - type: 'null'
        two:
          anyOf:
            - type: integer
            - type: 'null'
        three:
          anyOf:
            - type: integer
            - type: 'null'
        four:
          anyOf:
            - type: integer
            - type: 'null'
        five:
          anyOf:
            - type: integer
            - type: 'null'
      type: object
    SoftwareadviceFeature:
      properties:
        '@type':
          type: string
          default: SoftwareadviceFeature
        id:
          anyOf:
            - type: string
            - type: 'null'
        name:
          type: string
        rating:
          anyOf:
            - type: number
            - type: 'null'
        rating_count:
          anyOf:
            - type: integer
            - type: 'null'
      type: object
      required:
        - name
    SoftwareadviceIntegrationRef:
      properties:
        '@type':
          type: string
          default: SoftwareadviceIntegrationRef
        seo_id:
          anyOf:
            - type: string
            - type: 'null'
        name:
          type: string
        image:
          anyOf:
            - type: string
            - type: 'null'
        review_count:
          anyOf:
            - type: integer
            - type: 'null'
        url:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - name
    SoftwareadviceSentiment:
      properties:
        '@type':
          type: string
          default: SoftwareadviceSentiment
        headline:
          type: string
        content:
          anyOf:
            - type: string
            - type: 'null'
        kind:
          anyOf:
            - type: string
            - type: 'null'
        sentiment:
          anyOf:
            - type: integer
            - type: 'null'
        participation_count:
          anyOf:
            - type: integer
            - type: 'null'
      type: object
      required:
        - headline
    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
    SoftwareadvicePlan:
      properties:
        '@type':
          type: string
          default: SoftwareadvicePlan
        name:
          type: string
        starting_price:
          anyOf:
            - type: number
            - type: 'null'
        custom_price:
          anyOf:
            - type: string
            - type: 'null'
        payment_frequency:
          anyOf:
            - type: integer
            - type: 'null'
        pricing_model:
          anyOf:
            - type: integer
            - type: 'null'
        attributes:
          items:
            type: string
          type: array
          default: []
      type: object
      required:
        - name
  securitySchemes:
    AccessToken:
      type: apiKey
      in: header
      name: access-token
      description: API token from the dashboard

````