Minihotel provides a Booking Engine that allows guests to check availability and book rooms directly online. It can either be embedded into an existing website or accessed via a direct URL.
This page explains how to use the direct URL version, including optional parameters to prefill guest data such as dates, room type, currency, and language.
Direct Link and URL Parameters
| Sandbox URL |
|---|
https://sandbox.minihotel.cloud/BookingFrameClient/hotel/{HotelID}/{InstanceID}/book/rooms?[parameters] |
https://frame1.hotelpms.io/BookingFrameClient/hotel/{HotelID}/{InstanceID}/book/rooms?[parameters]
https://frame2.hotelpms.io/BookingFrameClient/hotel/{HotelID}/{InstanceID}/book/rooms?[parameters]
| ID | Description | Example |
|---|---|---|
| {HotelID} | Internal Minihotel identifier for the hotel | B263C4CD7A30D45315E78416F6F4F942 |
| {InstanceID} | Unique instance UUID for the hotel | 153f2c6a-a062-4c7b-97d7-c6bb89533ae6 |
The Link
The direct link takes guests to the hotel’s dedicated Booking Engine — a standalone mini-site that can either be used on its own or linked from your website or the hotel's homepage. Use the provided direct link as the destination for your booking buttons, links, banners, or any other marketing materials. If you prefer to embed the Booking Engine within your own site, please refer to our embed instructions here.
https://sandbox.minihotel.cloud/BookingFrameClient/hotel/B263C4CD7A30D45315E78416F6F4F942/153f2c6a-a062-4c7b-97d7-c6bb89533ae6/book/rooms
Note: The production booking link is unique for each hotel. Developers should obtain it directly from the hotel manager, property owner, or by contacting Minihotel support
| Parameter | Required | Description | Example |
|---|---|---|---|
| from | Optional | Start date of stay, in YYYYMMDD format. | from=20250601 |
| to | Optional | End date of stay, in YYYYMMDD format. | to=20250603 |
| nAdults | Optional | Number of adults. | nAdults=2 |
| nChilds | Optional | Number of children. | nChilds=1 |
| nBabies | Optional | Number of infants. | nBabies=1 |
| roomType | Optional | Filter results to show only a specific room type (e.g., STD, DLX). | roomType=DLX |
| currency | Optional | Three-letter ISO currency code (e.g., EUR, USD). Please contact the hotelier or our team to obtain the available values. | currency=USD |
| rp | Optional | Filters the Booking Engine to a specific enabled rate plan. Please contact the hotelier or our team to obtain the available codes. | rp=QkI%3D |
| language | Optional | Language locale format (e.g., en-US, he-IL, es-ES). | language=en-US |
Examples
Basic booking with date range (June 1–3, 2025)
https://sandbox.minihotel.cloud/BookingFrameClient/hotel/B263C4CD7A30D45315E78416F6F4F942/153f2c6a-a062-4c7b-97d7-c6bb89533ae6/book/rooms?currency=USD&language=en-US&from=20250601&to=20250603
Filter by room type "DBL"
https://sandbox.minihotel.cloud/BookingFrameClient/hotel/B263C4CD7A30D45315E78416F6F4F942/153f2c6a-a062-4c7b-97d7-c6bb89533ae6/book/rooms?currency=USD&language=en-US&roomType=DBL
Specify 3 adults)
https://sandbox.minihotel.cloud/BookingFrameClient/hotel/B263C4CD7A30D45315E78416F6F4F942/153f2c6a-a062-4c7b-97d7-c6bb89533ae6/book/rooms?currency=USD&language=en-US&nAdults=3
