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

> Get one Ceneo product by numeric id or product URL: name, brand, category path, marketing summary and full description, cheapest and dearest listed offer price in PLN plus the last price Ceneo saw once nobody stocks it any more, number of shops offering it, availability, buyer rating with its star breakdown, per-feature pro/con vote counts, review and question counts, image gallery, the grouped specification sheet, and the other products Ceneo groups into the same model family.

**Price:** 1 credit

**⚠️ Common errors:** 412: No Ceneo product with that id.



## OpenAPI

````yaml /openapi/price-comparison.json post /api/ceneo/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/ceneo/products:
    post:
      tags:
        - /ceneo
      summary: /ceneo/products
      description: >-
        Get one Ceneo product by numeric id or product URL: name, brand,
        category path, marketing summary and full description, cheapest and
        dearest listed offer price in PLN plus the last price Ceneo saw once
        nobody stocks it any more, number of shops offering it, availability,
        buyer rating with its star breakdown, per-feature pro/con vote counts,
        review and question counts, image gallery, the grouped specification
        sheet, and the other products Ceneo groups into the same model family.


        **Price:** 1 credit


        **⚠️ Common errors:** 412: No Ceneo product with that id.
      operationId: __api_ceneo_products_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CeneoProductsPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/CeneoProduct'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    CeneoProductsPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        product:
          type: string
          minLength: 1
      type: object
      required:
        - product
    CeneoProduct:
      properties:
        '@type':
          type: string
          default: CeneoProduct
        id:
          type: string
        url:
          type: string
        name:
          anyOf:
            - type: string
            - type: 'null'
        brand:
          anyOf:
            - type: string
            - type: 'null'
        brand_url:
          anyOf:
            - type: string
            - type: 'null'
        category:
          anyOf:
            - type: string
            - type: 'null'
        category_id:
          anyOf:
            - type: string
            - type: 'null'
        breadcrumbs:
          items:
            $ref: '#/components/schemas/CeneoBreadcrumb'
          type: array
          default: []
        summary:
          anyOf:
            - type: string
            - type: 'null'
        price_min:
          anyOf:
            - type: number
            - type: 'null'
        price_max:
          anyOf:
            - type: number
            - type: 'null'
        last_price:
          anyOf:
            - type: number
            - type: 'null'
        currency:
          anyOf:
            - type: string
            - type: 'null'
        offer_count:
          anyOf:
            - type: integer
            - type: 'null'
        is_in_stock:
          anyOf:
            - type: boolean
            - type: 'null'
        rating:
          anyOf:
            - type: number
            - type: 'null'
        rating_count:
          anyOf:
            - type: integer
            - type: 'null'
        rating_breakdown:
          anyOf:
            - $ref: '#/components/schemas/CeneoRatingBreakdown'
            - type: 'null'
        review_count:
          anyOf:
            - type: integer
            - type: 'null'
        question_count:
          anyOf:
            - type: integer
            - type: 'null'
        features:
          items:
            $ref: '#/components/schemas/CeneoProductFeature'
          type: array
          default: []
        recently_purchased_count:
          anyOf:
            - type: integer
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        images:
          items:
            type: string
          type: array
          default: []
        specifications:
          items:
            $ref: '#/components/schemas/CeneoSpecGroup'
          type: array
          default: []
        variants:
          items:
            $ref: '#/components/schemas/CeneoProductVariant'
          type: array
          default: []
        family_id:
          anyOf:
            - type: string
            - type: 'null'
        family_name:
          anyOf:
            - type: string
            - type: 'null'
        energy_label_url:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - id
        - url
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    CeneoBreadcrumb:
      properties:
        '@type':
          type: string
          default: CeneoBreadcrumb
        id:
          anyOf:
            - type: string
            - type: 'null'
        alias:
          anyOf:
            - type: string
            - type: 'null'
        name:
          anyOf:
            - type: string
            - type: 'null'
        url:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    CeneoRatingBreakdown:
      properties:
        '@type':
          type: string
          default: CeneoRatingBreakdown
        star_5_percent:
          anyOf:
            - type: number
            - type: 'null'
        star_4_percent:
          anyOf:
            - type: number
            - type: 'null'
        star_3_percent:
          anyOf:
            - type: number
            - type: 'null'
        star_2_percent:
          anyOf:
            - type: number
            - type: 'null'
        star_1_percent:
          anyOf:
            - type: number
            - type: 'null'
      type: object
    CeneoProductFeature:
      properties:
        '@type':
          type: string
          default: CeneoProductFeature
        id:
          anyOf:
            - type: string
            - type: 'null'
        name:
          anyOf:
            - type: string
            - type: 'null'
        positive_vote_count:
          anyOf:
            - type: integer
            - type: 'null'
        negative_vote_count:
          anyOf:
            - type: integer
            - type: 'null'
      type: object
    CeneoSpecGroup:
      properties:
        '@type':
          type: string
          default: CeneoSpecGroup
        name:
          anyOf:
            - type: string
            - type: 'null'
        values:
          additionalProperties:
            type: string
          type: object
          default: {}
      type: object
    CeneoProductVariant:
      properties:
        '@type':
          type: string
          default: CeneoProductVariant
        id:
          type: string
        name:
          anyOf:
            - type: string
            - type: 'null'
        url:
          anyOf:
            - type: string
            - type: 'null'
        price_min:
          anyOf:
            - type: number
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - id
    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

````