---
title: "Get the reviews of a hotel"
method: GET
path: "/data/reviews"
tags: ["Hotels"]
---

# Get the reviews of a hotel

`GET /data/reviews`

## Overview

Retrieve guest reviews and ratings for a specific hotel. Display authentic feedback from previous guests to help users make informed booking decisions.

## When to Use

- **Review display** - Show guest reviews on hotel detail pages
- **Rating aggregation** - Display average ratings and review counts
- **Trust building** - Show authentic guest feedback
- **Decision support** - Help users evaluate hotels before booking

## What You Get

- **Guest reviews** - Individual review text and ratings
- **Review dates** - When each review was written
- **Ratings** - Numerical and textual ratings
- **Guest feedback** - Detailed comments from previous guests

## Quick Start

Provide the `hotelId` as a query parameter. Returns all reviews for that hotel with ratings and comments.

## Query parameters

- `hotelId` string, required
- `limit` integer
- `offset` integer
- `timeout` number, float
- `getSentiment` boolean
- `language` string

## Response `200`

A list of hotel reviews

- object
  - `data` object[]
    - `averageScore` number, required — Average score of the review
    - `country` string, required — Country of the reviewer
    - `type` string, required — Type of traveler (e.g., business, solo)
    - `name` string, required — Name of the reviewer
    - `date` string, required — Date and time of the review
    - `headline` string — Headline of the review
    - `language` string — Language of the review
    - `pros` string — Pros mentioned in the review
    - `cons` string — Cons mentioned in the review
    - `source` string — The source of the review
  - `total` integer

## Other responses

- `400` — Bad Request
- `401` — Unauthorized

---

[API](https://skmtc.net/liteapi/apis/api-search.md) · [All operations](https://skmtc.net/liteapi/apis/api-search/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/liteapi/api-search/versions/315ba2a4dcf4/schema)
