Skip to content

Search for hotels by city

General terms

Endpoint: /api/HotelList

The Mixvel_HotelListRQ method is used to request a list of hotels in a specified city.
In response, a list of hotels for the selected city is returned, with the minimum offer in each of them for the requested dates. In addition, the method returns the geolocation of hotels for display on a map.

This step is optional: if the user already knows which hotel's offers they want to view, the request for a list of hotels by city can be skipped.

Request structure

The request input data must satisfy the scheme Mixvel_OrderCancelRQ.xsd and contain the following basic data (complete parameters can be found in the xsd scheme or in the xml examples of a specific message):

Parameter XPath Filling example Description Comments
Mixvel_HotelListRQ/ Request/ HotelRequest/ ConfirmationMode Online Automatic or manual confirmation flag Optional element. Currently, only offers with auto-confirmation (ConfirmationMode="Online")are requested. The value OnRequest is not used.
…/ Period complex Check-in/check-out dates Structure, see below.
…/ CheckInDate 2025-10-23 Hotel check-in date - Check-in date ≥ current search date;
- Only the date is passed, without reference to the check-in time.
…/ CheckOutDate 2025-10-25 Hotel check-out date - Check-out date must be at least 1 day later than the check-in date;
- Maximum stay duration - 60 nights (CheckOutDate - CheckInDate ≤ 60).
- Only the date is passed, without reference to the time.
Mixvel_HotelListRQ/ Request/ HotelRequest/ SearchCriteria/ GeoSearch complex Hotel search by map coordinates (latitude, longitude, radius) Structure, see below.
…/ Coordinates/ Latitude 55.69194444 Geographic latitude Decimal separator is used.
…/ Coordinates/ Longitude 37.62583333 Geographic longitude Decimal separator is used.
…/ Radius 0.2 Radius - the length of a circle (in km) centered at the specified latitude and longitude, which limits the hotel search area on the map Value from 0.1 to 45 km, with a step of 0.1. Example: 0.1, 0.2 are allowed; 0.15 is not allowed.
Mixvel_HotelListRQ/ Request/ HotelRequest/ SearchCriteria/ Location/ CityID 28eae41d-4d5a-41ac-b990-279309446aee Settlement ID from MixVel directory The request is executed either by coordinates (Coordinates element), or by settlement ID (Locationelement).
Mixvel_HotelListRQ/ Request/ RoomsSearchDetails complex Number of adults and children staying in 1 room Maximum number of persons per room in the search:
- 4 adults (ADT);
- 3 children(CNN).
…/ AdultsAmount 2 Number of adults Each room ≥ 1 adult.
…/ Children/AgeMeasure 10 Age of child/children - Integer 0–17.
- The number of AgeMeasure elements corresponds to the number of children.
- A child cannot be booked in a room without an adult.
…/ RoomsAmount 1 Number of rooms - From 1 to 4 rooms can be specified in the request.
- If more than one room is requested, all rooms of the same order will be under the same rate code (i.e., with the same conditions and prices), with the same occupancy (by number of persons, by adults and children).

Example of the Mixvel_HotelListRQ request:

Show request example
<?xml version="1.0"?>
<MixEnv:Envelop xmlns:MixEnv="https://www.mixvel.com/API/XSD/mixvel_envelop/1_06">
    <Header/>
    <Body>
        <MessageInfo MessageId="79b67a26-6fc3-41e3-0ac4-14e0ac0245c8" TimeSent="2025-09-18T03:01:38.6129323Z"/>
        <AppData>
            <HotelList:Mixvel_HotelListRQ xmlns:HotelList="https://www.mixvel.com/API/XSD/Mixvel_HotelListRQ/1_00">
                <Request>
                    <HotelRequest>
                        <ConfirmationMode>Online</ConfirmationMode>
                        <Period>
                            <CheckInDate>2025-09-20</CheckInDate>
                            <CheckOutDate>2025-09-21</CheckOutDate>
                        </Period>
                        <SearchCriteria>
                            <Location>
                                <CityID>6687587a-a398-4e6f-89fc-84aaa931c8fd</CityID>
                            </Location>
                        </SearchCriteria>
                    </HotelRequest>
                    <RoomsSearchDetails>
                        <AdultsAmount>1</AdultsAmount>
                        <RoomsAmount>1</RoomsAmount>
                    </RoomsSearchDetails>
                </Request>
            </HotelList:Mixvel_HotelListRQ>
        </AppData>
    </Body>
</MixEnv:Envelop>

Response structure

The system's response to a hotel search query by city corresponds to the Mixvel_HotelListRS.xsd schema and contains the following main data (the table shows the main message parameters, full parameters can be found in the xsd schema or in xml examples of a specific message):

Parameter XPath Filling example Description Comments
Mixvel_HotelListRS/ Response/ DataLists/ HotelList/ Hotel complex Hotel information
Mixvel_HotelListRS/ Response/ DataLists/ HotelList/ Hotel/ GeneralInfo complex Basic information about the hotel Structure, see below.
…/ Photo complex Contains one main hotel photo
…/ PhotoUrl/ DescText Photo description
…/ PhotoUrl/ MarkupStyleText HTML Markup language for DescText description
…/ PhotoUrl/ MediaObject complex Electronic documents, images, and other accompanying files, see below
…/ PhotoUrl/ MediaObject/ BinaryObject Binary object information
…/ PhotoUrl/ MediaObject/ DescText Description of attached files
…/ PhotoUrl/ MediaObject/ FileSizeMeasure 60 File size in KB
…/ PhotoUrl/ MediaObject/ MediaID 7cfd43d5-5c01-4fdc-be2f-4fd0792a7960 ID of attached files
…/ PhotoUrl/ URL link URL of the information description source
…/ StarCategory 5* Hotel star rating Optional element. If "-" is returned, then:
- either it is an unrated hotel;
- or star rating information is unavailable.
…/ HotelType resort-hotel Hotel type
Mixvel_HotelListRS/ Response/ DataLists/ HotelList/ Hotel/ LocationDetails complex Location details Structure, see below.
…/ Address Россия, г. Москва, ул. Московская, 49Б (Moscow, Moskovskaya St., 49B) Hotel address
…/ CityID 28eae41d-4d5a-41ac-b990-279309446aee Settlement ID from MixVel directory
…/ CityName Москва City name
…/ Coordinates/ Latitude 59.81666667 Latitude
…/ Coordinates/ Longitude 30.38333333 Longitude
Mixvel_HotelListRS/ Response/ DataLists/ HotelList/ Hotel/ HotelID 42631f47-8921-466e-af0a-b9494b7c788a Hotel ID
Mixvel_HotelListRS/ Response/ DataLists/ HotelList/ Hotel/ HotelName Name Hotel name This is the hotel name in the Mixvel directory, by which the initial search is performed. For the client, the booking is confirmed with the name from the Provider.
Mixvel_HotelListRS/ Response/ Hotels/ Hotel complex Block with the minimum available price for the hotel, see below
.../ HotelRefID 42631f47-8921-466e-af0a-b9494b7c788a Reference to the hotel ID in DataLists
Mixvel_HotelListRS/ Response/ Hotels/ Hotel/ Provider complex Information about a specific hotel from a specific Provider
Mixvel_HotelListRS/ Response/ Hotels/ Hotel/ Provider/ MinimalPricePreOffer complex Information about the offer with the minimum cost in a specific hotel Structure, see below.
.../ OwnerCode HBP Provider code in MixVel
.../ Room complex Room information, see below
.../ RoomName 3-person standard room - single Room category name - Each hotel may have its own set of room categories;
- Commercial names of room categories are not regulated in any way;
.../ ProviderMealName No meals Name of included meals Only included meals are specified
.../ TotalAmount/ AgentComission 1000 Agent commission amount for all rooms within one request Total agent commission. For example, if the user requests 3 rooms, the total amount for all three rooms is returned
.../ TotalAmount/ TotalAmount 10000 Total amount that the end client will have to pay the agent for the entire order If the user requests 3 rooms, the total amount for all three rooms is returned. The CurCode attribute specifies the payment currency. For hotels, this is only RUB

Example of the Mixvel_HotelListRS response:

Show response example
<?xml version="1.0" encoding="utf-8"?>
<MixEnv:Envelope xmlns:MixEnv="https://www.mixvel.com/API/XSD/mixvel_envelope/1_06">
    <Header />
    <Body>
        <MessageInfo MessageId="38292bdf-58ac-4fc3-ab37-0fc8247e17e5" ReplyTo="79b67a26-6fc3-41e3-0ac4-14e0ac0245c8" TimeSent="2025-09-18T03:02:38.6129323Z" />
        <AppData>
            <List:Mixvel_HotelListRS xmlns:List="https://www.mixvel.com/API/XSD/Mixvel_HotelListRS/1_00">
                <Response>
                    <DataLists>
                        <HotelList>
                            <Hotel>
                                <GeneralInfo>
                                    <StarCategory>3</StarCategory>
                                </GeneralInfo>
                                <LocationDetails>
                                    <Address>ул. 1 Мая, 24-А</Address>
                                    <CityName>Кострома</CityName>
                                    <Coordinates>
                                        <Latitude>57.7694638</Latitude>
                                        <Longitude>40.9138351</Longitude>
                                    </Coordinates>
                                </LocationDetails>
                                <HotelID>8df784b7-f7b3-447f-b954-019770c18bac</HotelID>
                                <HotelName>Бизнес Отель</HotelName>
                            </Hotel>
                            <Hotel>
                                <GeneralInfo>
                                    <StarCategory>4</StarCategory>
                                </GeneralInfo>
                                <LocationDetails>
                                    <Address>ул. Лесная, 61к 2</Address>
                                    <CityName>Кострома</CityName>
                                    <Coordinates>
                                        <Latitude>57.750493871378</Latitude>
                                        <Longitude>40.952045023441</Longitude>
                                    </Coordinates>
                                </LocationDetails>
                                <HotelID>c0b674b6-ee78-4544-affe-349877b59db7</HotelID>
                                <HotelName>Золотое кольцо</HotelName>
                            </Hotel>
                            <Hotel>
                                <GeneralInfo>
                                    <StarCategory>3</StarCategory>
                                </GeneralInfo>
                                <LocationDetails>
                                    <Address>ул. Лагерная, 38/13</Address>
                                    <CityName>Кострома</CityName>
                                    <Coordinates>
                                        <Latitude>57.754941</Latitude>
                                        <Longitude>40.9513389</Longitude>
                                    </Coordinates>
                                </LocationDetails>
                                <HotelID>e2cee7c7-5d45-4bf5-b88e-c41fa36bcbfe</HotelID>
                                <HotelName>Снегурочка</HotelName>
                            </Hotel>
                            <Hotel>
                                <GeneralInfo>
                                    <StarCategory>4</StarCategory>
                                </GeneralInfo>
                                <LocationDetails>
                                    <Address>ул. Юношеская, 1</Address>
                                    <CityName>Кострома</CityName>
                                    <Coordinates>
                                        <Latitude>57.757644806352</Latitude>
                                        <Longitude>40.948688967458</Longitude>
                                    </Coordinates>
                                </LocationDetails>
                                <HotelID>aecccd54-d039-4cef-8d91-b827f99b36cc</HotelID>
                                <HotelName>Волга</HotelName>
                            </Hotel>
                            <Hotel>
                                <GeneralInfo>
                                    <StarCategory>3</StarCategory>
                                </GeneralInfo>
                                <LocationDetails>
                                    <Address>ул. Магистральная 13</Address>
                                    <CityName>Кострома</CityName>
                                    <Coordinates>
                                        <Latitude>57.742795</Latitude>
                                        <Longitude>40.923549</Longitude>
                                    </Coordinates>
                                </LocationDetails>
                                <HotelID>a7d8153f-d3e5-43db-b1f8-f50fea54e8cd</HotelID>
                                <HotelName>Премьер</HotelName>
                            </Hotel>
                            <Hotel>
                                <GeneralInfo>
                                    <StarCategory>2</StarCategory>
                                </GeneralInfo>
                                <LocationDetails>
                                    <Address>пр-т. Мира, 157 «С»</Address>
                                    <CityName>Кострома</CityName>
                                    <Coordinates>
                                        <Latitude>57.790025973591</Latitude>
                                        <Longitude>40.961202728836</Longitude>
                                    </Coordinates>
                                </LocationDetails>
                                <HotelID>bdc973fe-1992-4d58-8778-f19269232601</HotelID>
                                <HotelName>Парк Отель Аристократ</HotelName>
                            </Hotel>
                            <Hotel>
                                <GeneralInfo>
                                    <StarCategory>3</StarCategory>
                                </GeneralInfo>
                                <LocationDetails>
                                    <Address>ул. Ленина, д.150Е</Address>
                                    <CityName>Кострома</CityName>
                                    <Coordinates>
                                        <Latitude>57.796997890869</Latitude>
                                        <Longitude>40.963238830749</Longitude>
                                    </Coordinates>
                                </LocationDetails>
                                <HotelID>1fa5b079-d030-4dc7-b6a4-b6b676675b8c</HotelID>
                                <HotelName>Парк-отель Берендеевка</HotelName>
                            </Hotel>
                            <Hotel>
                                <GeneralInfo>
                                    <StarCategory>4</StarCategory>
                                </GeneralInfo>
                                <LocationDetails>
                                    <Address>ул. Советская, 10/2</Address>
                                    <CityName>Кострома</CityName>
                                    <Coordinates>
                                        <Latitude>57.764669</Latitude>
                                        <Longitude>40.935022</Longitude>
                                    </Coordinates>
                                </LocationDetails>
                                <HotelID>bd422e67-9e4c-4823-b63e-ccbcb82af754</HotelID>
                                <HotelName>Олд Стрит</HotelName>
                            </Hotel>
                            <Hotel>
                                <GeneralInfo>
                                    <StarCategory>3</StarCategory>
                                </GeneralInfo>
                                <LocationDetails>
                                    <Address>ул. 1 Мая, </Address>
                                    <CityName>Кострома</CityName>
                                    <Coordinates>
                                        <Latitude>57.7653365</Latitude>
                                        <Longitude>40.9206288</Longitude>
                                    </Coordinates>
                                </LocationDetails>
                                <HotelID>bbdcf52d-56cb-4a09-a3ba-c2c29068da97</HotelID>
                                <HotelName>Московская Застава</HotelName>
                            </Hotel>
                            <Hotel>
                                <GeneralInfo>
                                    <StarCategory>4</StarCategory>
                                </GeneralInfo>
                                <LocationDetails>
                                    <Address>Нагорный проезд, 26</Address>
                                    <CityName>Кострома</CityName>
                                    <Coordinates>
                                        <Latitude>57.749698</Latitude>
                                        <Longitude>40.930921</Longitude>
                                    </Coordinates>
                                </LocationDetails>
                                <HotelID>7ddda22d-6c8f-4bce-a693-b90b6128a747</HotelID>
                                <HotelName>Круиз</HotelName>
                            </Hotel>
                            <Hotel>
                                <GeneralInfo>
                                    <StarCategory>4</StarCategory>
                                </GeneralInfo>
                                <LocationDetails>
                                    <Address>ул. Симановского, д. </Address>
                                    <CityName>Кострома</CityName>
                                    <Coordinates>
                                        <Latitude>57.770841018096</Latitude>
                                        <Longitude>40.924115404755</Longitude>
                                    </Coordinates>
                                </LocationDetails>
                                <HotelID>b76ad1cb-f378-4ab4-a223-5618b2e0bdd2</HotelID>
                                <HotelName>Я-Отель</HotelName>
                            </Hotel>
                            <Hotel>
                                <GeneralInfo>
                                    <StarCategory>3</StarCategory>
                                </GeneralInfo>
                                <LocationDetails>
                                    <Address>23 км от г. Кострома, территория Волжский Прибой, 1</Address>
                                    <CityName>Кострома</CityName>
                                    <Coordinates>
                                        <Latitude>57.628786342645</Latitude>
                                        <Longitude>41.119546974083</Longitude>
                                    </Coordinates>
                                </LocationDetails>
                                <HotelID>fb1409bf-b917-4fbe-8b27-dd407301fc95</HotelID>
                                <HotelName>Волжский Прибой</HotelName>
                            </Hotel>
                            <Hotel>
                                <GeneralInfo>
                                    <Photo>
                                        <PhotoUrl>
                                            <URL>https://storage.yandexcloud.net/mediaprocessor.test/hbp/783401/mxvl_main?X-Amz-Algorithm=AWS4-HMAC-SHA256&amp;X-Amz-Credential=YCAJEEuCxe6jZsPkGJbry-3Kx%2F20250918%2Fus-east-1%2Fs3%2Faws4_request&amp;X-Amz-Date=20250918T030238Z&amp;X-Amz-Expires=604800&amp;X-Amz-SignedHeaders=host&amp;X-Amz-Signature=648bfd63034edc73d75e86396b8f3f5e2aa766afc2c43ff84a6f34f0f3842818</URL>
                                        </PhotoUrl>
                                    </Photo>
                                    <StarCategory>3*</StarCategory>
                                </GeneralInfo>
                                <LocationDetails>
                                    <Address>Россия, г. Кострома, ул. Никитская, 49Б</Address>
                                    <CityName>Кострома</CityName>
                                    <Coordinates>
                                        <Latitude>57.765727</Latitude>
                                        <Longitude>40.975437</Longitude>
                                    </Coordinates>
                                </LocationDetails>
                                <HotelID>7cfd43d5-5c01-4fdc-be2f-4fd0792a7960</HotelID>
                                <HotelName>Троя</HotelName>
                            </Hotel>
                            <Hotel>
                                <GeneralInfo>
                                    <StarCategory>3*</StarCategory>
                                </GeneralInfo>
                                <LocationDetails>
                                    <Address>Проспект Мира, 157, литера Я</Address>
                                    <CityName>Кострома</CityName>
                                    <Coordinates>
                                        <Latitude>57.789681513611</Latitude>
                                        <Longitude>40.960498203705</Longitude>
                                    </Coordinates>
                                </LocationDetails>
                                <HotelID>4417222d-12ce-425f-8a37-c61592c5cc43</HotelID>
                                <HotelName>Парк-отель</HotelName>
                            </Hotel>
                            <Hotel>
                                <GeneralInfo>
                                    <Photo>
                                        <PhotoUrl>
                                            <URL>https://storage.yandexcloud.net/mediaprocessor.test/hbp/1511873/mxvl_main?X-Amz-Algorithm=AWS4-HMAC-SHA256&amp;X-Amz-Credential=YCAJEEuCxe6jZsPkGJbry-3Kx%2F20250918%2Fus-east-1%2Fs3%2Faws4_request&amp;X-Amz-Date=20250918T030238Z&amp;X-Amz-Expires=604800&amp;X-Amz-SignedHeaders=host&amp;X-Amz-Signature=fa5641f89b4d2a5bc79d21f706964b2b8bd0658a2c4f053ced17eb46da8507fe</URL>
                                        </PhotoUrl>
                                    </Photo>
                                    <StarCategory>-</StarCategory>
                                </GeneralInfo>
                                <LocationDetails>
                                    <Address>Кострома ,   ул. Ивана Сусанина, 41</Address>
                                    <CityName>Кострома</CityName>
                                    <Coordinates>
                                        <Latitude>57.7640490992</Latitude>
                                        <Longitude>40.9526833472</Longitude>
                                    </Coordinates>
                                </LocationDetails>
                                <HotelID>a6c7227f-1b19-4cba-89ac-da3fdb2295db</HotelID>
                                <HotelName>Апартаменты Культура на улице Ивана Сусанина</HotelName>
                            </Hotel>
                            <Hotel>
                                <GeneralInfo>
                                    <Photo>
                                        <PhotoUrl>
                                            <URL>https://storage.yandexcloud.net/mediaprocessor.test/hbp/1284967/mxvl_main?X-Amz-Algorithm=AWS4-HMAC-SHA256&amp;X-Amz-Credential=YCAJEEuCxe6jZsPkGJbry-3Kx%2F20250918%2Fus-east-1%2Fs3%2Faws4_request&amp;X-Amz-Date=20250918T030238Z&amp;X-Amz-Expires=604800&amp;X-Amz-SignedHeaders=host&amp;X-Amz-Signature=4047cc9142e2dd9f9cfc2c012181176c3b97ae395550b47cd6b578dfc5c66495</URL>
                                        </PhotoUrl>
                                    </Photo>
                                    <StarCategory>-</StarCategory>
                                </GeneralInfo>
                                <LocationDetails>
                                    <Address>пр. Мичуринцев, 17</Address>
                                    <CityName>Кострома</CityName>
                                    <Coordinates>
                                        <Latitude>57.7516287</Latitude>
                                        <Longitude>41.0134327</Longitude>
                                    </Coordinates>
                                </LocationDetails>
                                <HotelID>7d780f4f-be43-499c-8d4e-ac8864e4ef04</HotelID>
                                <HotelName>мХостел</HotelName>
                            </Hotel>
                            <Hotel>
                                <GeneralInfo>
                                    <Photo>
                                        <PhotoUrl>
                                            <URL>https://storage.yandexcloud.net/mediaprocessor.test/hbp/1297760/mxvl_main?X-Amz-Algorithm=AWS4-HMAC-SHA256&amp;X-Amz-Credential=YCAJEEuCxe6jZsPkGJbry-3Kx%2F20250918%2Fus-east-1%2Fs3%2Faws4_request&amp;X-Amz-Date=20250918T030238Z&amp;X-Amz-Expires=604800&amp;X-Amz-SignedHeaders=host&amp;X-Amz-Signature=fdccee586c4604a4dfb4418f9579e9889eff73af961b10c673d6c47ee2b9a575</URL>
                                        </PhotoUrl>
                                    </Photo>
                                    <StarCategory>-</StarCategory>
                                </GeneralInfo>
                                <LocationDetails>
                                    <Address> Овражная ул., 16А</Address>
                                    <CityName>Кострома</CityName>
                                    <Coordinates>
                                        <Latitude>57.760116531118</Latitude>
                                        <Longitude>40.944810730688</Longitude>
                                    </Coordinates>
                                </LocationDetails>
                                <HotelID>a71bfe2f-b90e-49dc-91a9-8118fb20e7fd</HotelID>
                                <HotelName>Тихое место</HotelName>
                            </Hotel>
                            <Hotel>
                                <GeneralInfo>
                                    <Photo>
                                        <PhotoUrl>
                                            <URL>https://storage.yandexcloud.net/mediaprocessor.test/hbp/39503/mxvl_main?X-Amz-Algorithm=AWS4-HMAC-SHA256&amp;X-Amz-Credential=YCAJEEuCxe6jZsPkGJbry-3Kx%2F20250918%2Fus-east-1%2Fs3%2Faws4_request&amp;X-Amz-Date=20250918T030238Z&amp;X-Amz-Expires=604800&amp;X-Amz-SignedHeaders=host&amp;X-Amz-Signature=bda516ce1d245045eae5c7f7329fff1512c708d2cec66c31b1366357103b87c8</URL>
                                        </PhotoUrl>
                                    </Photo>
                                    <StarCategory>3*</StarCategory>
                                </GeneralInfo>
                                <LocationDetails>
                                    <Address>Россия, 156010, Кострома, ул. Магистральная, 40</Address>
                                    <CityName>Кострома</CityName>
                                    <Coordinates>
                                        <Latitude>57.7284974747</Latitude>
                                        <Longitude>40.8960141241</Longitude>
                                    </Coordinates>
                                </LocationDetails>
                                <HotelID>8984d6d3-3008-462a-beec-c43787a25f95</HotelID>
                                <HotelName>Сусанин Парк Отель (б. АЗИМУТ Парк Отель Кострома)</HotelName>
                            </Hotel>
                            <Hotel>
                                <GeneralInfo>
                                    <Photo>
                                        <PhotoUrl>
                                            <URL>https://storage.yandexcloud.net/mediaprocessor.test/hbp/1722153/mxvl_main?X-Amz-Algorithm=AWS4-HMAC-SHA256&amp;X-Amz-Credential=YCAJEEuCxe6jZsPkGJbry-3Kx%2F20250918%2Fus-east-1%2Fs3%2Faws4_request&amp;X-Amz-Date=20250918T030238Z&amp;X-Amz-Expires=604800&amp;X-Amz-SignedHeaders=host&amp;X-Amz-Signature=b8f1f93416e718e1023069219e48e91e000ac85f82379509a1f2b49694e1d5c9</URL>
                                        </PhotoUrl>
                                    </Photo>
                                    <StarCategory>1*</StarCategory>
                                </GeneralInfo>
                                <LocationDetails>
                                    <Address>Россия, Костромская область, г. Кострома, ул. Свердлова, д.8</Address>
                                    <CityName>Кострома</CityName>
                                    <Coordinates>
                                        <Latitude>57.766834</Latitude>
                                        <Longitude>40.931126</Longitude>
                                    </Coordinates>
                                </LocationDetails>
                                <HotelID>ca605d68-1d7d-4195-975d-b2f2cb15b3b1</HotelID>
                                <HotelName>Хостел Арбуз</HotelName>
                            </Hotel>
                            <Hotel>
                                <GeneralInfo>
                                    <Photo>
                                        <PhotoUrl>
                                            <URL>https://storage.yandexcloud.net/mediaprocessor.test/hbp/1285843/mxvl_main?X-Amz-Algorithm=AWS4-HMAC-SHA256&amp;X-Amz-Credential=YCAJEEuCxe6jZsPkGJbry-3Kx%2F20250918%2Fus-east-1%2Fs3%2Faws4_request&amp;X-Amz-Date=20250918T030238Z&amp;X-Amz-Expires=604800&amp;X-Amz-SignedHeaders=host&amp;X-Amz-Signature=284ca7519ab2752aa34dd22f1fba78df0e67c407b6c435d1795cf273b25ddd8f</URL>
                                        </PhotoUrl>
                                    </Photo>
                                    <StarCategory>1*</StarCategory>
                                </GeneralInfo>
                                <LocationDetails>
                                    <Address>г. Кострома, ул. Ленина, д.142</Address>
                                    <CityName>Кострома</CityName>
                                    <Coordinates>
                                        <Latitude>57.79791</Latitude>
                                        <Longitude>40.952164</Longitude>
                                    </Coordinates>
                                </LocationDetails>
                                <HotelID>f32609be-f950-4825-a707-92cad545a451</HotelID>
                                <HotelName>Смарт-хостел Сова</HotelName>
                            </Hotel>
                            <Hotel>
                                <GeneralInfo>
                                    <Photo>
                                        <PhotoUrl>
                                            <URL>https://storage.yandexcloud.net/mediaprocessor.test/hbp/1499513/mxvl_main?X-Amz-Algorithm=AWS4-HMAC-SHA256&amp;X-Amz-Credential=YCAJEEuCxe6jZsPkGJbry-3Kx%2F20250918%2Fus-east-1%2Fs3%2Faws4_request&amp;X-Amz-Date=20250918T030238Z&amp;X-Amz-Expires=604800&amp;X-Amz-SignedHeaders=host&amp;X-Amz-Signature=b80deb5d063fe11b08f5566b8c750bf7e93b7c1520cc8cb9fbdbe912ad8e9437</URL>
                                        </PhotoUrl>
                                    </Photo>
                                    <StarCategory>-</StarCategory>
                                </GeneralInfo>
                                <LocationDetails>
                                    <Address>Кострома ,  ул. Вологодская, 7</Address>
                                    <CityName>Кострома</CityName>
                                    <Coordinates>
                                        <Latitude>58.47743465</Latitude>
                                        <Longitude>41.52447555</Longitude>
                                    </Coordinates>
                                </LocationDetails>
                                <HotelID>f6e1f6c7-d07b-4385-bc29-3d766f3cd076</HotelID>
                                <HotelName>Гостевой дом Горыныч</HotelName>
                            </Hotel>
                            <Hotel>
                                <GeneralInfo>
                                    <Photo>
                                        <PhotoUrl>
                                            <URL>https://storage.yandexcloud.net/mediaprocessor.test/hbp/1278400/mxvl_main?X-Amz-Algorithm=AWS4-HMAC-SHA256&amp;X-Amz-Credential=YCAJEEuCxe6jZsPkGJbry-3Kx%2F20250918%2Fus-east-1%2Fs3%2Faws4_request&amp;X-Amz-Date=20250918T030238Z&amp;X-Amz-Expires=604800&amp;X-Amz-SignedHeaders=host&amp;X-Amz-Signature=30dc0e8a098aa3be3a471d520dbaa796f32da663aaded3b70b0954179879de1d</URL>
                                        </PhotoUrl>
                                    </Photo>
                                    <StarCategory>-</StarCategory>
                                </GeneralInfo>
                                <LocationDetails>
                                    <Address>Костромская обл, г Кострома, ул Свердлова, д 50</Address>
                                    <CityName>Кострома</CityName>
                                    <Coordinates>
                                        <Latitude>57.76644</Latitude>
                                        <Longitude>40.94278</Longitude>
                                    </Coordinates>
                                </LocationDetails>
                                <HotelID>eab29fd0-9927-45e1-94c7-20ec2a5140d1</HotelID>
                                <HotelName>Арт-отель Александровский</HotelName>
                            </Hotel>
                            <Hotel>
                                <GeneralInfo>
                                    <Photo>
                                        <PhotoUrl>
                                            <URL>https://storage.yandexcloud.net/mediaprocessor.test/hbp/1278808/mxvl_main?X-Amz-Algorithm=AWS4-HMAC-SHA256&amp;X-Amz-Credential=YCAJEEuCxe6jZsPkGJbry-3Kx%2F20250918%2Fus-east-1%2Fs3%2Faws4_request&amp;X-Amz-Date=20250918T030238Z&amp;X-Amz-Expires=604800&amp;X-Amz-SignedHeaders=host&amp;X-Amz-Signature=fabf79516c055c7e56930c4d1a56f6af303700f48379dfb27950cec6529918ee</URL>
                                        </PhotoUrl>
                                    </Photo>
                                    <StarCategory>-</StarCategory>
                                </GeneralInfo>
                                <LocationDetails>
                                    <Address>Кострома,пер. Сенной, 1</Address>
                                    <CityName>Кострома</CityName>
                                    <Coordinates>
                                        <Latitude>57.77361</Latitude>
                                        <Longitude>40.94378</Longitude>
                                    </Coordinates>
                                </LocationDetails>
                                <HotelID>69e97ae2-4eaa-4bca-ab95-2420f58abd83</HotelID>
                                <HotelName>Дом на Сенном</HotelName>
                            </Hotel>
                            <Hotel>
                                <GeneralInfo>
                                    <Photo>
                                        <PhotoUrl>
                                            <URL>https://storage.yandexcloud.net/mediaprocessor.test/hbp/399582/mxvl_main?X-Amz-Algorithm=AWS4-HMAC-SHA256&amp;X-Amz-Credential=YCAJEEuCxe6jZsPkGJbry-3Kx%2F20250918%2Fus-east-1%2Fs3%2Faws4_request&amp;X-Amz-Date=20250918T030238Z&amp;X-Amz-Expires=604800&amp;X-Amz-SignedHeaders=host&amp;X-Amz-Signature=624b3d32047f40e733844aa5d6cefffc09d16b66b9145f5c7ac476f3ef84abe6</URL>
                                        </PhotoUrl>
                                    </Photo>
                                    <StarCategory>3*</StarCategory>
                                </GeneralInfo>
                                <LocationDetails>
                                    <Address>Россия, Костромская область, Кострома, ул. 1-го Мая, д. 14</Address>
                                    <CityName>Кострома</CityName>
                                    <Coordinates>
                                        <Latitude>57.7670083</Latitude>
                                        <Longitude>40.9186491</Longitude>
                                    </Coordinates>
                                </LocationDetails>
                                <HotelID>65432a47-b476-4095-a87e-49bf3b53a4ce</HotelID>
                                <HotelName>Островский Причал</HotelName>
                            </Hotel>
                            <Hotel>
                                <GeneralInfo>
                                    <Photo>
                                        <PhotoUrl>
                                            <URL>https://storage.yandexcloud.net/mediaprocessor.test/hbp/456932/mxvl_main?X-Amz-Algorithm=AWS4-HMAC-SHA256&amp;X-Amz-Credential=YCAJEEuCxe6jZsPkGJbry-3Kx%2F20250918%2Fus-east-1%2Fs3%2Faws4_request&amp;X-Amz-Date=20250918T030238Z&amp;X-Amz-Expires=604800&amp;X-Amz-SignedHeaders=host&amp;X-Amz-Signature=28d4bb8f04985ffb3ceebb078ff82391db29aa8990eb00679b75c878d1179aff</URL>
                                        </PhotoUrl>
                                    </Photo>
                                    <StarCategory>1*</StarCategory>
                                </GeneralInfo>
                                <LocationDetails>
                                    <Address>Россия,  Кострома, Михалевская улица 13</Address>
                                    <CityName>Кострома</CityName>
                                    <Coordinates>
                                        <Latitude>57.7431647459</Latitude>
                                        <Longitude>40.9266284108</Longitude>
                                    </Coordinates>
                                </LocationDetails>
                                <HotelID>450e1819-f00b-46c5-a06f-c288a282a0d4</HotelID>
                                <HotelName>У Пруда</HotelName>
                            </Hotel>
                        </HotelList>
                    </DataLists>
                    <Hotels>
                        <Hotel>
                            <HotelRefID>8df784b7-f7b3-447f-b954-019770c18bac</HotelRefID>
                            <Provider>
                                <MinimalPricePreOffer>
                                    <OwnerCode Provider="Bronevik">BR</OwnerCode>
                                    <Room>
                                        <RoomName>Номер стандарт  завтраком)</RoomName>
                                        <ProviderMealName>Завтрак шведский стол</ProviderMealName>
                                    </Room>
                                    <TotalAmount>
                                        <AgentComission CurCode="RUB">0.00</AgentComission>
                                        <TotalAmount CurCode="RUB">3100.00</TotalAmount>
                                    </TotalAmount>
                                </MinimalPricePreOffer>
                            </Provider>
                            <Provider>
                                <MinimalPricePreOffer>
                                    <OwnerCode Provider="HotelBookPro">HBP</OwnerCode>
                                    <Room>
                                        <RoomName>Номер стандарт с 2 односпальными кроватями  завтраком)</RoomName>
                                        <ProviderMealName>Завтрак Шведский стол</ProviderMealName>
                                    </Room>
                                    <TotalAmount>
                                        <AgentComission CurCode="RUB">30.00</AgentComission>
                                        <TotalAmount CurCode="RUB">5641.00</TotalAmount>
                                    </TotalAmount>
                                </MinimalPricePreOffer>
                            </Provider>
                        </Hotel>
                        <Hotel>
                            <HotelRefID>c0b674b6-ee78-4544-affe-349877b59db7</HotelRefID>
                            <Provider>
                                <MinimalPricePreOffer>
                                    <OwnerCode Provider="Bronevik">BR</OwnerCode>
                                    <Room>
                                        <RoomName>Номер стандарт бизнес  завтраком)</RoomName>
                                        <ProviderMealName>Завтрак шведский стол</ProviderMealName>
                                    </Room>
                                    <TotalAmount>
                                        <AgentComission CurCode="RUB">0.00</AgentComission>
                                        <TotalAmount CurCode="RUB">4100.00</TotalAmount>
                                    </TotalAmount>
                                </MinimalPricePreOffer>
                            </Provider>
                        </Hotel>
                        <Hotel>
                            <HotelRefID>e2cee7c7-5d45-4bf5-b88e-c41fa36bcbfe</HotelRefID>
                            <Provider>
                                <MinimalPricePreOffer>
                                    <OwnerCode Provider="Bronevik">BR</OwnerCode>
                                    <Room>
                                        <RoomName>Номер стандарт  завтраком)</RoomName>
                                        <ProviderMealName>Завтрак шведский стол</ProviderMealName>
                                    </Room>
                                    <TotalAmount>
                                        <AgentComission CurCode="RUB">0.00</AgentComission>
                                        <TotalAmount CurCode="RUB">4100.00</TotalAmount>
                                    </TotalAmount>
                                </MinimalPricePreOffer>
                            </Provider>
                        </Hotel>
                        <Hotel>
                            <HotelRefID>aecccd54-d039-4cef-8d91-b827f99b36cc</HotelRefID>
                            <Provider>
                                <MinimalPricePreOffer>
                                    <OwnerCode Provider="Bronevik">BR</OwnerCode>
                                    <Room>
                                        <RoomName>Номер эконом  завтраком)</RoomName>
                                        <ProviderMealName>Завтрак шведский стол</ProviderMealName>
                                    </Room>
                                    <TotalAmount>
                                        <AgentComission CurCode="RUB">0.00</AgentComission>
                                        <TotalAmount CurCode="RUB">3100.00</TotalAmount>
                                    </TotalAmount>
                                </MinimalPricePreOffer>
                            </Provider>
                        </Hotel>
                        <Hotel>
                            <HotelRefID>a7d8153f-d3e5-43db-b1f8-f50fea54e8cd</HotelRefID>
                            <Provider>
                                <MinimalPricePreOffer>
                                    <OwnerCode Provider="Bronevik">BR</OwnerCode>
                                    <Room>
                                        <RoomName>Номер стандарт  завтраком)</RoomName>
                                        <ProviderMealName>Завтрак континентальный</ProviderMealName>
                                    </Room>
                                    <TotalAmount>
                                        <AgentComission CurCode="RUB">0.00</AgentComission>
                                        <TotalAmount CurCode="RUB">4100.00</TotalAmount>
                                    </TotalAmount>
                                </MinimalPricePreOffer>
                            </Provider>
                        </Hotel>
                        <Hotel>
                            <HotelRefID>bdc973fe-1992-4d58-8778-f19269232601</HotelRefID>
                            <Provider>
                                <MinimalPricePreOffer>
                                    <OwnerCode Provider="Bronevik">BR</OwnerCode>
                                    <Room>
                                        <RoomName>Номер стандарт</RoomName>
                                    </Room>
                                    <TotalAmount>
                                        <AgentComission CurCode="RUB">0.00</AgentComission>
                                        <TotalAmount CurCode="RUB">3100.00</TotalAmount>
                                    </TotalAmount>
                                </MinimalPricePreOffer>
                            </Provider>
                            <Provider>
                                <MinimalPricePreOffer>
                                    <OwnerCode Provider="HotelBookPro">HBP</OwnerCode>
                                    <Room>
                                        <RoomName>Номер стандарт эконом с 1 двуспальной кроватью</RoomName>
                                        <ProviderMealName>Без питания</ProviderMealName>
                                    </Room>
                                    <TotalAmount>
                                        <AgentComission CurCode="RUB">30.00</AgentComission>
                                        <TotalAmount CurCode="RUB">4147.00</TotalAmount>
                                    </TotalAmount>
                                </MinimalPricePreOffer>
                            </Provider>
                        </Hotel>
                        <Hotel>
                            <HotelRefID>1fa5b079-d030-4dc7-b6a4-b6b676675b8c</HotelRefID>
                            <Provider>
                                <MinimalPricePreOffer>
                                    <OwnerCode Provider="Bronevik">BR</OwnerCode>
                                    <Room>
                                        <RoomName>2-местный номер стандарт с 1 двуспальной кроватью  завтраком)</RoomName>
                                        <ProviderMealName>Завтрак шведский стол</ProviderMealName>
                                    </Room>
                                    <TotalAmount>
                                        <AgentComission CurCode="RUB">0.00</AgentComission>
                                        <TotalAmount CurCode="RUB">4100.00</TotalAmount>
                                    </TotalAmount>
                                </MinimalPricePreOffer>
                            </Provider>
                            <Provider>
                                <MinimalPricePreOffer>
                                    <OwnerCode Provider="HotelBookPro">HBP</OwnerCode>
                                    <Room>
                                        <RoomName>Номер комфорт с 1 двуспальной кроватью</RoomName>
                                        <ProviderMealName>Завтрак Шведский стол</ProviderMealName>
                                    </Room>
                                    <TotalAmount>
                                        <AgentComission CurCode="RUB">30.00</AgentComission>
                                        <TotalAmount CurCode="RUB">7822.00</TotalAmount>
                                    </TotalAmount>
                                </MinimalPricePreOffer>
                            </Provider>
                        </Hotel>
                        <Hotel>
                            <HotelRefID>bd422e67-9e4c-4823-b63e-ccbcb82af754</HotelRefID>
                            <Provider>
                                <MinimalPricePreOffer>
                                    <OwnerCode Provider="Bronevik">BR</OwnerCode>
                                    <Room>
                                        <RoomName>Номер стандарт  завтраком)</RoomName>
                                        <ProviderMealName>Завтрак континентальный</ProviderMealName>
                                    </Room>
                                    <TotalAmount>
                                        <AgentComission CurCode="RUB">0.00</AgentComission>
                                        <TotalAmount CurCode="RUB">3100.00</TotalAmount>
                                    </TotalAmount>
                                </MinimalPricePreOffer>
                            </Provider>
                            <Provider>
                                <MinimalPricePreOffer>
                                    <OwnerCode Provider="HotelBookPro">HBP</OwnerCode>
                                    <Room>
                                        <RoomName>2-местный номер стандарт</RoomName>
                                        <ProviderMealName>Без питания</ProviderMealName>
                                    </Room>
                                    <TotalAmount>
                                        <AgentComission CurCode="RUB">30.00</AgentComission>
                                        <TotalAmount CurCode="RUB">7365.00</TotalAmount>
                                    </TotalAmount>
                                </MinimalPricePreOffer>
                            </Provider>
                        </Hotel>
                        <Hotel>
                            <HotelRefID>bbdcf52d-56cb-4a09-a3ba-c2c29068da97</HotelRefID>
                            <Provider>
                                <MinimalPricePreOffer>
                                    <OwnerCode Provider="Bronevik">BR</OwnerCode>
                                    <Room>
                                        <RoomName>Номер эконом</RoomName>
                                    </Room>
                                    <TotalAmount>
                                        <AgentComission CurCode="RUB">0.00</AgentComission>
                                        <TotalAmount CurCode="RUB">3100.00</TotalAmount>
                                    </TotalAmount>
                                </MinimalPricePreOffer>
                            </Provider>
                        </Hotel>
                        <Hotel>
                            <HotelRefID>7ddda22d-6c8f-4bce-a693-b90b6128a747</HotelRefID>
                            <Provider>
                                <MinimalPricePreOffer>
                                    <OwnerCode Provider="Bronevik">BR</OwnerCode>
                                    <Room>
                                        <RoomName>Номер стандарт  завтраком)</RoomName>
                                        <ProviderMealName>Завтрак континентальный</ProviderMealName>
                                    </Room>
                                    <TotalAmount>
                                        <AgentComission CurCode="RUB">0.00</AgentComission>
                                        <TotalAmount CurCode="RUB">4100.00</TotalAmount>
                                    </TotalAmount>
                                </MinimalPricePreOffer>
                            </Provider>
                        </Hotel>
                        <Hotel>
                            <HotelRefID>b76ad1cb-f378-4ab4-a223-5618b2e0bdd2</HotelRefID>
                            <Provider>
                                <MinimalPricePreOffer>
                                    <OwnerCode Provider="Bronevik">BR</OwnerCode>
                                    <Room>
                                        <RoomName>Номер стандарт  завтраком)</RoomName>
                                        <ProviderMealName>Завтрак шведский стол</ProviderMealName>
                                    </Room>
                                    <TotalAmount>
                                        <AgentComission CurCode="RUB">0.00</AgentComission>
                                        <TotalAmount CurCode="RUB">4100.00</TotalAmount>
                                    </TotalAmount>
                                </MinimalPricePreOffer>
                            </Provider>
                        </Hotel>
                        <Hotel>
                            <HotelRefID>fb1409bf-b917-4fbe-8b27-dd407301fc95</HotelRefID>
                            <Provider>
                                <MinimalPricePreOffer>
                                    <OwnerCode Provider="Bronevik">BR</OwnerCode>
                                    <Room>
                                        <RoomName>Коттедж стандарт  завтраком)</RoomName>
                                    </Room>
                                    <TotalAmount>
                                        <AgentComission CurCode="RUB">0.00</AgentComission>
                                        <TotalAmount CurCode="RUB">4100.00</TotalAmount>
                                    </TotalAmount>
                                </MinimalPricePreOffer>
                            </Provider>
                        </Hotel>
                        <Hotel>
                            <HotelRefID>7cfd43d5-5c01-4fdc-be2f-4fd0792a7960</HotelRefID>
                            <Provider>
                                <MinimalPricePreOffer>
                                    <OwnerCode Provider="HotelBookPro">HBP</OwnerCode>
                                    <Room>
                                        <RoomName>1-местный номер эконом (без окна)</RoomName>
                                        <ProviderMealName>Завтрак Шведский стол</ProviderMealName>
                                    </Room>
                                    <TotalAmount>
                                        <AgentComission CurCode="RUB">30.00</AgentComission>
                                        <TotalAmount CurCode="RUB">3872.00</TotalAmount>
                                    </TotalAmount>
                                </MinimalPricePreOffer>
                            </Provider>
                        </Hotel>
                        <Hotel>
                            <HotelRefID>4417222d-12ce-425f-8a37-c61592c5cc43</HotelRefID>
                            <Provider>
                                <MinimalPricePreOffer>
                                    <OwnerCode Provider="HotelBookPro">HBP</OwnerCode>
                                    <Room>
                                        <RoomName>Номер стандарт семейный с 2 односпальными кроватями</RoomName>
                                        <ProviderMealName>Без питания</ProviderMealName>
                                    </Room>
                                    <TotalAmount>
                                        <AgentComission CurCode="RUB">30.00</AgentComission>
                                        <TotalAmount CurCode="RUB">5403.00</TotalAmount>
                                    </TotalAmount>
                                </MinimalPricePreOffer>
                            </Provider>
                        </Hotel>
                        <Hotel>
                            <HotelRefID>a6c7227f-1b19-4cba-89ac-da3fdb2295db</HotelRefID>
                            <Provider>
                                <MinimalPricePreOffer>
                                    <OwnerCode Provider="HotelBookPro">HBP</OwnerCode>
                                    <Room>
                                        <RoomName>Апартаменты студия</RoomName>
                                        <ProviderMealName>Без питания</ProviderMealName>
                                    </Room>
                                    <TotalAmount>
                                        <AgentComission CurCode="RUB">30.00</AgentComission>
                                        <TotalAmount CurCode="RUB">4545.00</TotalAmount>
                                    </TotalAmount>
                                </MinimalPricePreOffer>
                            </Provider>
                        </Hotel>
                        <Hotel>
                            <HotelRefID>7d780f4f-be43-499c-8d4e-ac8864e4ef04</HotelRefID>
                            <Provider>
                                <MinimalPricePreOffer>
                                    <OwnerCode Provider="HotelBookPro">HBP</OwnerCode>
                                    <Room>
                                        <RoomName>Кровать в 2-местном общем номере</RoomName>
                                        <ProviderMealName>Без питания</ProviderMealName>
                                    </Room>
                                    <TotalAmount>
                                        <AgentComission CurCode="RUB">30.00</AgentComission>
                                        <TotalAmount CurCode="RUB">992.00</TotalAmount>
                                    </TotalAmount>
                                </MinimalPricePreOffer>
                            </Provider>
                        </Hotel>
                        <Hotel>
                            <HotelRefID>a71bfe2f-b90e-49dc-91a9-8118fb20e7fd</HotelRefID>
                            <Provider>
                                <MinimalPricePreOffer>
                                    <OwnerCode Provider="HotelBookPro">HBP</OwnerCode>
                                    <Room>
                                        <RoomName>Кровать в 4-местном общем номере (удобства на этаже)</RoomName>
                                        <ProviderMealName>Без питания</ProviderMealName>
                                    </Room>
                                    <TotalAmount>
                                        <AgentComission CurCode="RUB">30.00</AgentComission>
                                        <TotalAmount CurCode="RUB">931.00</TotalAmount>
                                    </TotalAmount>
                                </MinimalPricePreOffer>
                            </Provider>
                        </Hotel>
                        <Hotel>
                            <HotelRefID>8984d6d3-3008-462a-beec-c43787a25f95</HotelRefID>
                            <Provider>
                                <MinimalPricePreOffer>
                                    <OwnerCode Provider="HotelBookPro">HBP</OwnerCode>
                                    <Room>
                                        <RoomName>2-местный номер улучшенный</RoomName>
                                        <ProviderMealName>Без питания</ProviderMealName>
                                    </Room>
                                    <TotalAmount>
                                        <AgentComission CurCode="RUB">30.00</AgentComission>
                                        <TotalAmount CurCode="RUB">4444.00</TotalAmount>
                                    </TotalAmount>
                                </MinimalPricePreOffer>
                            </Provider>
                        </Hotel>
                        <Hotel>
                            <HotelRefID>ca605d68-1d7d-4195-975d-b2f2cb15b3b1</HotelRefID>
                            <Provider>
                                <MinimalPricePreOffer>
                                    <OwnerCode Provider="HotelBookPro">HBP</OwnerCode>
                                    <Room>
                                        <RoomName>Кровать в 8-местном общем номере</RoomName>
                                        <ProviderMealName>Без питания</ProviderMealName>
                                    </Room>
                                    <TotalAmount>
                                        <AgentComission CurCode="RUB">30.00</AgentComission>
                                        <TotalAmount CurCode="RUB">1088.00</TotalAmount>
                                    </TotalAmount>
                                </MinimalPricePreOffer>
                            </Provider>
                        </Hotel>
                        <Hotel>
                            <HotelRefID>f32609be-f950-4825-a707-92cad545a451</HotelRefID>
                            <Provider>
                                <MinimalPricePreOffer>
                                    <OwnerCode Provider="HotelBookPro">HBP</OwnerCode>
                                    <Room>
                                        <RoomName>Кровать в общем женском 8-местном номере (удобства на этаже)</RoomName>
                                        <ProviderMealName>Без питания</ProviderMealName>
                                    </Room>
                                    <TotalAmount>
                                        <AgentComission CurCode="RUB">30.00</AgentComission>
                                        <TotalAmount CurCode="RUB">891.00</TotalAmount>
                                    </TotalAmount>
                                </MinimalPricePreOffer>
                            </Provider>
                        </Hotel>
                        <Hotel>
                            <HotelRefID>f6e1f6c7-d07b-4385-bc29-3d766f3cd076</HotelRefID>
                            <Provider>
                                <MinimalPricePreOffer>
                                    <OwnerCode Provider="HotelBookPro">HBP</OwnerCode>
                                    <Room>
                                        <RoomName>Коттедж стандарт</RoomName>
                                        <ProviderMealName>Без питания</ProviderMealName>
                                    </Room>
                                    <TotalAmount>
                                        <AgentComission CurCode="RUB">30.00</AgentComission>
                                        <TotalAmount CurCode="RUB">4967.00</TotalAmount>
                                    </TotalAmount>
                                </MinimalPricePreOffer>
                            </Provider>
                        </Hotel>
                        <Hotel>
                            <HotelRefID>eab29fd0-9927-45e1-94c7-20ec2a5140d1</HotelRefID>
                            <Provider>
                                <MinimalPricePreOffer>
                                    <OwnerCode Provider="HotelBookPro">HBP</OwnerCode>
                                    <Room>
                                        <RoomName>Номер комфорт семейный с 1 двуспальной кроватью  завтраком, мансарда)</RoomName>
                                        <ProviderMealName>Континентальный завтрак</ProviderMealName>
                                    </Room>
                                    <TotalAmount>
                                        <AgentComission CurCode="RUB">30.00</AgentComission>
                                        <TotalAmount CurCode="RUB">5643.00</TotalAmount>
                                    </TotalAmount>
                                </MinimalPricePreOffer>
                            </Provider>
                        </Hotel>
                        <Hotel>
                            <HotelRefID>69e97ae2-4eaa-4bca-ab95-2420f58abd83</HotelRefID>
                            <Provider>
                                <MinimalPricePreOffer>
                                    <OwnerCode Provider="HotelBookPro">HBP</OwnerCode>
                                    <Room>
                                        <RoomName>Номер делюкс полулюкс</RoomName>
                                        <ProviderMealName>Без питания</ProviderMealName>
                                    </Room>
                                    <TotalAmount>
                                        <AgentComission CurCode="RUB">30.00</AgentComission>
                                        <TotalAmount CurCode="RUB">8848.00</TotalAmount>
                                    </TotalAmount>
                                </MinimalPricePreOffer>
                            </Provider>
                        </Hotel>
                        <Hotel>
                            <HotelRefID>65432a47-b476-4095-a87e-49bf3b53a4ce</HotelRefID>
                            <Provider>
                                <MinimalPricePreOffer>
                                    <OwnerCode Provider="HotelBookPro">HBP</OwnerCode>
                                    <Room>
                                        <RoomName>1-местный номер стандарт</RoomName>
                                        <ProviderMealName>Завтрак Шведский стол</ProviderMealName>
                                    </Room>
                                    <TotalAmount>
                                        <AgentComission CurCode="RUB">30.00</AgentComission>
                                        <TotalAmount CurCode="RUB">4714.00</TotalAmount>
                                    </TotalAmount>
                                </MinimalPricePreOffer>
                            </Provider>
                        </Hotel>
                        <Hotel>
                            <HotelRefID>450e1819-f00b-46c5-a06f-c288a282a0d4</HotelRefID>
                            <Provider>
                                <MinimalPricePreOffer>
                                    <OwnerCode Provider="HotelBookPro">HBP</OwnerCode>
                                    <Room>
                                        <RoomName>2-местная комната стандарт</RoomName>
                                        <ProviderMealName>Без питания</ProviderMealName>
                                    </Room>
                                    <TotalAmount>
                                        <AgentComission CurCode="RUB">30.00</AgentComission>
                                        <TotalAmount CurCode="RUB">4049.00</TotalAmount>
                                    </TotalAmount>
                                </MinimalPricePreOffer>
                            </Provider>
                        </Hotel>
                    </Hotels>
                </Response>
            </List:Mixvel_HotelListRS>
        </AppData>
    </Body>
</MixEnv:Envelope>

Additional request parameters

Preferred language in response

The following structure is used to pass the language code:

  • Mixvel_HotelListRQ/PayloadAttributes/PrimaryLangID

The default value is RU - Russian. Information will be returned in the requested language only if it is available, otherwise the response language is Russian.

Example of the Mixvel_HotelListRQ request with a language filter:

Show request example
<MixEnv:Envelop xmlns:MixEnv="https://www.mixvel.com/API/XSD/mixvel_envelop/1_06">
    <Header/>
    <Body>
        <MessageInfo MessageId="79b67a26-6fc3-41e3-0ac4-14e0ac0245c8" TimeSent="2025-09-18T03:01:38.6129323Z"/>
        <AppData>
            <HotelList:Mixvel_HotelListRQ xmlns:HotelList="https://www.mixvel.com/API/XSD/Mixvel_HotelListRQ/1_00">
                <PayloadAttributes>
                    <PrimaryLangID>RU</PrimaryLangID>
                </PayloadAttributes>
                <Request>
                    <HotelRequest>
                        <ConfirmationMode>Online</ConfirmationMode>
                        <Period>
                            <CheckInDate>2025-09-20</CheckInDate>
                            <CheckOutDate>2025-09-21</CheckOutDate>
                        </Period>
                        <SearchCriteria>
                            <Location>
                                <CityID>6687587a-a398-4e6f-89fc-84aaa931c8fd</CityID>
                            </Location>
                        </SearchCriteria>
                    </HotelRequest>
                    <RoomsSearchDetails>
                        <AdultsAmount>1</AdultsAmount>
                        <RoomsAmount>1</RoomsAmount>
                    </RoomsSearchDetails>
                </Request>
            </HotelList:Mixvel_HotelListRQ>
        </AppData>
    </Body>
</MixEnv:Envelop>

Settlement currency

The following structure is used to pass the currency code:

  • Mixvel_HotelListRQ/Request/ResponseParameters/CurParameter/CurCode

Only RUB is allowed for hotels.

Example of the Mixvel_HotelListRQ request with currency specified:

Show request example
<MixEnv:Envelop xmlns:MixEnv="https://www.mixvel.com/API/XSD/mixvel_envelop/1_06">
    <Header/>
    <Body>
        <MessageInfo MessageId="79b67a26-6fc3-41e3-0ac4-14e0ac0245c8" TimeSent="2021-03-17T17:37:47Z"/>
        <AppData>
            <HotelList:Mixvel_HotelListRQ xmlns:HotelList="https://www.mixvel.com/API/XSD/Mixvel_HotelListRQ/1_00">
                <Request>
                    <HotelRequest>
                        <ConfirmationMode>Online</ConfirmationMode>
                        <Period>
                            <CheckInDate>2025-09-20</CheckInDate>
                            <CheckOutDate>2025-09-21</CheckOutDate>
                        </Period>
                        <SearchCriteria>
                            <Location>
                                <CityID>6687587a-a398-4e6f-89fc-84aaa931c8fd</CityID>
                            </Location>
                        </SearchCriteria>
                    </HotelRequest>
                    <ResponseParameters>
                        <CurParameter>
                            <CurCode>RUB</CurCode>
                        </CurParameter>
                    </ResponseParameters>
                    <RoomsSearchDetails>
                        <AdultsAmount>1</AdultsAmount>
                        <RoomsAmount>1</RoomsAmount>
                    </RoomsSearchDetails>
                </Request>
            </HotelList:Mixvel_HotelListRQ>
        </AppData>
    </Body>
</MixEnv:Envelop>