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

# /pult/categories/filters

> List the filters one pult.ru category offers: the brands sold in it, the price bounds, the stock switch and the technical attributes of that category, each with its id and either its selectable values or its numeric bounds. The ids and values are the ones the category product listing accepts.

**Price:** 1 credit

**⚠️ Common errors:** 412: No such category id on pult.ru.



## OpenAPI

````yaml /openapi/e-commerce-marketplaces.json post /api/pult/categories/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/pult/categories/filters:
    post:
      tags:
        - /pult
      summary: /pult/categories/filters
      description: >-
        List the filters one pult.ru category offers: the brands sold in it, the
        price bounds, the stock switch and the technical attributes of that
        category, each with its id and either its selectable values or its
        numeric bounds. The ids and values are the ones the category product
        listing accepts.


        **Price:** 1 credit


        **⚠️ Common errors:** 412: No such category id on pult.ru.
      operationId: __api_pult_categories_filters_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/PultCategoriesFiltersPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/PultCategoryFilter'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    PultCategoriesFiltersPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        category_id:
          type: string
          minLength: 1
        count:
          type: integer
          minimum: 1
      type: object
      required:
        - category_id
        - count
    PultCategoryFilter:
      properties:
        '@type':
          type: string
          default: PultCategoryFilter
        id:
          type: string
        name:
          anyOf:
            - type: string
            - type: 'null'
        hint:
          anyOf:
            - type: string
            - type: 'null'
        filter_type:
          type: string
        values:
          items:
            $ref: '#/components/schemas/PultCategoryFilterValue'
          type: array
          default: []
        min_value:
          anyOf:
            - type: number
            - type: 'null'
        max_value:
          anyOf:
            - type: number
            - type: 'null'
      type: object
      required:
        - id
        - filter_type
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    PultCategoryFilterValue:
      properties:
        '@type':
          type: string
          default: PultCategoryFilterValue
        value:
          type: string
        name:
          anyOf:
            - type: string
            - type: 'null'
        url:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - value
    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

````