Skip to main content
GET
/
data
/
reviews
Get the reviews of a hotel
curl --request GET \
  --url https://api.liteapi.travel/v3.0/data/reviews \
  --header 'X-API-Key: <api-key>'
{
  "data": [
    {
      "averageScore": 8,
      "country": "ps",
      "type": "solo traveller",
      "name": "Hala",
      "date": "2026-07-16 07:52:57",
      "headline": "Very good",
      "language": "en",
      "pros": "",
      "cons": "",
      "source": "Nuitee"
    },
    {
      "averageScore": 8,
      "country": "ma",
      "type": "solo traveller",
      "name": "Saharian.prince",
      "date": "2026-07-15 15:24:22",
      "headline": "Very good",
      "language": "en",
      "pros": "Great location, good people, good prices and a nice breakfast included.",
      "cons": "Construction site nearby and slow wifi.",
      "source": "Tripadvisor"
    }
  ],
  "total": 10
}

Authorizations

X-API-Key
string
header
required

Query Parameters

hotelId
string
required

Unique ID of a hotel

limit
integer

Specifies the maximum number of results to return. By default, this is set to 200, even if not explicitly defined. If a higher limit is specified, the maximum allowed is 5000 results

offset
integer

Specifies the number of reviews to skip, defaults to 0

timeout
number<float>
default:4

request timeout in seconds

getSentiment
boolean
default:false

If set to true, an AI sentiment analysis of the last 1000 reviews will be returned

language
string

ISO 639-1 language code (e.g., 'fr', 'es', 'de') to translate reviews using AI. If not provided, the reviews will be returned in the default language (en). When this parameter is provided, the maximum number of reviews returned is 10.

Response

A list of hotel reviews

data
object[]
total
integer