Quotes

Returns the pricing and availability for a given property, check-in date, check-out date, occupancy and promo code.

Get the pricing and availability for a property

get

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

Authorizations
Path parameters
propertyUuidstringRequired

uuid for a property

Query parameters
checkInstring · dateRequired

check in date, e.g. '2024-08-01'

checkOutstring · dateRequired

check out date, e.g. '2024-08-05' (limited to 31 nights after the check in date)

adultsinteger · max: 10000Required

number of adult occupants (defaults to 1)

childreninteger · max: 10000Required

number of child occupants (defaults to 0)

withBreakdownbooleanOptional

include the day level breakdown for each room

promoCodestringOptional

if provided, returns prices with applied promotion

Header parameters
x-sm-api-keystringRequired

access token retrieved from Multi-Property Platform

Responses
200
OK
application/json
get
GET /properties/{propertyUuid}/quotes?checkIn=2025-07-16&checkOut=2025-07-16&adults=1&children=1 HTTP/1.1
Host: 
x-sm-api-key: text
Accept: */*
{
  "propertyUuid": "f63ce398-da03-4573-856d-ed8d71e57e3d",
  "roomTypeUuid": "403950b4-0919-4396-afa1-3957a38a83f8",
  "checkInDate": "2024-08-01",
  "checkOutDate": "2024-08-03",
  "lengthOfStay": 2,
  "availability": 10,
  "occupancy": {
    "adults": 1,
    "children": 0
  },
  "price": {
    "gross": 267.51,
    "net": 255,
    "tax": 12.51,
    "serviceCharge": 0
  },
  "breakdown": [
    {
      "date": "2024-08-01",
      "gross": 0,
      "discount": [
        {
          "type": "stay-pay-deal",
          "amount": 100
        }
      ],
      "promoDiscount": [
        {
          "code": "PROMO",
          "amount": 15
        }
      ]
    },
    {
      "date": "2024-08-02",
      "gross": 89.17,
      "discount": [
        {
          "type": "stay-pay-deal",
          "amount": 0
        }
      ],
      "promoDiscount": [
        {
          "code": "PROMO",
          "amount": 15
        }
      ]
    }
  ]
}

Last updated

Was this helpful?