---
title: "Fetch a review."
method: GET
path: "/v2/reviews/{id}"
tags: ["Reviews"]
---

# Fetch a review.

`GET /v2/reviews/{id}`

## Path parameters

- `id` integer, required

## Response `200`

A model representing the review.

- ReviewViewModel
  - `body` string — The body of the review.
  - `booking_id` integer, nullable — The booking identifier.
  - `created_utc` string, date-time — The timestamp the review was created.
  - `date` string, date-time — The date that the review was written.
  - `display_location` string — The reviewers display location.
  - `display_name` string — The reviewers display name.
  - `guest` GuestPartialModel — Partial details about the guest. For full details, use the guests endpoint.
    - `id` integer — The ID of this record.
    - `first_name` string
    - `last_name` string
  - `guest_id` integer, nullable — The guest identifier.
  - `id` integer — The review id.
  - `listing_site` string — The name of the listing site the review was posted to.
  - `month_of_stay` integer, nullable — The month the guest stayed at the property.
  - `property` PropertyPartialModel — Partial details about the property. For full details, use the properties endpoint.
    - `id` integer — The ID of this record.
    - `external_name` string
    - `internal_code` string
    - `name` string
    - `public_url` string
  - `property_id` integer, nullable — The property identifier.
  - `response` string — The response to the review.
  - `reviewer` 'host' | 'guest' — The type of person who left the review.
  - `stars` number, nullable — The amount of stars out of five.
  - `title` string — The title of the review.
  - `updated_utc` string, date-time, nullable — The timestamp the review was last updated.
  - `visible` boolean — Whether the review is visible.
  - `year_of_stay` integer, nullable — The year the guest stayed at the property.

---

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