---
title: "Get the list of pricing and availability for a property"
method: GET
path: "/properties/{propertyUuid}/quotes"
tags: ["pricing:read"]
---

# Get the list of pricing and availability for a property

`GET /properties/{propertyUuid}/quotes`

Retrieve pricing and availability for a property with breakdown of details per date of the stay.

## Path parameters

- `propertyUuid` string, required

## Query parameters

- `checkIn` string, date, required
- `checkOut` string, date, required
- `adults` integer
- `children` integer
- `infants` integer
- `promocode` string
- `withBreakdown` boolean

## Headers

- `x-sm-api-key` string, required

## Response `200`

OK

- Quote[]
  - `propertyUuid` string, required — property uuid to which the room rate belongs to.
  - `roomTypeUuid` string, required — roomType uuid to which the room rate belongs to.
  - `roomRateUuid` string, required — roomRate uuid
  - `checkInDate` string, required — check-in date passed in request
  - `checkOutDate` string, required — check-out date passed in request
  - `lengthOfStay` integer, required — length-of-stay, based on check-in and check-out dates
  - `availability` integer, required — availability of the room for the length of stay.
  - `occupancy` object, required — number of guests
    - `adults` integer, required — number of adults
    - `children` integer, required — number of children
    - `infants` integer, required — number of infants
  - `price` object, required — calculated amount for length-of-stay
    - `gross` number, required — gross amount (with taxes and service charge) for the length of stay
    - `net` number, required — net amount (without taxes or service charge) for the length of stay
    - `tax` number, required — calculated tax if configured on property.
    - `serviceCharge` number, required — calculated service charge amount if configured on property.
  - `breakdown` DailyBreakdown[], required — optional field. Only returned if withBreakdown parameter is specified in the request.
    - `date` string, required — date of stay
    - `gross` number, required — gross amount (with taxes or service charge) for the date
    - `discount` Discount, required — the discount / deal applied for the date
      - `type` 'package-deal' | 'stay-pay-deal' | 'long-stay-deal', required — type of discount (package-deal, stay-pay-deal, long-stay-deal)
      - `amount` number, required — calculated discount amount
    - `promoDiscount` PromoDiscount, required — the promotion discount applied for the date
      - `code` string, required — the promo code
      - `amount` number, required — calculated discount amount

## Other responses

- `400` — Bad Request
- `401` — Unauthorized
- `403` — Forbidden
- `404` — Not Found
- `429` — Too Many Requests
- `500` — Internal Server Error
- `503` — Service Unavailable

---

[API](https://skmtc.dev/siteminder/apis/pmsx-core-api.md) · [All operations](https://skmtc.dev/siteminder/apis/pmsx-core-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/siteminder/pmsx-core-api/revisions/4cf21cbc07ec/schema)
