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

# /citilink/products/reviews

> List buyer reviews of one citilink.ru product: star rating, the separate 'pros', 'cons' and free-text sections, publication date, author nickname and expert flag, helpful and unhelpful vote counts, and whether the review came from an external source. Optionally prepend the average rating with the per-star breakdown.

**Price:** 1 credit

**⚠️ Common errors:** 412: No such product on citilink.ru, or the product has no review container., 422: Unknown city code — take one from citilink/cities.



## OpenAPI

````yaml /openapi/e-commerce-marketplaces.json post /api/citilink/products/reviews
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/citilink/products/reviews:
    post:
      tags:
        - /citilink
      summary: /citilink/products/reviews
      description: >-
        List buyer reviews of one citilink.ru product: star rating, the separate
        'pros', 'cons' and free-text sections, publication date, author nickname
        and expert flag, helpful and unhelpful vote counts, and whether the
        review came from an external source. Optionally prepend the average
        rating with the per-star breakdown.


        **Price:** 1 credit


        **⚠️ Common errors:** 412: No such product on citilink.ru, or the
        product has no review container., 422: Unknown city code — take one from
        citilink/cities.
      operationId: __api_citilink_products_reviews_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CitilinkReviewsPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  anyOf:
                    - $ref: '#/components/schemas/CitilinkReview'
                    - $ref: '#/components/schemas/CitilinkRatingBreakdown'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    CitilinkReviewsPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        city:
          type: string
          minLength: 1
          default: msk_cl
        product:
          type: string
          minLength: 1
        count:
          type: integer
          minimum: 1
        sort:
          $ref: '#/components/schemas/CitilinkOpinionSort'
          default: helpful
        ratings:
          items:
            $ref: '#/components/schemas/CitilinkRatingValue'
          type: array
          default: []
        include_variant_group:
          type: boolean
          default: true
        with_summary:
          type: boolean
          default: false
      type: object
      required:
        - product
        - count
    CitilinkReview:
      properties:
        '@type':
          type: string
          default: CitilinkReview
        id:
          type: string
        product_id:
          anyOf:
            - type: string
            - type: 'null'
        product_name:
          anyOf:
            - type: string
            - type: 'null'
        rating:
          anyOf:
            - type: integer
            - type: 'null'
        pros:
          anyOf:
            - type: string
            - type: 'null'
        cons:
          anyOf:
            - type: string
            - type: 'null'
        text:
          anyOf:
            - type: string
            - type: 'null'
        published_at:
          anyOf:
            - type: string
            - type: 'null'
        created_at:
          anyOf:
            - type: string
            - type: 'null'
        author:
          anyOf:
            - type: string
            - type: 'null'
        author_id:
          anyOf:
            - type: string
            - type: 'null'
        is_expert:
          anyOf:
            - type: boolean
            - type: 'null'
        is_best:
          anyOf:
            - type: boolean
            - type: 'null'
        is_from_variant_group:
          anyOf:
            - type: boolean
            - type: 'null'
        status:
          anyOf:
            - type: string
            - type: 'null'
        source:
          anyOf:
            - type: string
            - type: 'null'
        source_description:
          anyOf:
            - type: string
            - type: 'null'
        vendor:
          anyOf:
            - type: string
            - type: 'null'
        likes:
          anyOf:
            - type: integer
            - type: 'null'
        dislikes:
          anyOf:
            - type: integer
            - type: 'null'
      type: object
      required:
        - id
    CitilinkRatingBreakdown:
      properties:
        '@type':
          type: string
          default: CitilinkRatingBreakdown
        product_id:
          type: string
        rating:
          anyOf:
            - type: number
            - type: 'null'
        total:
          anyOf:
            - type: integer
            - type: 'null'
        total_for_this_product:
          anyOf:
            - type: integer
            - type: 'null'
        has_variant_group:
          anyOf:
            - type: boolean
            - type: 'null'
        stars_5:
          anyOf:
            - type: integer
            - type: 'null'
        stars_4:
          anyOf:
            - type: integer
            - type: 'null'
        stars_3:
          anyOf:
            - type: integer
            - type: 'null'
        stars_2:
          anyOf:
            - type: integer
            - type: 'null'
        stars_1:
          anyOf:
            - type: integer
            - type: 'null'
      type: object
      required:
        - product_id
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    CitilinkOpinionSort:
      type: string
      enum:
        - helpful
        - new
        - old
        - best
        - worst
    CitilinkRatingValue:
      type: integer
      enum:
        - 1
        - 2
        - 3
        - 4
        - 5
    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

````