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

# /misumi/products/reviews

> List customer reviews of a MISUMI (ミスミ) series: star rating, title, review text, post date, how many people found it helpful, and the manufacturer's public reply where one was given. Can be filtered to one star rating and ordered by rating, recency or helpfulness.

**Price:** 1 credit

**⚠️ Common errors:** 412: Series not found (well-formed series code or part number, but no such product on MISUMI)



## OpenAPI

````yaml /openapi/e-commerce-marketplaces.json post /api/misumi/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/misumi/products/reviews:
    post:
      tags:
        - /misumi
      summary: /misumi/products/reviews
      description: >-
        List customer reviews of a MISUMI (ミスミ) series: star rating, title,
        review text, post date, how many people found it helpful, and the
        manufacturer's public reply where one was given. Can be filtered to one
        star rating and ordered by rating, recency or helpfulness.


        **Price:** 1 credit


        **⚠️ Common errors:** 412: Series not found (well-formed series code or
        part number, but no such product on MISUMI)
      operationId: __api_misumi_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/MisumiReviewsPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/MisumiReview'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    MisumiReviewsPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        product:
          type: string
          minLength: 1
        count:
          type: integer
          minimum: 1
        rating:
          anyOf:
            - type: integer
              maximum: 5
              minimum: 1
            - type: 'null'
        sort:
          $ref: '#/components/schemas/MisumiReviewSort'
          default: rating_desc
      type: object
      required:
        - product
        - count
    MisumiReview:
      properties:
        '@type':
          type: string
          default: MisumiReview
        id:
          type: string
        series_id:
          type: string
        series_url:
          type: string
        review_title:
          anyOf:
            - type: string
            - type: 'null'
        text:
          anyOf:
            - type: string
            - type: 'null'
        rating:
          anyOf:
            - type: number
            - type: 'null'
        helpful_count:
          anyOf:
            - type: integer
            - type: 'null'
        created_at:
          anyOf:
            - type: integer
            - type: 'null'
        created_date:
          anyOf:
            - type: string
            - type: 'null'
        reply:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - id
        - series_id
        - series_url
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    MisumiReviewSort:
      type: string
      enum:
        - rating_desc
        - most_helpful
        - newest
        - rating_asc
    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

````