Quotes
Returns the pricing and availability for a given property, check-in date, check-out date, occupancy and promo code.
Retrieve pricing and availability for all rates available at the property, with details broken down per date of the stay when requested.
UUID for a property.
Check-in date, e.g. '2024-08-01'.
Check-out date, e.g. '2024-08-05' (limited to 31 nights after the check-in date).
number of adult occupants (defaults to 1)
1number of child occupants (defaults to 0)
0number of infant occupants (defaults to 0)
0Include the day-level price breakdown in the response.
if provided, returns prices with applied promotion
API key used to authenticate the request.
OK
UUID of the property this quote is for.
UUID of the room type this quote is for.
Room rate UUID
Check-in date passed in request
Check-out date passed in request
Length of stay, based on check-in and check-out dates
Availability of the room for the length of stay.
Bad Request
Not Authorised
Access Denied
The specified resource was not found
Rate Limited
Internal Server Error
GET /properties/{propertyUuid}/quotes?checkIn=text&checkOut=text HTTP/1.1
x-sm-api-key: text
Accept: */*
[
{
"propertyUuid": "f63ce398-da03-4573-856d-ed8d71e57e3d",
"roomTypeUuid": "403950b4-0919-4396-afa1-3957a38a83f8",
"roomRateUuid": "95dd1036-0a9e-449e-b834-3a606663aa9c",
"checkInDate": "2024-08-01",
"checkOutDate": "2024-08-05",
"lengthOfStay": 4,
"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
}
]
},
{
"date": "2024-08-03",
"gross": 89.17,
"discount": [
{
"type": "stay-pay-deal",
"amount": 0
}
],
"promoDiscount": [
{
"code": "PROMO",
"amount": 15
}
]
},
{
"date": "2024-08-04",
"gross": 89.17,
"discount": [
{
"type": "stay-pay-deal",
"amount": 0
}
],
"promoDiscount": [
{
"code": "PROMO",
"amount": 15
}
]
},
{
"date": "2024-08-05",
"gross": 89.17,
"discount": [
{
"type": "stay-pay-deal",
"amount": 0
}
],
"promoDiscount": [
{
"code": "PROMO",
"amount": 15
}
]
}
]
}
]Still have questions?
Use the Ask button at the top of the page to chat with our AI assistant — it can help you navigate the guide, understand requirements, and troubleshoot issues.
If you need more support, visit Integration Support.
Last updated
Was this helpful?