> ## Documentation Index
> Fetch the complete documentation index at: https://docs.way.co/llms.txt
> Use this file to discover all available pages before exploring further.

# Get reviews for experience

> Returns guest reviews for an experience.



## OpenAPI

````yaml get /v1/experiences/{experienceId}/reviews
openapi: 3.0.0
info:
  title: Way Partner API
  description: >-
    REST API for Way partners: list experiences, check availability, run
    checkout, and manage bookings.
  version: '1.0'
servers:
  - url: https://api.letsway.com
    description: Production.
  - url: https://api.staging.letsway.com
    description: Staging.
security: []
tags:
  - name: Listings
    description: 'Retrieve the listings a brand offers: experiences, events, and resources.'
  - name: Availability
    description: Dates, sessions, and price tiers for scheduling a booking.
  - name: Carts & Checkout
    description: >-
      Payment intents and booking creation. The cart ID is a client-generated
      UUID; there is no create-cart endpoint.
  - name: Bookings
    description: Retrieve, cancel, and reschedule bookings.
  - name: Experiences
    description: Experience details, settings, custom questions, reviews, and hosts.
  - name: Brand Configuration
    description: Brand settings, taxonomy, terms, and promotion code validation.
  - name: Waitlists
    description: Waitlists for sold-out sessions and invitation handling.
  - name: Integrations
    description: Configured integrations, analytics, and room-charge validation.
  - name: Organizations
    description: Organization-level access across brands.
paths:
  /v1/experiences/{experienceId}/reviews:
    get:
      tags:
        - Experiences
      summary: Get reviews for experience
      description: Returns guest reviews for an experience.
      operationId: ReviewPublicController_index
      parameters:
        - $ref: '#/components/parameters/experienceIdPath_53'
        - $ref: '#/components/parameters/limitQuery_54'
        - $ref: '#/components/parameters/pageQuery_55'
      responses:
        '200':
          description: Reviews.
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ReviewPaginationDto'
              example:
                items: []
                meta:
                  totalItems: 0
                  itemCount: 0
                  itemsPerPage: 10
                  totalPages: 0
                  currentPage: 1
                links:
                  first: >-
                    /v1/experiences/c99f70ee-1c0e-4534-a31a-96d5d966cc4b/reviews?&limit=10
                  previous: ''
                  next: ''
                  last: ''
      security:
        - Brand-API-Key: []
components:
  parameters:
    experienceIdPath_53:
      name: experienceId
      in: path
      schema:
        type: string
      required: true
      description: Only results for this experience.
      example: c99f70ee-1c0e-4534-a31a-96d5d966cc4b
    limitQuery_54:
      name: limit
      in: query
      schema:
        type: number
      description: Number of items per page.
      example: 10
      required: false
    pageQuery_55:
      name: page
      in: query
      schema:
        type: number
      description: Page number to return, starting at 1.
      example: 1
      required: false
  schemas:
    ReviewPaginationDto:
      type: object
      properties:
        items:
          description: List of experiences.
          type: array
          items:
            $ref: '#/components/schemas/ReviewDto'
        links:
          description: Pagination links.
          allOf:
            - $ref: '#/components/schemas/PaginationLinksDto'
      required:
        - items
        - links
    ReviewDto:
      type: object
      properties:
        id:
          type: string
          description: The unique identifier of the review.
          example: review-123
        rating:
          type: number
          description: Rating given in the review (out of 5)
          example: 4.5
        recommendability:
          type: number
          description: Recommendability score of the experience.
          example: 90
        text:
          type: string
          description: Review text content.
          example: Amazing experience with professional instructors!
        experience:
          description: Summary of the experience reviewed.
          allOf:
            - $ref: '#/components/schemas/ExperienceSummaryDto'
        reviewer:
          description: Details of the reviewer.
          allOf:
            - $ref: '#/components/schemas/ReviewerDto'
        hostedBy:
          description: Details of the host.
          allOf:
            - $ref: '#/components/schemas/HostedByDto'
        reviewedAt:
          format: date-time
          type: string
          description: Timestamp when the review was created.
          example: '2024-03-01T12:00:00Z'
        experiencedDate:
          type: string
          description: Date when the experience was taken, in ISO format.
          example: '2024-02-25T18:30:00Z'
      required:
        - id
        - rating
        - recommendability
        - text
        - reviewer
        - reviewedAt
    PaginationLinksDto:
      type: object
      properties:
        first:
          type: string
          description: Link to the first page.
        previous:
          type: string
          description: Link to the previous page.
        next:
          type: string
          description: Link to the next page.
        last:
          type: string
          description: Link to the last page.
    ExperienceSummaryDto:
      type: object
      properties:
        id:
          type: string
          description: The unique identifier of the experience.
          example: exp-123
        title:
          type: string
          description: The title of the experience.
          example: Scuba Diving in Bali
      required:
        - id
        - title
    ReviewerDto:
      type: object
      properties:
        id:
          type: string
          description: The unique identifier of the user.
          example: user-123
        firstName:
          type: string
          description: First name of the user.
          example: John
        lastName:
          type: string
          description: Last name of the user.
          example: Doe
        fullName:
          type: object
          description: Full name of the user.
          example: John Doe
          nullable: true
        emailAddress:
          type: string
          description: Email address of the user.
          example: john.doe@example.com
        phoneNumber:
          type: string
          description: Phone number of the user.
          example: '+1234567890'
        profilePicture:
          description: Profile picture of the user.
          nullable: true
          allOf:
            - $ref: '#/components/schemas/IMediaReferenceDto'
      required:
        - id
        - firstName
        - lastName
        - fullName
        - emailAddress
        - phoneNumber
    HostedByDto:
      type: object
      properties:
        id:
          type: string
          description: The unique identifier of the user.
          example: user-123
        firstName:
          type: string
          description: First name of the user.
          example: John
        lastName:
          type: string
          description: Last name of the user.
          example: Doe
        fullName:
          type: object
          description: Full name of the user.
          example: John Doe
          nullable: true
        emailAddress:
          type: string
          description: Email address of the user.
          example: john.doe@example.com
        phoneNumber:
          type: string
          description: Phone number of the user.
          example: '+1234567890'
        profilePicture:
          description: Profile picture of the user.
          nullable: true
          allOf:
            - $ref: '#/components/schemas/IMediaReferenceDto'
      required:
        - id
        - firstName
        - lastName
        - fullName
        - emailAddress
        - phoneNumber
    IMediaReferenceDto:
      type: object
      properties:
        id:
          type: string
          description: The unique identifier of the media.
          example: media-123
        kind:
          type: string
          description: The kind of media (Gallery or Cover)
          enum:
            - gallery
            - cover
        uri:
          type: object
          description: Media URIs for different resolutions.
          example:
            original: https://example.com/image.jpg
            480w: https://example.com/480w.jpg
      required:
        - id
        - uri
  securitySchemes:
    Brand-API-Key:
      type: http
      scheme: bearer
      description: >-
        Your brand's secret API key, e.g. `Bearer
        way_sk_live_bhEqcn0i1fRoUEHBPjJkQA`. Older `Way-Brand-Id` +
        `Way-Secret-Key` credentials still work: see [Legacy
        authentication](/legacy-authentication).

````