---
title: "Fetch all quotes."
method: GET
path: "/v2/quotes"
tags: ["Quotes"]
---

# Fetch all quotes.

`GET /v2/quotes`

## Query parameters

- `property_ids` integer[], nullable
- `since_utc` string, date-time, nullable
- `include_tags` boolean
- `include_guest` boolean
- `include_charges` boolean

## Response `200`

A pageable list of quote models.

- PageableEnumerableOfQuoteViewModel — Represents a single page plus meta data for a collection of records.
  - `items` QuoteViewModel[] — The subset of records for the current page in the collection.
    - `id` integer — The ID of this record.
    - `tags` string[] — A collection of tag names.
    - `adults` integer — The quoted number of adults.
    - `arrival` string, date-time — The quoted date of arrival.
    - `charges` QuoteChargeModel[] — Collection of charges associated with this quote.
      - `amount` number
      - `description` string
      - `is_channel_managed` boolean
      - `is_taxable` boolean
      - `position` integer
      - `rate` number
      - `rate_is_percent` boolean
      - `surcharge_id` integer, nullable
      - `tax_id` integer, nullable
      - `type` 'rent' | 'surcharge' | 'tax' | 'tax_other' | 'surcharge_other'
    - `check_in` string — The quoted arrival checkin time.
    - `check_in_end` string — The quoted arrival checkin end time.
    - `check_out` string — The quoted departure checkout time.
    - `children` integer — The quoted number of children.
    - `created_utc` string, date-time — The date this quote was created in the system.
    - `departure` string, date-time — The quoted date of departure.
    - `expires_utc` string, date-time — The date this quote expires.
    - `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 — The ID of the guest this quote was created for.
    - `infants` integer — The quoted number of infants.
    - `key` string, guid — A globally unique ID for this quote.
    - `listing_site` string — The listing site this quote is attributed to.
    - `notes` string — Notes about this quote.
    - `pets` integer — The quoted number of pets.
    - `platform_email_address` string — A proxy email address provided by the OTA specifically for this quote.
    - `property_id` integer — The quoted property ID.
    - `quoted_utc` string, date-time — The date this quote was made.
    - `thread_ids` integer[]
    - `updated_utc` string, date-time, nullable — The date this quote was last updated in the system.
  - `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)
