> ## 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/products/search

> Search pult.ru for hi-fi, home cinema, pro audio, lighting and musical instrument products by free text. Returns product cards with the current price in RUB, the pre-discount price, the discount in percent and in rubles, stock and showroom availability, brand, the full category path, rating and review count, article number, barcode, dimensions and weight, and the manufacturer specification pairs.

**Price:** 1 credit



## OpenAPI

````yaml /openapi/e-commerce-marketplaces.json post /api/pult/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/pult/products/search:
    post:
      tags:
        - /pult
      summary: /pult/products/search
      description: >-
        Search pult.ru for hi-fi, home cinema, pro audio, lighting and musical
        instrument products by free text. Returns product cards with the current
        price in RUB, the pre-discount price, the discount in percent and in
        rubles, stock and showroom availability, brand, the full category path,
        rating and review count, article number, barcode, dimensions and weight,
        and the manufacturer specification pairs.


        **Price:** 1 credit
      operationId: __api_pult_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/PultProductsSearchPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/PultProduct'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    PultProductsSearchPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        query:
          type: string
          minLength: 1
        count:
          type: integer
          minimum: 1
        sort:
          $ref: '#/components/schemas/PultSearchSort'
          default: relevance
        sort_order:
          $ref: '#/components/schemas/PultSortOrder'
          default: desc
      type: object
      required:
        - query
        - count
    PultProduct:
      properties:
        '@type':
          type: string
          default: PultProduct
        id:
          type: string
        article:
          anyOf:
            - type: string
            - type: 'null'
        url:
          type: string
        name:
          anyOf:
            - type: string
            - type: 'null'
        base_name:
          anyOf:
            - type: string
            - type: 'null'
        original_name:
          anyOf:
            - type: string
            - type: 'null'
        alternative_name:
          anyOf:
            - type: string
            - type: 'null'
        barcode:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        images:
          items:
            type: string
          type: array
          default: []
        brand:
          anyOf:
            - $ref: '#/components/schemas/PultBrandRef'
            - type: 'null'
        categories:
          items:
            $ref: '#/components/schemas/PultCategoryRef'
          type: array
          default: []
        price:
          anyOf:
            - type: number
            - type: 'null'
        old_price:
          anyOf:
            - type: number
            - type: 'null'
        discount_percent:
          anyOf:
            - type: number
            - type: 'null'
        discount_amount:
          anyOf:
            - type: number
            - type: 'null'
        currency:
          type: string
          default: RUB
        is_price_shown:
          anyOf:
            - type: boolean
            - type: 'null'
        is_old_price_hidden:
          anyOf:
            - type: boolean
            - type: 'null'
        is_sale:
          anyOf:
            - type: boolean
            - type: 'null'
        is_available:
          anyOf:
            - type: boolean
            - type: 'null'
        is_buyable:
          anyOf:
            - type: boolean
            - type: 'null'
        is_active:
          anyOf:
            - type: boolean
            - type: 'null'
        is_expected:
          anyOf:
            - type: boolean
            - type: 'null'
        is_similar:
          anyOf:
            - type: boolean
            - type: 'null'
        has_audition_salon:
          anyOf:
            - type: boolean
            - type: 'null'
        rating:
          anyOf:
            - type: number
            - type: 'null'
        review_count:
          anyOf:
            - type: integer
            - type: 'null'
        weight_kg:
          anyOf:
            - type: number
            - type: 'null'
        height_mm:
          anyOf:
            - type: number
            - type: 'null'
        width_mm:
          anyOf:
            - type: number
            - type: 'null'
        length_mm:
          anyOf:
            - type: number
            - type: 'null'
        sort_weight:
          anyOf:
            - type: integer
            - type: 'null'
        badges:
          items:
            $ref: '#/components/schemas/PultBadge'
          type: array
          default: []
        specs:
          items:
            $ref: '#/components/schemas/PultSpec'
          type: array
          default: []
      type: object
      required:
        - id
        - url
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    PultSearchSort:
      type: string
      enum:
        - relevance
        - price
        - name
        - popularity
    PultSortOrder:
      type: string
      enum:
        - asc
        - desc
    PultBrandRef:
      properties:
        '@type':
          type: string
          default: PultBrandRef
        id:
          anyOf:
            - type: string
            - type: 'null'
        name:
          anyOf:
            - type: string
            - type: 'null'
        alias:
          anyOf:
            - type: string
            - type: 'null'
        url:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    PultCategoryRef:
      properties:
        '@type':
          type: string
          default: PultCategoryRef
        id:
          anyOf:
            - type: string
            - type: 'null'
        name:
          anyOf:
            - type: string
            - type: 'null'
        url:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    PultBadge:
      properties:
        '@type':
          type: string
          default: PultBadge
        name:
          type: string
        url:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - name
    PultSpec:
      properties:
        '@type':
          type: string
          default: PultSpec
        name:
          type: string
        value:
          type: string
        group:
          anyOf:
            - type: string
            - type: 'null'
        spec_type:
          anyOf:
            - type: string
            - type: 'null'
        hint:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - name
        - 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

````