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

# /aliexpress/products/reviews

> Get buyer reviews for an AliExpress product by id or product URL. Each review carries the review text, star rating, buyer name/country/gender/avatar, review date, purchased SKU, shipping method, photos, helpful votes, follow-up review text and photos, and the structured review labels (aspect and value). Supports filtering by subset (all, photo reviews, follow-up reviews, local reviews) and translation into the requested language.

**Price:** 1 credit per 20 results



## OpenAPI

````yaml /openapi/e-commerce-marketplaces.json post /api/aliexpress/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/aliexpress/products/reviews:
    post:
      tags:
        - /aliexpress
      summary: /aliexpress/products/reviews
      description: >-
        Get buyer reviews for an AliExpress product by id or product URL. Each
        review carries the review text, star rating, buyer
        name/country/gender/avatar, review date, purchased SKU, shipping method,
        photos, helpful votes, follow-up review text and photos, and the
        structured review labels (aspect and value). Supports filtering by
        subset (all, photo reviews, follow-up reviews, local reviews) and
        translation into the requested language.


        **Price:** 1 credit per 20 results
      operationId: __api_aliexpress_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/AliexpressProductsReviewsPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/AliexpressProductReview'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    AliexpressProductsReviewsPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        language:
          $ref: '#/components/schemas/AliexpressLanguage'
          default: en_US
        currency:
          $ref: '#/components/schemas/AliexpressCurrency'
          default: USD
        product:
          type: string
          minLength: 1
        count:
          type: integer
          minimum: 1
        filter:
          $ref: '#/components/schemas/AliexpressReviewFilter'
          default: all
        translate:
          type: boolean
          default: true
      type: object
      required:
        - product
        - count
    AliexpressProductReview:
      properties:
        '@type':
          type: string
          default: AliexpressProductReview
        id:
          type: string
        text:
          anyOf:
            - type: string
            - type: 'null'
        rating:
          anyOf:
            - type: number
            - type: 'null'
        buyer_name:
          anyOf:
            - type: string
            - type: 'null'
        buyer_country:
          anyOf:
            - type: string
            - type: 'null'
        buyer_gender:
          anyOf:
            - type: string
            - type: 'null'
        buyer_image:
          anyOf:
            - type: string
            - type: 'null'
        created_at:
          anyOf:
            - type: integer
            - type: 'null'
        created_at_text:
          anyOf:
            - type: string
            - type: 'null'
        sku_id:
          anyOf:
            - type: string
            - type: 'null'
        sku_text:
          anyOf:
            - type: string
            - type: 'null'
        logistics:
          anyOf:
            - type: string
            - type: 'null'
        images:
          items:
            type: string
          type: array
          default: []
        up_vote_count:
          anyOf:
            - type: integer
            - type: 'null'
        down_vote_count:
          anyOf:
            - type: integer
            - type: 'null'
        is_anonymous:
          type: boolean
          default: false
        additional_text:
          anyOf:
            - type: string
            - type: 'null'
        additional_at_text:
          anyOf:
            - type: string
            - type: 'null'
        additional_images:
          items:
            type: string
          type: array
          default: []
        labels:
          items:
            $ref: '#/components/schemas/AliexpressProductReviewLabel'
          type: array
          default: []
      type: object
      required:
        - id
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    AliexpressLanguage:
      type: string
      enum:
        - ar_MA
        - de_DE
        - en_US
        - es_ES
        - fr_FR
        - in_ID
        - it_IT
        - iw_IL
        - ja_JP
        - ko_KR
        - nl_NL
        - pl_PL
        - pt_BR
        - ru_RU
        - th_TH
        - tr_TR
        - vi_VN
    AliexpressCurrency:
      type: string
      enum:
        - USD
        - EUR
        - GBP
        - CAD
        - AUD
        - RUB
        - BRL
        - CLP
        - JPY
        - KRW
        - CHF
        - SEK
        - PLN
        - ILS
        - NOK
        - DKK
        - NZD
        - MXN
        - COP
        - TRY
        - THB
        - SGD
        - MYR
        - PHP
        - IDR
        - INR
        - VND
        - HKD
        - TWD
        - AED
        - SAR
        - CZK
        - HUF
        - RON
        - BGN
        - UAH
        - KZT
        - ARS
        - EGP
        - ZAR
        - CNY
        - PEN
    AliexpressReviewFilter:
      type: string
      enum:
        - all
        - image
        - additional
        - local
    AliexpressProductReviewLabel:
      properties:
        '@type':
          type: string
          default: AliexpressProductReviewLabel
        name:
          type: string
        value:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - name
    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

````