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

# /getapp/categories/products

> List GetApp (getapp.com) products within a software category with full facet filtering

**Price:** 10 credits per 25 results

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



## OpenAPI

````yaml /openapi/reviews-software-employer.json post /api/getapp/categories/products
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/getapp/categories/products:
    post:
      tags:
        - /getapp
      summary: /getapp/categories/products
      description: >-
        List GetApp (getapp.com) products within a software category with full
        facet filtering


        **Price:** 10 credits per 25 results


        **⚠️ Common errors:** 412: Category not found
      operationId: __api_getapp_categories_products_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/GetappCategoryProductsPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/GetappListing'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    GetappCategoryProductsPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        category:
          type: string
          minLength: 1
        count:
          type: integer
          minimum: 1
        sort:
          $ref: '#/components/schemas/GetappCategorySort'
          default: sponsored
        min_rating:
          anyOf:
            - type: integer
              maximum: 4
              minimum: 2
            - type: 'null'
        pricing_model:
          anyOf:
            - $ref: '#/components/schemas/GetappPricingModel'
            - type: 'null'
        device:
          anyOf:
            - $ref: '#/components/schemas/GetappDevice'
            - type: 'null'
        organization_type:
          anyOf:
            - $ref: '#/components/schemas/GetappOrganizationType'
            - type: 'null'
        feature:
          anyOf:
            - type: string
            - type: 'null'
        integration:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - category
        - count
    GetappListing:
      properties:
        '@type':
          type: string
          default: GetappListing
        id:
          type: string
        seo_id:
          anyOf:
            - type: string
            - type: 'null'
        alias:
          type: string
        name:
          type: string
        tagline:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        category:
          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'
        recommendation_rating:
          anyOf:
            - type: number
            - type: 'null'
        review_distribution:
          anyOf:
            - $ref: '#/components/schemas/GetappListingDistribution'
            - type: 'null'
        is_premium:
          anyOf:
            - type: boolean
            - type: 'null'
        is_category_leader:
          anyOf:
            - type: boolean
            - type: 'null'
        popular_features:
          items:
            type: string
          type: array
          default: []
        url:
          anyOf:
            - type: string
            - type: 'null'
        position:
          type: integer
      type: object
      required:
        - id
        - alias
        - name
        - position
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    GetappCategorySort:
      type: string
      enum:
        - sponsored
        - user_rating
    GetappPricingModel:
      type: string
      enum:
        - free
        - open-source
        - free-trial
        - one-time-license
        - subscription
    GetappDevice:
      type: string
      enum:
        - android
        - chromebook
        - ipad
        - iphone
        - linux
        - mac
        - web-based
        - windows
    GetappOrganizationType:
      type: string
      enum:
        - freelancers
        - large-enterprises
        - mid-size-business
        - non-profits
        - public-administrations
        - small-business
    GetappListingDistribution:
      properties:
        '@type':
          type: string
          default: GetappListingDistribution
        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
    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

````