---
title: "Location Reviews"
method: GET
path: "/locations/{id}/reviews"
tags: ["Location"]
---

# Location Reviews

`GET /locations/{id}/reviews`

Retrieves traveler reviews for a Tripadvisor Location.

 <p>Returns a page of reviews drawn from the most recent reviews for the Location, with optional
 filtering by minimum rating, trip type, publish date, and language. Reviews include the title, body,
 overall and sub-ratings, trip context, reviewer information, and any owner response.

## Path parameters

- `id` integer, required

## Query parameters

- `rating_min` number
- `trip_type` string
- `published_after_ts` string, date
- `sort_by` 'MOST_RECENT' | 'HIGHEST_RATED'
- `published_after_review_id` string
- `language` string
- `page` integer
- `size` integer

## Response `200`

a page of reviews for the Location

- PageReview
  - `data` Review[], required
    - `id` integer, required — Unique identifier for this review.
    - `owner_response` OwnerResponse
      - `author_connection` string — Type of connection between the author and the business (e.g., "owner", "manager")
      - `avatar_url` ImageUrl
        - `key` string — Unique identifier for the image
        - `url` string — URL to access the image
      - `geo_id` integer — Geographic ID associated with the response owner
      - `id` integer — Unique identifier for the response owner
      - `publish_date` string, date-time — Date and time when the response was published
      - `text` TranslationWithPrimary[] — Localized text content of the owner's response
        - `language` string, required — Language code for the translation (e.g., "en", "es", "fr")
        - `primary` boolean — Indicates if this is the primary language version of the text
        - `value` string, required — Translated text content in the specified language
      - `username` string — Username of the response owner
    - `photos` PhotoInfo[] — Photos uploaded with this review.
      - `key` string — Unique identifier for the photo
      - `media_type` string — Media type of the photo (e.g., "image/jpeg", "image/png")
      - `original_height` integer — Original height of the photo in pixels
      - `original_size_url` string — URL to the original size photo
      - `original_width` integer — Original width of the photo in pixels
    - `publish_ts` string, date-time, required — Date and time when the review was published.
    - `rating` integer, required — Overall rating from 1 to 5.
    - `rating_icon_url` ImageUrl
      - `key` string — Unique identifier for the image
      - `url` string — URL to access the image
    - `subratings` ReviewSubRating[], required — Detailed ratings for different aspects like service, value, atmosphere.
      - `icon_url` ImageUrl, required
        - `key` string — Unique identifier for the image
        - `url` string — URL to access the image
      - `rating` integer, required — Rating score from 1 to 5 for this aspect.
      - `type` string, required — Type of aspect being rated (e.g., "service", "value", "atmosphere").
      - `type_name` string, required — Display name for this rating type (e.g., "Service", "Value").
    - `text` TranslationWithPrimary[], required — Review text content in multiple languages.
      - `language` string, required — Language code for the translation (e.g., "en", "es", "fr")
      - `primary` boolean — Indicates if this is the primary language version of the text
      - `value` string, required — Translated text content in the specified language
    - `title` TranslationWithPrimary[], required — Review titles in multiple languages.
      - `language` string, required — Language code for the translation (e.g., "en", "es", "fr")
      - `primary` boolean — Indicates if this is the primary language version of the text
      - `value` string, required — Translated text content in the specified language
    - `travel_date` string, required — Date when the reviewer visited the location.
    - `trip_type` 'BUSINESS' | 'COUPLES' | 'FAMILY' | 'FRIENDS' | 'SOLO' | 'NONE', required
    - `url` string — URL to view this review on Tripadvisor.
    - `user` UserInfo
      - `avatar_url` ImageUrl
        - `key` string — Unique identifier for the image
        - `url` string — URL to access the image
      - `geo` string — Name of the geographic location associated with the user
      - `geo_id` integer — Geographic ID associated with the user's location
      - `username` string — Username of the user
  - `pagination` PageMetadata, required
    - `page` integer — Current page number (1-based).
    - `size` integer — Number of items per page.
    - `total_elements` integer — Total number of elements
    - `total_pages` integer — Total number of pages.

## Other responses

- `400` — Bad Request
- `404` — Not Found
- `429` — Too Many Requests
- `500` — Internal Server Error

---

[API](https://skmtc.dev/tripadvisor/apis/partner-api.md) · [All operations](https://skmtc.dev/tripadvisor/apis/partner-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/tripadvisor/partner-api/revisions/b42bdf9fd6a5/schema)
