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

# /n11/products/reviews

> Get customer reviews for an N11 product by product id (or product URL): rating, text, author, date, helpful count, seller and review photos. Supports sorting and filtering by star rating or topic.

**Price:** 1 credit per 8 results



## OpenAPI

````yaml /openapi/e-commerce-marketplaces.json post /api/n11/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/n11/products/reviews:
    post:
      tags:
        - /n11
      summary: /n11/products/reviews
      description: >-
        Get customer reviews for an N11 product by product id (or product URL):
        rating, text, author, date, helpful count, seller and review photos.
        Supports sorting and filtering by star rating or topic.


        **Price:** 1 credit per 8 results
      operationId: __api_n11_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/N11ProductReviewsPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/N11ProductReview'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    N11ProductReviewsPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        product:
          type: string
          minLength: 1
        count:
          type: integer
          minimum: 1
        sort:
          $ref: '#/components/schemas/N11ReviewSort'
          default: RECENT
        rating:
          anyOf:
            - type: integer
              maximum: 5
              minimum: 1
            - type: 'null'
        topic:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - product
        - count
    N11ProductReview:
      properties:
        '@type':
          type: string
          default: N11ProductReview
        id:
          type: string
        rating:
          anyOf:
            - type: integer
            - type: 'null'
        text:
          anyOf:
            - type: string
            - type: 'null'
        author:
          anyOf:
            - type: string
            - type: 'null'
        created_at:
          anyOf:
            - type: integer
            - type: 'null'
        created_date:
          anyOf:
            - type: string
            - type: 'null'
        helpful_count:
          anyOf:
            - type: integer
            - type: 'null'
        useless_count:
          anyOf:
            - type: integer
            - type: 'null'
        seller_name:
          anyOf:
            - type: string
            - type: 'null'
        images:
          items:
            type: string
          type: array
          default: []
      type: object
      required:
        - id
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    N11ReviewSort:
      type: string
      enum:
        - RECENT
        - HELPFUL
        - FAVORABLE
        - CRITICAL
    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

````