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

# /ceneo/products/search

> Search Ceneo products by free-text query, by category, or both, and narrow the result with a price range, the Buy Now and promotional-price switches, and any category-specific attribute the category exposes - multi-choice, colour, numeric range or free text. Each row carries the product id and URL, name, brand, category, image, the cheapest offer price in PLN, how many shops sell it, buyer rating and rating count, the number of colour or capacity variants, the attribute summary Ceneo prints on the card, the free-delivery flag and how many units sold recently.

**Price:** 1 credit



## OpenAPI

````yaml /openapi/price-comparison.json post /api/ceneo/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/ceneo/products/search:
    post:
      tags:
        - /ceneo
      summary: /ceneo/products/search
      description: >-
        Search Ceneo products by free-text query, by category, or both, and
        narrow the result with a price range, the Buy Now and promotional-price
        switches, and any category-specific attribute the category exposes -
        multi-choice, colour, numeric range or free text. Each row carries the
        product id and URL, name, brand, category, image, the cheapest offer
        price in PLN, how many shops sell it, buyer rating and rating count, the
        number of colour or capacity variants, the attribute summary Ceneo
        prints on the card, the free-delivery flag and how many units sold
        recently.


        **Price:** 1 credit
      operationId: __api_ceneo_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/CeneoProductsSearchPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/CeneoProductCard'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    CeneoProductsSearchPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        query:
          anyOf:
            - type: string
            - type: 'null'
        category:
          anyOf:
            - type: string
            - type: 'null'
        count:
          type: integer
          minimum: 1
        sort:
          $ref: '#/components/schemas/CeneoListingSort'
          default: recommended
        price_min:
          anyOf:
            - type: number
              minimum: 0
            - type: 'null'
        price_max:
          anyOf:
            - type: number
              minimum: 0
            - type: 'null'
        in_stock:
          anyOf:
            - type: boolean
            - type: 'null'
        on_promo:
          anyOf:
            - type: boolean
            - type: 'null'
        attributes:
          anyOf:
            - additionalProperties:
                items:
                  type: string
                type: array
              type: object
            - type: 'null'
        attribute_ranges:
          anyOf:
            - additionalProperties:
                items:
                  type: string
                type: array
              type: object
            - type: 'null'
        attribute_text:
          anyOf:
            - additionalProperties:
                type: string
              type: object
            - type: 'null'
      type: object
      required:
        - count
    CeneoProductCard:
      properties:
        '@type':
          type: string
          default: CeneoProductCard
        id:
          type: string
        url:
          type: string
        name:
          anyOf:
            - type: string
            - type: 'null'
        brand:
          anyOf:
            - type: string
            - type: 'null'
        category:
          anyOf:
            - type: string
            - type: 'null'
        category_id:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        price_min:
          anyOf:
            - type: number
            - type: 'null'
        currency:
          anyOf:
            - type: string
            - type: 'null'
        offer_count:
          anyOf:
            - type: integer
            - type: 'null'
        rating:
          anyOf:
            - type: number
            - type: 'null'
        rating_count:
          anyOf:
            - type: integer
            - type: 'null'
        variant_count:
          anyOf:
            - type: integer
            - type: 'null'
        parameters:
          additionalProperties:
            type: string
          type: object
          default: {}
        recently_purchased_count:
          anyOf:
            - type: integer
            - type: 'null'
        has_free_delivery:
          anyOf:
            - type: boolean
            - type: 'null'
        free_delivery_offer_count:
          anyOf:
            - type: integer
            - type: 'null'
        is_sponsored:
          type: boolean
          default: false
      type: object
      required:
        - id
        - url
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    CeneoListingSort:
      type: string
      enum:
        - recommended
        - popularity
        - price_asc
        - price_desc
        - rating_desc
    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

````