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

# /idealo/products/reviews

> List the user reviews Idealo shows for one product on a chosen national Idealo site: the star rating, the review title and body, the author name, the date, which product variant the review refers to, whether the purchase was verified, and which review network the review came through.

**Price:** 10 credits per 10 results

**⚠️ Common errors:** 412: This national Idealo site does not list a product with that id



## OpenAPI

````yaml /openapi/price-comparison.json post /api/idealo/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/idealo/products/reviews:
    post:
      tags:
        - /idealo
      summary: /idealo/products/reviews
      description: >-
        List the user reviews Idealo shows for one product on a chosen national
        Idealo site: the star rating, the review title and body, the author
        name, the date, which product variant the review refers to, whether the
        purchase was verified, and which review network the review came through.


        **Price:** 10 credits per 10 results


        **⚠️ Common errors:** 412: This national Idealo site does not list a
        product with that id
      operationId: __api_idealo_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/IdealoProductsReviewsPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/IdealoProductReview'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    IdealoProductsReviewsPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        product:
          type: string
          minLength: 1
        country:
          $ref: '#/components/schemas/IdealoCountry'
          default: de
        count:
          type: integer
          maximum: 300
          minimum: 1
      type: object
      required:
        - product
        - count
    IdealoProductReview:
      properties:
        '@type':
          type: string
          default: IdealoProductReview
        id:
          type: string
        product_id:
          type: string
        rating:
          anyOf:
            - type: number
            - type: 'null'
        review_title:
          anyOf:
            - type: string
            - type: 'null'
        text:
          anyOf:
            - type: string
            - type: 'null'
        author:
          anyOf:
            - type: string
            - type: 'null'
        date:
          anyOf:
            - type: string
            - type: 'null'
        reference:
          anyOf:
            - type: string
            - type: 'null'
        is_verified:
          type: boolean
          default: false
        provider:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - id
        - product_id
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    IdealoCountry:
      type: string
      enum:
        - de
        - at
        - gb
        - fr
        - it
        - es
    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

````