---
title: "Get a page of reviews."
method: GET
path: "/v2/reviews"
tags: ["Reviews"]
---

# Get a page of reviews.

`GET /v2/reviews`

## Query parameters

- `since_utc` string, date-time, nullable
- `property_id` integer, nullable
- `active` boolean, nullable
- `host_review` boolean, nullable
- `include_guest` boolean

## Response `200`

The paged result of reviews.

- PageableEnumerableOfReviewViewModel — Represents a single page plus meta data for a collection of records.
  - `items` ReviewViewModel[] — The subset of records for the current page in the collection.
    - `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.
  - `limit` integer — The maximum number of records per page.
  - `next_page_url` string — URL to fetch the next page of records. A null value indicates that there are no more pages in the collection.
  - `offset` integer — The current offset from the start of the collection.

---

[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)
