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

# /pcpartpicker/products/filters

> List the filter groups a PCPartPicker category publishes: every option group with its selectable labels, every numeric group with its unit and the lowest and highest values currently in the catalogue, and the orderings the category offers.

**Price:** 10 credits



## OpenAPI

````yaml /openapi/price-comparison.json post /api/pcpartpicker/products/filters
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/pcpartpicker/products/filters:
    post:
      tags:
        - /pcpartpicker
      summary: /pcpartpicker/products/filters
      description: >-
        List the filter groups a PCPartPicker category publishes: every option
        group with its selectable labels, every numeric group with its unit and
        the lowest and highest values currently in the catalogue, and the
        orderings the category offers.


        **Price:** 10 credits
      operationId: __api_pcpartpicker_products_filters_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/PcpartpickerProductsFiltersPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/PcpartpickerFilterGroup'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    PcpartpickerProductsFiltersPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        category:
          $ref: '#/components/schemas/PcpartpickerCategory'
        region:
          $ref: '#/components/schemas/PcpartpickerRegion'
          default: us
        count:
          type: integer
          minimum: 1
      type: object
      required:
        - category
        - count
    PcpartpickerFilterGroup:
      properties:
        '@type':
          type: string
          default: PcpartpickerFilterGroup
        name:
          type: string
        category:
          anyOf:
            - type: string
            - type: 'null'
        kind:
          type: string
        unit:
          anyOf:
            - type: string
            - type: 'null'
        options:
          items:
            $ref: '#/components/schemas/PcpartpickerFilterOption'
          type: array
          default: []
        minimum:
          anyOf:
            - type: number
            - type: 'null'
        maximum:
          anyOf:
            - type: number
            - type: 'null'
      type: object
      required:
        - name
        - kind
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    PcpartpickerCategory:
      type: string
      enum:
        - cpu
        - cpu-cooler
        - motherboard
        - memory
        - internal-hard-drive
        - video-card
        - power-supply
        - case
        - headphones
        - keyboard
        - mouse
        - speakers
        - webcam
        - monitor
        - os
        - sound-card
        - wired-network-card
        - wireless-network-card
        - case-fan
        - fan-controller
        - thermal-paste
        - external-hard-drive
        - optical-drive
        - ups
    PcpartpickerRegion:
      type: string
      enum:
        - au
        - at
        - be
        - ca
        - cz
        - dk
        - fi
        - fr
        - de
        - hu
        - ie
        - it
        - nl
        - nz
        - 'no'
        - pl
        - pt
        - ro
        - sa
        - sk
        - es
        - se
        - uk
        - us
    PcpartpickerFilterOption:
      properties:
        '@type':
          type: string
          default: PcpartpickerFilterOption
        label:
          type: string
        is_common:
          anyOf:
            - type: boolean
            - type: 'null'
      type: object
      required:
        - label
    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

````