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

# /revolve/products/reviews/summary

> Get the aggregate review picture for a REVOLVE product without downloading the reviews: average rating, review count, per-star breakdown, the fit consensus REVOLVE collects from reviewers (how the item sizes and its perceived quality), an AI-written summary paragraph, discussed topics with per-topic summaries and sentiment, quoted highlights, and where reviewers are shopping from.

**Price:** 1 credit

**⚠️ Common errors:** 412: Product not found (well-formed but nonexistent product code)



## OpenAPI

````yaml /openapi/e-commerce-marketplaces.json post /api/revolve/products/reviews/summary
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/revolve/products/reviews/summary:
    post:
      tags:
        - /revolve
      summary: /revolve/products/reviews/summary
      description: >-
        Get the aggregate review picture for a REVOLVE product without
        downloading the reviews: average rating, review count, per-star
        breakdown, the fit consensus REVOLVE collects from reviewers (how the
        item sizes and its perceived quality), an AI-written summary paragraph,
        discussed topics with per-topic summaries and sentiment, quoted
        highlights, and where reviewers are shopping from.


        **Price:** 1 credit


        **⚠️ Common errors:** 412: Product not found (well-formed but
        nonexistent product code)
      operationId: __api_revolve_products_reviews_summary_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/RevolveReviewsPayloadBase'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/RevolveReviewSummary'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    RevolveReviewsPayloadBase:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        product:
          type: string
          minLength: 1
      type: object
      required:
        - product
    RevolveReviewSummary:
      properties:
        '@type':
          type: string
          default: RevolveReviewSummary
        id:
          type: string
        rating:
          anyOf:
            - type: number
            - type: 'null'
        review_count:
          anyOf:
            - type: integer
            - type: 'null'
        rating_distribution:
          items:
            $ref: '#/components/schemas/RevolveRatingBucket'
          type: array
          default: []
        fit:
          anyOf:
            - $ref: '#/components/schemas/RevolveReviewFitSummary'
            - type: 'null'
        summary:
          anyOf:
            - type: string
            - type: 'null'
        topics:
          items:
            type: string
          type: array
          default: []
        topic_summaries:
          items:
            $ref: '#/components/schemas/RevolveReviewTopic'
          type: array
          default: []
        highlights:
          items:
            $ref: '#/components/schemas/RevolveReviewHighlight'
          type: array
          default: []
        countries:
          items:
            $ref: '#/components/schemas/RevolveReviewCountry'
          type: array
          default: []
      type: object
      required:
        - id
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    RevolveRatingBucket:
      properties:
        '@type':
          type: string
          default: RevolveRatingBucket
        rating:
          type: integer
        review_count:
          anyOf:
            - type: integer
            - type: 'null'
      type: object
      required:
        - rating
    RevolveReviewFitSummary:
      properties:
        '@type':
          type: string
          default: RevolveReviewFitSummary
        sizing:
          anyOf:
            - type: string
            - type: 'null'
        sizing_score:
          anyOf:
            - type: number
            - type: 'null'
        quality:
          anyOf:
            - type: string
            - type: 'null'
        quality_score:
          anyOf:
            - type: number
            - type: 'null'
      type: object
    RevolveReviewTopic:
      properties:
        '@type':
          type: string
          default: RevolveReviewTopic
        name:
          type: string
        display_name:
          anyOf:
            - type: string
            - type: 'null'
        summary:
          anyOf:
            - type: string
            - type: 'null'
        mention_count:
          anyOf:
            - type: integer
            - type: 'null'
        sentiment:
          anyOf:
            - type: number
            - type: 'null'
      type: object
      required:
        - name
    RevolveReviewHighlight:
      properties:
        '@type':
          type: string
          default: RevolveReviewHighlight
        review_id:
          type: string
        author:
          anyOf:
            - type: string
            - type: 'null'
        text:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - review_id
    RevolveReviewCountry:
      properties:
        '@type':
          type: string
          default: RevolveReviewCountry
        code:
          type: string
        name:
          anyOf:
            - type: string
            - type: 'null'
        review_count:
          anyOf:
            - type: integer
            - type: 'null'
      type: object
      required:
        - code
    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

````