{"info":{"_postman_id":"bec7c615-e225-4bc4-abe5-e5f0942fdb38","name":"Travel Convex API for Hotel","description":"<html><head></head><body><p>This documentation provides detailed information on two key APIs used for hotel and room bookings: the Hotel List API and the Room List API. It also includes static data for countries and cities used in these APIs.</p>\n<p>Contact Support:<br>Name: Karan W.<br>Email: <a href=\"https://mailto:karan@travelconvex.com\">karan@travelconvex.com</a></p>\n<h1 id=\"authorization\"><strong>Authorization</strong></h1>\n<p>To access the APIs, you need to provide an authorization token in the header of your request. The token should be included in the <code>Authorization</code> header using the Basic Authentication scheme.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Basic &lt;Token&gt;\n\n</code></pre><p>Token : The authentication token provided by the Travel Convex team. It ensures that only authorized users can access the API.</p>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[{"content":"Authorization","slug":"authorization"}],"owner":"2318796","collectionId":"bec7c615-e225-4bc4-abe5-e5f0942fdb38","publishedId":"2sAYHwJ4sq","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"FF6C37"},"publishDate":"2024-12-11T05:56:20.000Z"},"item":[{"name":"Country Static Data","id":"09dae4ce-bebc-435a-8a96-722f07efca0d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://hotelapisandbox.travelconvex.com/Country.csv","description":"<p><strong>Columns:</strong></p>\n<ul>\n<li><p><strong>CountryId</strong>: The unique identifier for the country. Example: <code>229</code>.</p>\n</li>\n<li><p><strong>CountryName</strong>: The name of the country. Example: <code>United Arab Emirates</code>.</p>\n</li>\n</ul>\n<p><strong>Usage:</strong> This data is used for specifying countries in the APIs.</p>\n","urlObject":{"protocol":"https","path":["Country.csv"],"host":["hotelapisandbox","travelconvex","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"09dae4ce-bebc-435a-8a96-722f07efca0d"},{"name":"City Static Data","id":"3a1ced29-d986-4539-9a09-319c2b49306b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://hotelapisandbox.travelconvex.com/City.csv","description":"<p><strong>Columns:</strong></p>\n<ul>\n<li><p><strong>CityId</strong>: The unique identifier for the city. Example: <code>41389</code>.</p>\n</li>\n<li><p><strong>CityName</strong>: The name of the city. Example: <code>Dubai</code>.</p>\n</li>\n</ul>\n<p><strong>Usage:</strong> This data is used for specifying cities in the APIs.</p>\n","urlObject":{"protocol":"https","path":["City.csv"],"host":["hotelapisandbox","travelconvex","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"3a1ced29-d986-4539-9a09-319c2b49306b"},{"name":"Hotel Static Data","id":"571e2731-43be-4103-9abc-df30cec48bdb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://hotelapisandbox.travelconvex.com/Hotel.csv","description":"<p><strong>Columns:</strong></p>\n<ul>\n<li><p><strong>Hotel Id</strong>: The unique identifier for Hotel. Example: <code>4112389</code>.</p>\n</li>\n<li><p><strong>Hotel Name:</strong> The name of property.</p>\n</li>\n<li><p><strong>Cordinates</strong> : Latitude and Longitude of property.</p>\n</li>\n<li><p><strong>CityId</strong>: The unique identifier for the city. Example: <code>41389</code>.</p>\n</li>\n<li><p><strong>CityName</strong>: The name of the city. Example: <code>Dubai</code>.</p>\n</li>\n</ul>\n<p><strong>Usage:</strong> This data is used for specifying hotels in the APIs.</p>\n","urlObject":{"protocol":"https","path":["Hotel.csv"],"host":["hotelapisandbox","travelconvex","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"571e2731-43be-4103-9abc-df30cec48bdb"},{"name":"Get Hotel List","id":"dfda9e6e-c066-43f0-adeb-052939caa8f8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"CityId\": 41389,\n    \"Country\": 229,\n    \"Rooms\": [{\n        \"Adult\": 1,\n        \"Child\": [6, 12]\n    }],\n    \"CheckInDate\": \"13-Sep-2024\",\n    \"CheckOutDate\": \"15-Sep-2024\",\n    \"Residency\": 229\n}\n","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"hotelapisandbox.wholesaletourism.com/api/APIHotel/GetHotelList","description":"<p><strong>Explanation of Request Columns:</strong></p>\n<ul>\n<li><p><strong>CityId</strong>: The ID of the city where the hotel is located. Example: <code>41389</code>.</p>\n</li>\n<li><p><strong>Country</strong>: The ID of the country where the city is located. Example: <code>229</code>.</p>\n</li>\n<li><p><strong>Rooms</strong>: An array specifying the room details.</p>\n<ul>\n<li><p><strong>Adult</strong>: The number of adults staying in the room. Example: <code>1</code>.</p>\n</li>\n<li><p><strong>Child</strong>: An array of ages for children staying in the room. Example: <code>[6, 12]</code>.</p>\n</li>\n</ul>\n</li>\n<li><p><strong>CheckInDate</strong>: The date when the stay begins, in the format <code>DD-MMM-YYYY</code>. Example: <code>13-Sep-2024</code>.</p>\n</li>\n<li><p><strong>CheckOutDate</strong>: The date when the stay ends, in the format <code>DD-MMM-YYYY</code>. Example: <code>15-Sep-2024</code>.</p>\n</li>\n<li><p><strong>Residency</strong>: The ID representing the residency status or location. Example: <code>229</code>.</p>\n</li>\n</ul>\n<p><strong>Explanation of Response Columns:</strong></p>\n<p><em><strong>Results :</strong></em></p>\n<ul>\n<li><p><strong>HotelId</strong>: The unique identifier for the hotel. Example: <code>1618774</code>.</p>\n</li>\n<li><p><strong>HotelName</strong>: The name of the hotel. Example: <code>Paramount Hotel Dubai</code>.</p>\n</li>\n<li><p><strong>StarCategory</strong>: The star rating of the hotel. Example: <code>0</code>.</p>\n</li>\n<li><p><strong>Lat</strong>: The latitude coordinate of the hotel. Example: <code>25.186416625976562</code>.</p>\n</li>\n<li><p><strong>Long</strong>: The longitude coordinate of the hotel. Example: <code>55.292022705078125</code>.</p>\n</li>\n<li><p><strong>Slug</strong>: A URL-friendly string for the hotel name. Example: <code>\"\"</code>.</p>\n</li>\n<li><p><strong>ImagePath</strong>: URL to an image of the hotel. Example: <code>https://cdn.worldota.net/t/x500/content/62/01/62011785e40159d30a55d77af4c0383314bd6789.jpeg</code>.</p>\n</li>\n<li><p><strong>CityName</strong>: The name of the city where the hotel is located. Example: <code>Business Bay, Dubai 119169</code>.</p>\n</li>\n<li><p><strong>Price</strong>: The price of the hotel room. Example: <code>1352.0</code>.</p>\n</li>\n<li><p><strong>CancellationDate</strong>: The last date for free cancellation. Example: <code>\"\"</code>.</p>\n</li>\n<li><p><strong>RoomName</strong>: The name or description of the room. Example: <code>SCENE ROOM DOWNTOWN VIEW</code>.</p>\n</li>\n<li><p><strong>MealName</strong>: The type of meal included. Example: <code>Room only</code>.</p>\n</li>\n</ul>\n<p><em><strong>GUID</strong></em> : Unique Indentifier for every Booking</p>\n","urlObject":{"path":["api","APIHotel","GetHotelList"],"host":["hotelapisandbox.wholesaletourism.com"],"query":[],"variable":[]}},"response":[{"id":"0cbf56e7-d44b-484a-937c-510bce182037","name":"Get Hotel List","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"CityId\": 41389,\n    \"Country\": 229,\n    \"Rooms\" : [{\n        \"Adult\": 2\n    }],\n    \"CheckInDate\" : \"01-Dec-2024\",\n    \"CheckOutDate\" : \"02-Dec-2024\",\n    \"Residency\":229\n    \n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"hotelapisandbox.travelconvex.com/api/APIHotel/GetHotelList"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Wed, 11 Sep 2024 11:16:43 GMT"},{"key":"Content-Length","value":"149865"}],"cookie":[],"responseTime":null,"body":"{\n    \"Results\": [\n        {\n            \"HotelId\": 628038,\n            \"HotelName\": \"Best Western Plus Dubai Academic City\",\n            \"StarCategory\": 0,\n            \"Lat\": \"25.127290725708008\",\n            \"Long\": \"55.4232292175293\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/c5/da/c5da7eb8a0aceb059801833541d3b23bcce726c3.jpeg\",\n            \"CityName\": \"Al Ruwayyah First, Dubai 00001\",\n            \"Price\": 2899.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"DOUBLE ROOM\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 1097676,\n            \"HotelName\": \"Address Sky View Hotel\",\n            \"StarCategory\": 5,\n            \"Lat\": \"25.201875686645508\",\n            \"Long\": \"55.270774841308594\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/extranet/f3/ce/f3cee45a3ee63bc4f1b0dc7874f3baa7b3c1cfd1.jpeg\",\n            \"CityName\": \"Sheikh Mohammed Bin Rashed Boulevard, Dubai 111969\",\n            \"Price\": 1996.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"PREMIER ROOM\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 1618104,\n            \"HotelName\": \"Sofitel Dubai The Obelisk\",\n            \"StarCategory\": 0,\n            \"Lat\": \"25.231201171875\",\n            \"Long\": \"55.318607330322266\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/89/f5/89f55451d4207475a8d2e333c2d45113b8c5a531.jpeg\",\n            \"CityName\": \"Wafi City, Sheikh Rashid Road, Umm Hurair 2, Dubai 11487\",\n            \"Price\": 706.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"DOUBLE DELUXE\",\n            \"MealName\": \"ROOM ONLY\"\n        },\n        {\n            \"HotelId\": 1505194,\n            \"HotelName\": \"Hyatt Place Dubai Wasl District\",\n            \"StarCategory\": 4,\n            \"Lat\": \"25.27055549621582\",\n            \"Long\": \"55.315120697021484\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/a0/6c/a06cbc8283e532b1ee952e732dfca13cfe2853b5.jpeg\",\n            \"CityName\": \"Al Wasl District, Dubai 00000\",\n            \"Price\": 697.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"ROOM, 1 KING BED WITH SOFA BED , 1 KING BED AND 1 DOUBLE SOFA BED\",\n            \"MealName\": \"Breakfast buffet\"\n        },\n        {\n            \"HotelId\": 1560715,\n            \"HotelName\": \"Flora Inn Hotel Dubai Airport Hotel\",\n            \"StarCategory\": 4,\n            \"Lat\": \"25.252553939819336\",\n            \"Long\": \"55.34281539916992\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/fa/42/fa42cbd72181ef3abadfb2ce6d17a69a68c46502.jpeg\",\n            \"CityName\": \"Deira, Al Garhoud, Airport Road, 24, Dubai 125275\",\n            \"Price\": 537.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"SUPERIOR ROOM - DOUBLE\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 1612030,\n            \"HotelName\": \"Grand Cosmopolitan Hotel\",\n            \"StarCategory\": 5,\n            \"Lat\": \"25.113157272338867\",\n            \"Long\": \"55.192813873291016\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/extranet/82/b6/82b600234396789f622bbf805a13ef08c1c8af9f.jpeg\",\n            \"CityName\": \"Al Barsha Street 1, Dubai 38250\",\n            \"Price\": 536.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"SUPERIOR ROOM\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 1459913,\n            \"HotelName\": \"Hampton by Hilton Dubai Al Seef\",\n            \"StarCategory\": 3,\n            \"Lat\": \"25.256059646606445\",\n            \"Long\": \"55.3101806640625\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/8f/84/8f84887bc0282e15c0e9ce449434b9e99be88a25.jpeg\",\n            \"CityName\": \"Al Seef Street Building B, Dubai 12331\",\n            \"Price\": 438.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"QUEEN ROOM - FREE WI-FI/HOT BREAKFAST INCLUDED/MINI FRIDGE - WORK AREA/COFFEE-TEA FACILITIES/WALKIN SHOWER -\",\n            \"MealName\": \"Buffet Breakfast\"\n        },\n        {\n            \"HotelId\": 1969466,\n            \"HotelName\": \"Novotel Jumeirah Village Triangle\",\n            \"StarCategory\": 0,\n            \"Lat\": \"25.04155158996582\",\n            \"Long\": \"55.18775177001953\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/da/a9/daa971c449e6689acc74aeffad0db9ad7beff92f.jpeg\",\n            \"CityName\": \"B1 Joory Street District 3, Dubai 450763\",\n            \"Price\": 437.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"SUPERIOR ROOM\",\n            \"MealName\": \"Breakfast included\"\n        },\n        {\n            \"HotelId\": 1801380,\n            \"HotelName\": \"Howard Johnson Plaza By Wyndham Dubai Deira Hotel\",\n            \"StarCategory\": 4,\n            \"Lat\": \"25.26481819152832\",\n            \"Long\": \"55.322044372558594\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/78/26/782655f53fc0ec9382a57f27e2f1d21dff1d5623.jpeg\",\n            \"CityName\": \"26 B Street, Al Rigga, Deira, Dubai 120328\",\n            \"Price\": 396.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"DOUBLE ROOM KING BED   DE LUXE\",\n            \"MealName\": \"Room only\"\n        },\n        {\n            \"HotelId\": 437660,\n            \"HotelName\": \"TIME Asma Hotel\",\n            \"StarCategory\": 4,\n            \"Lat\": \"25.110942840576172\",\n            \"Long\": \"55.19657897949219\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/27/dd/27dd79293b9c5f246aa0ae4c10349f5724cef663.jpeg\",\n            \"CityName\": \"Al Barsha Rd, Dubai 24026\",\n            \"Price\": 382.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"DOUBLE DELUXE\",\n            \"MealName\": \"BED AND BREAKFAST\"\n        },\n        {\n            \"HotelId\": 1799599,\n            \"HotelName\": \"URBAN Al Khoory Hotel\",\n            \"StarCategory\": 0,\n            \"Lat\": \"25.162811279296875\",\n            \"Long\": \"55.24808120727539\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/c7/39/c7399688ff67f574ff9d4cac93c8d3a051d603ef.jpeg\",\n            \"CityName\": \"Al Waha Street, Dubai Al Waha Street, Exit\",\n            \"Price\": 381.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"CLASSIC ROOM\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 1952329,\n            \"HotelName\": \"Citadines Culture Village Dubai, Waterfront Jadaf\",\n            \"StarCategory\": 0,\n            \"Lat\": \"25.229368209838867\",\n            \"Long\": \"55.33806610107422\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/c5/3f/c53ff776e783e99ac432965e5e953e7740ed5f72.jpeg\",\n            \"CityName\": \"Al Jaddaf, Culture Village, Dubai 0\",\n            \"Price\": 761.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"STANDARD ROOM (WITH & W/OUT BALCONY)\",\n            \"MealName\": \"Room only\"\n        },\n        {\n            \"HotelId\": 956725,\n            \"HotelName\": \"Hyatt Place Dubai Al Rigga Residences\",\n            \"StarCategory\": 3,\n            \"Lat\": \"25.262571334838867\",\n            \"Long\": \"55.32826614379883\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/01/55/0155f87a3e53a9afa77943717786a4e3308cabf7.jpeg\",\n            \"CityName\": \"Al Rigga Road, Dubai 33178\",\n            \"Price\": 759.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"ROOM, 1 KING BED\",\n            \"MealName\": \"Breakfast Included\"\n        },\n        {\n            \"HotelId\": 421781,\n            \"HotelName\": \"Towers Rotana\",\n            \"StarCategory\": 4,\n            \"Lat\": \"25.212997436523438\",\n            \"Long\": \"55.2752685546875\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/a7/95/a7958c2057fa0463833ed8a705af3c940a70f9d5.jpeg\",\n            \"CityName\": \"Sheikh Zayed Road, Dubai 30430\",\n            \"Price\": 637.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"GUEST ROOM  - TWIN BEDS\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 2005889,\n            \"HotelName\": \"Ibis Styles Dubai Deira\",\n            \"StarCategory\": 3,\n            \"Lat\": \"25.274370193481445\",\n            \"Long\": \"55.298274993896484\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/13/c9/13c9bcfb5c5a789a205f8973bf35d9c515b9e4e7.jpeg\",\n            \"CityName\": \"Maitha Plaza, Al Khaleej Road 110, Deira, Dubai 15472\",\n            \"Price\": 516.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"STANDARD ROOM KING NON REFUNDABLE\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 1772017,\n            \"HotelName\": \"Fortune Atrium Hotel\",\n            \"StarCategory\": 0,\n            \"Lat\": \"25.257144927978516\",\n            \"Long\": \"55.29985046386719\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/9b/91/9b91ad6ff27acd4c948e1c586f9ddbcebf6bb90c.jpeg\",\n            \"CityName\": \"Khalid Bin Al Waleed Rd, Dubai 49185\",\n            \"Price\": 515.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"TWIN ROOM\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 128760,\n            \"HotelName\": \"Hampton by Hilton Dubai Al Barsha\",\n            \"StarCategory\": 0,\n            \"Lat\": \"25.113759994506836\",\n            \"Long\": \"55.19395065307617\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/c8/72/c87246b3ae1939c4cf6a6657c45a1bd5688b2e8a.jpeg\",\n            \"CityName\": \"Al Barsha 1 Street, Dubai 450193\",\n            \"Price\": 415.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"KING GUEST ROOM NON SMOKING - FREE WI-FI/HOT BREAKFAST INCLUDED/MINI FRIDGE - WORK AREA/COFFEE-TEA FACILITIES/WALKIN SHOWER -\",\n            \"MealName\": \"Buffet Breakfast\"\n        },\n        {\n            \"HotelId\": 1618643,\n            \"HotelName\": \"Le Wana Hotel\",\n            \"StarCategory\": 0,\n            \"Lat\": \"25.26799774169922\",\n            \"Long\": \"55.31529235839844\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/74/64/7464bc1e0611f8475070d5ef31715565ab6a4f09.jpeg\",\n            \"CityName\": \"4th St, Dubai 2760\",\n            \"Price\": 408.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"DELUXE DOUBLE OR TWIN ROOM NON-REFUNDABLE\",\n            \"MealName\": \"ROOM(ONLY)\"\n        },\n        {\n            \"HotelId\": 1800934,\n            \"HotelName\": \"Kingsgate Canal Hotel\",\n            \"StarCategory\": 3,\n            \"Lat\": \"25.226003646850586\",\n            \"Long\": \"55.34049987792969\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/5e/ae/5eaeb04dd6b5b9fe8468184d5801a95c03370733.jpeg\",\n            \"CityName\": \"Building number 6, street 10, al jadaf,, Dubai 89029\",\n            \"Price\": 348.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"STANDARD KING\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 1684085,\n            \"HotelName\": \"ibis Styles Dubai Airport Hotel\",\n            \"StarCategory\": 3,\n            \"Lat\": \"25.250221252441406\",\n            \"Long\": \"55.34429931640625\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/2b/f3/2bf37cc519f794362131b6744de3a5f796311070.jpeg\",\n            \"CityName\": \"61B Street, Al Garhoud, Next to GGICO Metro Station, Dubai 79841\",\n            \"Price\": 341.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"KING ROOM\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 1797243,\n            \"HotelName\": \"Hilton Dubai Palm Jumeirah\",\n            \"StarCategory\": 0,\n            \"Lat\": \"25.10578155517578\",\n            \"Long\": \"55.146820068359375\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/ostrovok/f6/7a/f67a6b5373de7d8c973002c49925f389335f19f2.jpeg\",\n            \"CityName\": \"Palm West Beach, The Palm Jumeirah, Dubai 31200\",\n            \"Price\": 977.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"TWO DOUBLE BEDS GUEST ROOM WITH BALCONY - COMP WIFI/ESPRESSO/TEA KETTLE/HDTV/USB PORT - 40 SQM/IRON-BOARD/MINIBAR/PARTIAL SEA VIEW -\",\n            \"MealName\": \"Room only\"\n        },\n        {\n            \"HotelId\": 1616450,\n            \"HotelName\": \"Hotel Indigo Dubai Downtown, an IHG Hotel\",\n            \"StarCategory\": 5,\n            \"Lat\": \"25.192394256591797\",\n            \"Long\": \"55.286991119384766\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/11/43/114321b426e2bf1428ed73c4eb4d20340c21a0f8.jpeg\",\n            \"CityName\": \"Marasi Drive, PO Box 24666, Dubai 0\",\n            \"Price\": 928.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"DOUBLE ROOM KING BED - CITY VIEW\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 776391,\n            \"HotelName\": \"Jannah Marina Hotel Apartments\",\n            \"StarCategory\": 0,\n            \"Lat\": \"25.068618774414062\",\n            \"Long\": \"55.13028335571289\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/0a/fc/0afcc62478dcad4ccee04d3f613cee072d2fa8e5.jpeg\",\n            \"CityName\": \"Jannah Marina Bay Suites, Seba Street, Dubai Marina, Dubai 000\",\n            \"Price\": 573.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"DELUXE STUDIO CITY VIEW\",\n            \"MealName\": \"Room only\"\n        },\n        {\n            \"HotelId\": 362474,\n            \"HotelName\": \"Gevora Hotel\",\n            \"StarCategory\": 4,\n            \"Lat\": \"25.212520599365234\",\n            \"Long\": \"55.27681350708008\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/e6/b2/e6b250d6b847f51d6fa8b6f175d58a640c96b221.jpeg\",\n            \"CityName\": \"Sheikh Zayed Road, Next to Al Attar, Dubai 2260\",\n            \"Price\": 566.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"DELUXE ROOM\",\n            \"MealName\": \"ROOM ONLY\"\n        },\n        {\n            \"HotelId\": 879214,\n            \"HotelName\": \"Novotel Bur Dubai\",\n            \"StarCategory\": 0,\n            \"Lat\": \"25.23150062561035\",\n            \"Long\": \"55.32440185546875\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/8b/58/8b58a5e968b54d111e69ba714943c9dd4de2eb4d.jpeg\",\n            \"CityName\": \"Dubai Healthcare City, Umm Hurair 2, Dubai 23506\",\n            \"Price\": 447.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"SUPERIOR TWIN ROOM\",\n            \"MealName\": \"ROOM ONLY\"\n        },\n        {\n            \"HotelId\": 1798555,\n            \"HotelName\": \"Radisson Dubai Damac Hills\",\n            \"StarCategory\": 4,\n            \"Lat\": \"25.0194091796875\",\n            \"Long\": \"55.24546813964844\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/4e/e2/4ee273001b1c86249e2058ff7549e85868c717db.jpeg\",\n            \"CityName\": \"Dubailand, Hessa Street, Damac Hills, Dubai 00000\",\n            \"Price\": 446.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"STANDARD ROOM 2 TWIN BEDS  NON REFUNDABLE\",\n            \"MealName\": \"Room only\"\n        },\n        {\n            \"HotelId\": 406359,\n            \"HotelName\": \"Riviera Hotel Dubai\",\n            \"StarCategory\": 4,\n            \"Lat\": \"25.267242431640625\",\n            \"Long\": \"55.30655288696289\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/7e/c7/7ec730119cd13d26c83dfffdede1ce748e26c65a.jpeg\",\n            \"CityName\": \"Baniyas Road, Deira, Dubai DEIRA DUBAI\",\n            \"Price\": 400.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"STANDARD TWIN BED- SOUK VIEW WITH BALCONY- FREE BEACH TRANSFER NON-REFUNDABLE\",\n            \"MealName\": \"Room only\"\n        },\n        {\n            \"HotelId\": 1848405,\n            \"HotelName\": \"S19 Hotel Al Jaddaf\",\n            \"StarCategory\": 0,\n            \"Lat\": \"25.22254180908203\",\n            \"Long\": \"55.334964752197266\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/5b/99/5b9959e309be55f53dee6323066637e023e6e12d.jpeg\",\n            \"CityName\": \"Al Jaddaf Metro Station A1 Al Jaddaf, Dubai 333337\",\n            \"Price\": 364.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"TWIN/DOUBLE ROOM - EXECUTIVE\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 1031500,\n            \"HotelName\": \"Al Raien Hotel Apartment\",\n            \"StarCategory\": 0,\n            \"Lat\": \"25.261869430541992\",\n            \"Long\": \"55.29048156738281\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/cb/65/cb65dafc60d80ce0a25ddfb6243774bd623e3671.jpeg\",\n            \"CityName\": \"Al Riff Road, , Bur Dubai, 294217, Dubai, United Arab Emirates, Dubai 294217\",\n            \"Price\": 360.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"DELUXE DOUBLE ROOM , 1 KING BED\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 706388,\n            \"HotelName\": \"Le Méridien Mina Seyahi Beach Resort & Waterpark\",\n            \"StarCategory\": 5,\n            \"Lat\": \"25.09189224243164\",\n            \"Long\": \"55.147220611572266\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/11/8d/118dc6652047fdbfd5b663151a5a904983361698.jpeg\",\n            \"CityName\": \"Al Sofouh Road, Jumeirah Beach, Dubai 00000\",\n            \"Price\": 1416.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"CLUB SKYLINE\",\n            \"MealName\": \"Bed and Breakfast\"\n        },\n        {\n            \"HotelId\": 1793806,\n            \"HotelName\": \"The St. Regis Dubai, The Palm\",\n            \"StarCategory\": 5,\n            \"Lat\": \"25.113861083984375\",\n            \"Long\": \"55.1400032043457\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/cf/c2/cfc2ea03eae6757ef9cfbc7e665602737f66f528.jpeg\",\n            \"CityName\": \"The Palm Island Jumeirah, Dubai 53809\",\n            \"Price\": 1391.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"(1)DELUXE KING ROOM  GUEST ROOM  1 KING  CITY VIEW [NON REFUNDABLE]\",\n            \"MealName\": \"Room only\"\n        },\n        {\n            \"HotelId\": 132624,\n            \"HotelName\": \"Hyatt Place Dubai Jumeirah\",\n            \"StarCategory\": 0,\n            \"Lat\": \"25.245996475219727\",\n            \"Long\": \"55.27775192260742\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/74/6e/746eba3e28a733553c0ada117fc1b069bc524c7a.jpeg\",\n            \"CityName\": \"Al Mina Road, Dubai 31075\",\n            \"Price\": 646.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"STUDIO  CITY VIEW 1 KING BED\",\n            \"MealName\": \"Room only\"\n        },\n        {\n            \"HotelId\": 1401516,\n            \"HotelName\": \"Rove Dubai Marina\",\n            \"StarCategory\": 3,\n            \"Lat\": \"25.06931495666504\",\n            \"Long\": \"55.12800216674805\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/38/b6/38b67526d909ad6d28a1a2cf5bfa1c0ae24a2193.jpeg\",\n            \"CityName\": \"Al Seba Street, Dubai Marina, Dubai 00000\",\n            \"Price\": 639.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"ROVER ROOM\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 1616682,\n            \"HotelName\": \"Al Seef Heritage Hotel Dubai, Curio Collection by Hilton\",\n            \"StarCategory\": 0,\n            \"Lat\": \"25.264074325561523\",\n            \"Long\": \"55.30511474609375\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/95/6f/956f9b3dd92a5b68ff0d6d13d821d200557cf624.jpeg\",\n            \"CityName\": \"Al Seef Street, Dubai Creek, Dubai 35449\",\n            \"Price\": 554.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"KING HERITAGE ROOM - COMP WIFI/ESPRESSO/HDTV/USB PORT/MINI FRIDGE - AUTHENTIC LOCAL DECOR/25 SQM/IRON-BOARD/SAFE -\",\n            \"MealName\": \"Room only\"\n        },\n        {\n            \"HotelId\": 1769739,\n            \"HotelName\": \"Wyndham Dubai Deira\",\n            \"StarCategory\": 4,\n            \"Lat\": \"25.26836585998535\",\n            \"Long\": \"55.29621505737305\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/extranet/df/59/df59dbd637cb577e966e679f719f2945ae413cab.jpeg\",\n            \"CityName\": \"Sherina Plaza 4 Al Corniche Rd 111, Dubai, Dubai 119303\",\n            \"Price\": 452.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"SUPERIOR KING ROOM WITH CITY VIEW\",\n            \"MealName\": \"ROOM ONLY\"\n        },\n        {\n            \"HotelId\": 1539079,\n            \"HotelName\": \"Golden Tulip Media Hotel\",\n            \"StarCategory\": 4,\n            \"Lat\": \"25.09964942932129\",\n            \"Long\": \"55.17822265625\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/extranet/3a/60/3a60fb41bffdd34ce2a630e6d0bcbb69a1a3c082.jpeg\",\n            \"CityName\": \"Tecom Al Barsha, Dubai, Dubai 500849\",\n            \"Price\": 450.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"DELUXE TWIN ROOM\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 242807,\n            \"HotelName\": \"West Zone Pearl Hotel Apartments\",\n            \"StarCategory\": 0,\n            \"Lat\": \"25.253854751586914\",\n            \"Long\": \"55.29930877685547\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/8d/4d/8d4d8aecfbfb45edaa455d5cb54cc1f3376c85ba.jpeg\",\n            \"CityName\": \"Bank Street 18, Al Mankhool Area , Dubai 47385\",\n            \"Price\": 432.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"STUDIO - APARTMENT\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 140593,\n            \"HotelName\": \"Citymax Hotel Business Bay\",\n            \"StarCategory\": 4,\n            \"Lat\": \"25.179283142089844\",\n            \"Long\": \"55.277259826660156\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/73/71/73711f677229cc80b875c8422b695ff32ff039c3.jpeg\",\n            \"CityName\": \"Al Khaleej Al Tejari 2 St, Dubai 116121\",\n            \"Price\": 380.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"STANDARD ROOM\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 1956254,\n            \"HotelName\": \"Grand Kingsgate Waterfront By Millennium Hotels\",\n            \"StarCategory\": 0,\n            \"Lat\": \"25.22665023803711\",\n            \"Long\": \"55.34054183959961\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/4b/34/4b3472060d74ea9abda960897a40c719f5bd88e2.jpeg\",\n            \"CityName\": \"Al Jaddaf, 24, Dubai Wharf, Dubai pin code 500001\",\n            \"Price\": 370.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"STANDARD ROOM TWIN BED\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 1958001,\n            \"HotelName\": \"The Dubai EDITION\",\n            \"StarCategory\": 5,\n            \"Lat\": \"25.19210433959961\",\n            \"Long\": \"55.280670166015625\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/11/40/114040e0616f28c50058e2c8fed504996c1590f0.jpeg\",\n            \"CityName\": \"Dubai Fountain Street, Downtown, Dubai 11788\",\n            \"Price\": 1484.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"GUEST ROOM  1 KING  BALCONY\",\n            \"MealName\": \"Room only\"\n        },\n        {\n            \"HotelId\": 1919798,\n            \"HotelName\": \"Taj Exotica Resort & Spa, The Palm, Dubai\",\n            \"StarCategory\": 5,\n            \"Lat\": \"25.124073028564453\",\n            \"Long\": \"55.15399169921875\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/a7/db/a7db1d1eb182df004e8a0483c817009dc6d7ff3f.jpeg\",\n            \"CityName\": \"East Crescent Road, Palm Jumeirah, P O B, Dubai 8489\",\n            \"Price\": 1430.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"LUXURY ROOM 1 KING BED\",\n            \"MealName\": \"Room only\"\n        },\n        {\n            \"HotelId\": 1514948,\n            \"HotelName\": \"Grayton Hotel Dubai\",\n            \"StarCategory\": 4,\n            \"Lat\": \"25.253000259399414\",\n            \"Long\": \"55.29690170288086\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/38/fe/38fe8003d811c404b330a5fb4e9ab019a3d69f1a.jpeg\",\n            \"CityName\": \"12A Street, Al Mankhool, Bur Dubai, Dubai 7\",\n            \"Price\": 470.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"TWIN ROOM - CLASSIC\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 1675244,\n            \"HotelName\": \"Millennium Executive Apartments Mont Rose\",\n            \"StarCategory\": 0,\n            \"Lat\": \"25.06965446472168\",\n            \"Long\": \"55.24507141113281\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/e2/2a/e22abf59281d6bb282b0edccb8d3be5defba12fa.jpeg\",\n            \"CityName\": \"Dubai Science Park, Dubai 0000\",\n            \"Price\": 462.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"STUDIO - DE LUXE\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 1493426,\n            \"HotelName\": \"Premier Inn Dubai Al Jaddaf\",\n            \"StarCategory\": 3,\n            \"Lat\": \"25.221895217895508\",\n            \"Long\": \"55.329612731933594\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/29/4c/294ccaba13f2535326b0dae5771e50f88704cdc5.jpeg\",\n            \"CityName\": \"Culture Village, Al Jaddaf, Dubai 35118\",\n            \"Price\": 354.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"(1)TWIN ROOM SMOKING [NON REFUNDABLE]\",\n            \"MealName\": \"Room only\"\n        },\n        {\n            \"HotelId\": 1801705,\n            \"HotelName\": \"Kingsgate Al Jadaf by Millennium Hotels\",\n            \"StarCategory\": 0,\n            \"Lat\": \"25.21675682067871\",\n            \"Long\": \"55.33094024658203\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/f6/c5/f6c594d12c9d0c142c1946e24420c3d82af3e9d3.jpeg\",\n            \"CityName\": \"Building No 18, Al Jaddaf, Dubai 89029\",\n            \"Price\": 354.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"STANDARD KING ROOM - NON REFUNDUBLE\",\n            \"MealName\": \"Room only\"\n        },\n        {\n            \"HotelId\": 1786875,\n            \"HotelName\": \"Rose Plaza Hotel Al Barsha\",\n            \"StarCategory\": 3,\n            \"Lat\": \"25.114503860473633\",\n            \"Long\": \"55.20257568359375\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/81/4c/814c8f942ebdd160fe8aabdbb744c0b8fe2afdf0.jpeg\",\n            \"CityName\": \"Near Mall of the Emirates,, Dubai 45113\",\n            \"Price\": 392.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"CLASSIC KING ROOM\",\n            \"MealName\": \"Room only\"\n        },\n        {\n            \"HotelId\": 209517,\n            \"HotelName\": \"Al Khoory Courtyard Hotel\",\n            \"StarCategory\": 0,\n            \"Lat\": \"25.16271209716797\",\n            \"Long\": \"55.24882125854492\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/f2/71/f271c2a166450287c9065d8bfa73bba18eec7fab.jpeg\",\n            \"CityName\": \"Al Waha St - Al Quoz - Al Quoz 3, Dubai 0000\",\n            \"Price\": 389.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"SUPERIOR ROOM NON-REFUNDABLE\",\n            \"MealName\": \"Room only\"\n        },\n        {\n            \"HotelId\": 1097817,\n            \"HotelName\": \"Mandarin Oriental Jumeira, Dubai\",\n            \"StarCategory\": 5,\n            \"Lat\": \"25.216766357421875\",\n            \"Long\": \"55.25135803222656\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/87/f2/87f22bbce6435b4eed35797917444c4e79fe5290.jpeg\",\n            \"CityName\": \"Jumeirah Beach Road, Jumeira 1, Dubai 62092\",\n            \"Price\": 4992.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"DELUXE SKYLINE VIEW ROOM\",\n            \"MealName\": \"Bed & Breakfast\"\n        },\n        {\n            \"HotelId\": 1618774,\n            \"HotelName\": \"Paramount Hotel Dubai\",\n            \"StarCategory\": 0,\n            \"Lat\": \"25.186416625976562\",\n            \"Long\": \"55.292022705078125\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/62/01/62011785e40159d30a55d77af4c0383314bd6789.jpeg\",\n            \"CityName\": \"Business Bay, Dubai 119169\",\n            \"Price\": 678.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"SCENE ROOM\",\n            \"MealName\": \"Room only\"\n        },\n        {\n            \"HotelId\": 1791031,\n            \"HotelName\": \"Royal Continental Suites\",\n            \"StarCategory\": 5,\n            \"Lat\": \"25.183124542236328\",\n            \"Long\": \"55.283348083496094\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/85/24/8524fc0c9d842d806c185c020348fae3d00383fa.jpeg\",\n            \"CityName\": \"Marasi Drive, Business Bay, Dubai 182166\",\n            \"Price\": 669.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"DELUXE STUDIO CITY VIEW NON-REFUNDABLE\",\n            \"MealName\": \"Room only\"\n        },\n        {\n            \"HotelId\": 1366153,\n            \"HotelName\": \"Millennium AL Barsha\",\n            \"StarCategory\": 0,\n            \"Lat\": \"25.115341186523438\",\n            \"Long\": \"55.195674896240234\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/9b/a3/9ba399e628a8009880b0e6936cf25ce42e62fe87.jpeg\",\n            \"CityName\": \"Al Barsha Rd, Dubai 00000\",\n            \"Price\": 457.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"DELUXE KING BED\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 1474183,\n            \"HotelName\": \"Gulf Court Business Bay Hotel\",\n            \"StarCategory\": 4,\n            \"Lat\": \"25.18266487121582\",\n            \"Long\": \"55.27472686767578\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/extranet/8e/35/8e3529256e8360cf9aae714a26d9b496357bb8a0.jpeg\",\n            \"CityName\": \"Al Abraj Street, Business Bay, Dubai 32300\",\n            \"Price\": 453.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"*STANDARDROOM~STANDARDROOM ()\",\n            \"MealName\": \"Room only\"\n        },\n        {\n            \"HotelId\": 1955225,\n            \"HotelName\": \"Aloft Dubai Airport\",\n            \"StarCategory\": 4,\n            \"Lat\": \"25.24688148498535\",\n            \"Long\": \"55.3482666015625\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/60/d1/60d160fe60429db69fb2a5a838a34a68dd21c1c5.jpeg\",\n            \"CityName\": \"Garhoud, 51st Street, Dubai 10001\",\n            \"Price\": 365.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"ALOFT ROOM\",\n            \"MealName\": \"Room only\"\n        },\n        {\n            \"HotelId\": 1245614,\n            \"HotelName\": \"Queen Elizabeth 2 Hotel\",\n            \"StarCategory\": 4,\n            \"Lat\": \"25.260557174682617\",\n            \"Long\": \"55.28327941894531\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/b6/24/b6241aea76893dd8514e0917d827c7a21c571316.jpeg\",\n            \"CityName\": \"Mina Rashid Marina, Bur Dubai District, Dubai 6769\",\n            \"Price\": 365.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"CLASSIC ROOM\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 1769738,\n            \"HotelName\": \"Rove La Mer Beach Hotel\",\n            \"StarCategory\": 3,\n            \"Lat\": \"25.2261905670166\",\n            \"Long\": \"55.253692626953125\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/extranet/b9/a6/b9a6f1fb8f061e7bfcab39917906b16149e97dc1.jpeg\",\n            \"CityName\": \"La Mer South, Jumeirah 1, Dubai, Dubai 119444\",\n            \"Price\": 813.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"ROVER ROOM\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 631804,\n            \"HotelName\": \"Florida City Hotel Apartments\",\n            \"StarCategory\": 0,\n            \"Lat\": \"25.269237518310547\",\n            \"Long\": \"55.306007385253906\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/9a/da/9ada5279dc00bd739c16dc60766f4617157dd82f.jpeg\",\n            \"CityName\": \"Baniyas Square, Deira, Dubai 49530\",\n            \"Price\": 515.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"STUDIO (2 ADULTS) NON-REFUNDABLE\",\n            \"MealName\": \"Room only\"\n        },\n        {\n            \"HotelId\": 613829,\n            \"HotelName\": \"DoubleTree by Hilton Dubai M Square Hotel & Residence\",\n            \"StarCategory\": 5,\n            \"Lat\": \"25.250341415405273\",\n            \"Long\": \"55.3007926940918\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/6e/eb/6eeb980c61c7655b845e55e27ea25771bf46a3e3.jpeg\",\n            \"CityName\": \"M Square Building, Al Mankhool, 23, Dubai 0\",\n            \"Price\": 492.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"KING GUEST ROOM - COMP WIFI/COFFEE-TEA FACILITIES/55 INCH HDTV - 37 SQM/FLOOR-CEILING WINDOWS/SAFE/MINIBAR -\",\n            \"MealName\": \"Room only\"\n        },\n        {\n            \"HotelId\": 1459911,\n            \"HotelName\": \"DoubleTree by Hilton Dubai Al Jadaf\",\n            \"StarCategory\": 4,\n            \"Lat\": \"25.222354888916016\",\n            \"Long\": \"55.33186721801758\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/ce/8d/ce8d9506e61bf8bfc48e87c7e39ee441d4ae4630.jpeg\",\n            \"CityName\": \"Plot 3261450 - Al Jadaf, Dubai 35398\",\n            \"Price\": 353.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"KING GUEST ROOM - COMP WIFI/MINI FRIDGE/IRON AND BOARD/USB PORT - 24 SQM/40 INCH HDTV/COFFEE-TEA MAKER/SAFE -\",\n            \"MealName\": \"Room only\"\n        },\n        {\n            \"HotelId\": 1801068,\n            \"HotelName\": \"Aloft Al Mina Dubai\",\n            \"StarCategory\": 4,\n            \"Lat\": \"25.248775482177734\",\n            \"Long\": \"55.28408432006836\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/ca/27/ca277e67885e518665bad49259f9ecd3e91945b3.jpeg\",\n            \"CityName\": \"Sheikh Rashid Road & 37th Street, Dubai 0\",\n            \"Price\": 349.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"ALOFT ROOM\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 1791321,\n            \"HotelName\": \"Aparthotel Adagio Dubai Deira\",\n            \"StarCategory\": 0,\n            \"Lat\": \"25.277116775512695\",\n            \"Long\": \"55.3033561706543\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/19/c9/19c98986fcc0b24428cd16b33f8c353394f54a4d.jpeg\",\n            \"CityName\": \"110 Al Khaleej Road, Dubai 15472\",\n            \"Price\": 541.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"STUDIO DELUXE NON REFUNDABLE\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 2013377,\n            \"HotelName\": \"Carlton Dubai Creek Hotel\",\n            \"StarCategory\": 0,\n            \"Lat\": \"25.267492294311523\",\n            \"Long\": \"55.30620193481445\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/61/5e/615ea43947f6d824759090c7215149ce823d423a.jpeg\",\n            \"CityName\": \"15 Baniyas Rd, Dubai 7143\",\n            \"Price\": 539.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"STUDIO CREEK VIEW\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 1707600,\n            \"HotelName\": \"IntercityHotel Dubai Jaddaf Waterfront Hotel\",\n            \"StarCategory\": 3,\n            \"Lat\": \"25.227033615112305\",\n            \"Long\": \"55.3382453918457\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/extranet/65/e0/65e02eeedf3e90e4bc72d079b9a567fff1aa86f8.jpeg\",\n            \"CityName\": \"Al Jaddaf Waterfront, Bur Dubai, Dubai 00000\",\n            \"Price\": 442.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"SUPERIOR ROOM 1 KING BED (FREE SHUTTLE SERVICE TO FESTIVAL CITY MALL)\",\n            \"MealName\": \"Bed and breakfast\"\n        },\n        {\n            \"HotelId\": 1428882,\n            \"HotelName\": \"FORM Hotel Dubai, Dubai, a Member of Design Hotels\",\n            \"StarCategory\": 4,\n            \"Lat\": \"25.22290802001953\",\n            \"Long\": \"55.33469009399414\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/4c/26/4c26cd0890a3e8e19c89a256d9ad79d7cc921eb2.jpeg\",\n            \"CityName\": \"Al Jaddaf, Dubai 384694\",\n            \"Price\": 440.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"COZY ROOM\",\n            \"MealName\": \"ROOM ONLY\"\n        },\n        {\n            \"HotelId\": 1950424,\n            \"HotelName\": \"Ecos Dubai Hotel at Al Furjan\",\n            \"StarCategory\": 0,\n            \"Lat\": \"25.02086067199707\",\n            \"Long\": \"55.1531982421875\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/cf/52/cf5214eef41c2e0b445f7e24b0bf19f8cfb7f507.jpeg\",\n            \"CityName\": \"Jebel Ali 1, Dubai 00000\",\n            \"Price\": 396.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"(1)LIFESTYLE STANDARD ROOM\",\n            \"MealName\": \"Room only\"\n        },\n        {\n            \"HotelId\": 1797123,\n            \"HotelName\": \"Adagio Premium The Palm\",\n            \"StarCategory\": 0,\n            \"Lat\": \"25.10865592956543\",\n            \"Long\": \"55.14310836791992\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/f7/3a/f73afb2d2e0a52fdf0dc5e0473eb1b17decfadeb.jpeg\",\n            \"CityName\": \"Palm Jumeirah West Beach, Dubai 10223\",\n            \"Price\": 875.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"*97313~STUDIOAPARTMENTKINGBED ()\",\n            \"MealName\": \"Room only\"\n        },\n        {\n            \"HotelId\": 1929624,\n            \"HotelName\": \"Paramount Hotel Midtown\",\n            \"StarCategory\": 0,\n            \"Lat\": \"25.19344139099121\",\n            \"Long\": \"55.26539993286133\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/92/9f/929f9d09f9931f184dc6aa05ab0b6add9a2db1d3.jpeg\",\n            \"CityName\": \"Al Mustaqbal Street, Business Bay, Dubai 7704\",\n            \"Price\": 835.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"SCENE COASTAL ROOM\",\n            \"MealName\": \"Room only\"\n        },\n        {\n            \"HotelId\": 1684907,\n            \"HotelName\": \"Lemon Tree Hotel Jumeirah Dubai\",\n            \"StarCategory\": 0,\n            \"Lat\": \"25.138578414916992\",\n            \"Long\": \"55.203372955322266\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/extranet/0c/b7/0cb7709f8535ee596d3fa7f3c8f1224e657c4c00.jpeg\",\n            \"CityName\": \"Al Wasl Road, Umm Al Sheif, Jumeirah, Dubai 122487\",\n            \"Price\": 523.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"(1)SUPERIOR ROOM [NON REFUNDABLE]\",\n            \"MealName\": \"Room only\"\n        },\n        {\n            \"HotelId\": 1666399,\n            \"HotelName\": \"Park Regis Business Bay Hotel\",\n            \"StarCategory\": 0,\n            \"Lat\": \"25.185443878173828\",\n            \"Long\": \"55.261783599853516\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/extranet/e0/dc/e0dccbd83c63dcea9b48476667ba496a9c21c151.jpeg\",\n            \"CityName\": \"Al A'amal Street, Business Bay, Dubai 0\",\n            \"Price\": 520.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"STANDARD ROOM\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 19032,\n            \"HotelName\": \"Grand Excelsior Hotel Deira\",\n            \"StarCategory\": 4,\n            \"Lat\": \"25.274919509887695\",\n            \"Long\": \"55.32761001586914\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/e3/49/e349fa7675dfefb21f7347a252959922e464a235.jpeg\",\n            \"CityName\": \"Al Muteena Street, Deira, Dubai 5772\",\n            \"Price\": 331.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"DELUXE ROOM\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 1545576,\n            \"HotelName\": \"The S Hotel Al Barsha\",\n            \"StarCategory\": 4,\n            \"Lat\": \"25.069860458374023\",\n            \"Long\": \"55.244083404541016\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/67/e5/67e534b72ad344482ecb987ac68e79b7cc8476d4.jpeg\",\n            \"CityName\": \"The S Hotel Al Barsha Dubai Dubai Science Park, Al Barsha South 2, Dubai 0000\",\n            \"Price\": 327.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"EXECUTIVE KING ROOM\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 356587,\n            \"HotelName\": \"Al Jaddaf Rotana Suite Hotel\",\n            \"StarCategory\": 5,\n            \"Lat\": \"25.22089385986328\",\n            \"Long\": \"55.329742431640625\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/22/89/2289f41323eb90a534404af56699e40cecb29186.jpeg\",\n            \"CityName\": \"Al Jaddaf, Dubai 122382\",\n            \"Price\": 735.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"TWIN BED ROOM - CITY VIEW\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 1562372,\n            \"HotelName\": \"Canal Central Hotel\",\n            \"StarCategory\": 5,\n            \"Lat\": \"25.18030548095703\",\n            \"Long\": \"55.26641082763672\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/00/e7/00e75ada50d00feb05c81dc55c8488653a28e512.jpeg\",\n            \"CityName\": \"Al Abraj Street, Dubai 9970\",\n            \"Price\": 731.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"TWIN/DOUBLE ROOM - DE LUXE - PARTIAL BAY VIEW\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 1101212,\n            \"HotelName\": \"Grand Millennium Business Bay\",\n            \"StarCategory\": 5,\n            \"Lat\": \"25.18250274658203\",\n            \"Long\": \"55.27405548095703\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/93/1c/931cd8d6c8bbd6e8d80d249f0116b21e64f7bbf0.jpeg\",\n            \"CityName\": \"Al Abraj Street, Business Bay, Dubai 98678\",\n            \"Price\": 614.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"SUPERIOR ROOM\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 552203,\n            \"HotelName\": \"Ramada by Wyndham Dubai Deira\",\n            \"StarCategory\": 4,\n            \"Lat\": \"25.270523071289062\",\n            \"Long\": \"55.32170867919922\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/6b/b2/6bb2a3dd13ee850a62e6d5bdc987cceec421aae0.jpeg\",\n            \"CityName\": \"155 Salahudin Road, Deira, Dubai 000000\",\n            \"Price\": 481.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"ROOM 1 QUEEN BED NON SMOKING NON-REFUNDABLE\",\n            \"MealName\": \"Room only\"\n        },\n        {\n            \"HotelId\": 1919261,\n            \"HotelName\": \"The First Collection at Jumeirah Village Circle\",\n            \"StarCategory\": 4,\n            \"Lat\": \"25.05474090576172\",\n            \"Long\": \"55.20480728149414\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/c8/91/c891d172cba2ed56b875a943b876dadf4dfb8153.jpeg\",\n            \"CityName\": \"Street 1, JVC, Dubai 215373\",\n            \"Price\": 477.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"CLASSIC DOUBLE ROOM\",\n            \"MealName\": \"Bed&Breakfast\"\n        },\n        {\n            \"HotelId\": 1794770,\n            \"HotelName\": \"Mercure Suites Dubai Barsha Heights\",\n            \"StarCategory\": 4,\n            \"Lat\": \"25.100706100463867\",\n            \"Long\": \"55.17331314086914\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/extranet/d5/57/d557f172237e26f80f7107d8ba0237554b090ba7.jpeg\",\n            \"CityName\": \"Dubai, Hadaeq Mohammed Bin Rashid, Barsha Heights, Sheikh Zayed Road, 945, Dubai 500300\",\n            \"Price\": 416.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"ONE BEDROOM APARTMENT CITY VIEW_DOUBLE\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 1800418,\n            \"HotelName\": \"Avani + Palm View Dubai Hotel & Suites\",\n            \"StarCategory\": 5,\n            \"Lat\": \"25.098461151123047\",\n            \"Long\": \"55.15684509277344\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/d4/4e/d44eeb43f5f38732e72f256ac79175954a8f8819.jpeg\",\n            \"CityName\": \"P.O. Box 502624, Dubai Media City, TECOM, Dubai 502624\",\n            \"Price\": 659.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"STUDIO\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 331501,\n            \"HotelName\": \"Tulip Al Barsha Hotel Apartment\",\n            \"StarCategory\": 0,\n            \"Lat\": \"25.116527557373047\",\n            \"Long\": \"55.196109771728516\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/fb/63/fb6309784ef9896700e3dded2780717206ad84a8.jpeg\",\n            \"CityName\": \"Al Barsha 1, Beside Mall of The Emirates, Dubai 114020\",\n            \"Price\": 646.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"PREMIUM STUDIO , 1 DOUBLE BED\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 1707618,\n            \"HotelName\": \"Radisson Red Dubai Silicon Oasis\",\n            \"StarCategory\": 0,\n            \"Lat\": \"25.118436813354492\",\n            \"Long\": \"55.37994384765625\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/08/b3/08b3cb01a2740ac7122f17e03cd37f7773f6ff08.jpeg\",\n            \"CityName\": \"Dubai Digital Park, Dubai 1000\",\n            \"Price\": 519.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"STANDARD ROOM 2 TWIN BEDS  NON REFUNDABLE\",\n            \"MealName\": \"Room only\"\n        },\n        {\n            \"HotelId\": 2045217,\n            \"HotelName\": \"Studio M Arabian Plaza Hotel & Hotel Apartments\",\n            \"StarCategory\": 3,\n            \"Lat\": \"25.277082443237305\",\n            \"Long\": \"55.349857330322266\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/18/d4/18d45db53f0faffde8950b7172f60324be27c42e.jpeg\",\n            \"CityName\": \"Al Ittihad Road, Dubai 89500\",\n            \"Price\": 393.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"URBAN TWIN ROOMSUP0002S U2T\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 281813,\n            \"HotelName\": \"Super 8 by Wyndham Dubai Deira\",\n            \"StarCategory\": 2,\n            \"Lat\": \"25.272802352905273\",\n            \"Long\": \"55.298301696777344\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/extranet/22/72/22726b0cedc97e3cf9b00c07a09beede86b4b48e.jpeg\",\n            \"CityName\": \"Maryam Plaza 1, Al Daghaya Rd- 113, Dubai, Dubai 119303\",\n            \"Price\": 325.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"SUPERIOR ROOM SOUK VIEW\",\n            \"MealName\": \"ROOM ONLY\"\n        },\n        {\n            \"HotelId\": 1460537,\n            \"HotelName\": \"Hampton by Hilton Dubai Airport\",\n            \"StarCategory\": 3,\n            \"Lat\": \"25.2724609375\",\n            \"Long\": \"55.380645751953125\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/extranet/5a/45/5a456c95add4bbf4d32c95a73dc2f7de863c1aa3.jpeg\",\n            \"CityName\": \"Damascus Street, Al Qusais, Dubai 50698\",\n            \"Price\": 322.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"QUEEN ROOM NON SMOKING - FREE WI-FI/HOT BREAKFAST INCLUDED/MINI FRIDGE - WORK AREA/COFFEE-TEA FACILITIES/BATHTUB -\",\n            \"MealName\": \"Buffet Breakfast\"\n        },\n        {\n            \"HotelId\": 1995790,\n            \"HotelName\": \"Occidental Dubai Production City\",\n            \"StarCategory\": 4,\n            \"Lat\": \"25.03789520263672\",\n            \"Long\": \"55.184391021728516\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/e7/1f/e71f122873d39e001f536f558502c12d4d93d2ba.jpeg\",\n            \"CityName\": \"IMPZ.B.19 - Dubai - United Arab Emirates, Dubai *\",\n            \"Price\": 306.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"STANDARD ROOM\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 1801378,\n            \"HotelName\": \"Staybridge Suites Dubai Internet City, an IHG Hotel\",\n            \"StarCategory\": 0,\n            \"Lat\": \"25.1020565032959\",\n            \"Long\": \"55.17081832885742\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/b0/1d/b01dd4055889a582c10b42b4eb179f5b64ca1460.jpeg\",\n            \"CityName\": \"Al Sufouh 2, Internet City, Dubai 11189\",\n            \"Price\": 746.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"STUDIO SUITE - NON REFUNDUBLE\",\n            \"MealName\": \"Bed and breakfast\"\n        },\n        {\n            \"HotelId\": 1954095,\n            \"HotelName\": \"25hours Hotel Dubai One Central\",\n            \"StarCategory\": 0,\n            \"Lat\": \"25.219449996948242\",\n            \"Long\": \"55.28440475463867\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/extranet/d4/15/d415681f1409884ef681b9abc771bd60531569bb.jpeg\",\n            \"CityName\": \"Trade Centre Street off Sheikh Zayed Rd, Dubai, Dubai 9914\",\n            \"Price\": 746.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"MEDIUM BEDOUIN ROOM\",\n            \"MealName\": \"Room only\"\n        },\n        {\n            \"HotelId\": 246075,\n            \"HotelName\": \"Al Sabkha Hotel\",\n            \"StarCategory\": 1,\n            \"Lat\": \"25.271745681762695\",\n            \"Long\": \"55.308860778808594\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/ff/fd/fffdec5a1395694363c6a240fdba2940b4c29938.jpeg\",\n            \"CityName\": \"AL Sabkha Road, Dubai 83163\",\n            \"Price\": 562.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"FAMILY TRIPLE ROOM NON-REFUNDABLE\",\n            \"MealName\": \"BED AND BREAKFAST\"\n        },\n        {\n            \"HotelId\": 194288,\n            \"HotelName\": \"Khalidia Hotel Apartments\",\n            \"StarCategory\": 0,\n            \"Lat\": \"25.26117515563965\",\n            \"Long\": \"55.320587158203125\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/carsolize/1e/20/1e20a4957cf0803c24d6fae07d70811c8d241f40.jpeg\",\n            \"CityName\": \"Al Maktoum Road, Dubai 63890\",\n            \"Price\": 559.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"DELUXE TWIN ROOM\",\n            \"MealName\": \"Breakfast\"\n        },\n        {\n            \"HotelId\": 2005889,\n            \"HotelName\": \"Ibis Styles Dubai Deira\",\n            \"StarCategory\": 3,\n            \"Lat\": \"25.274370193481445\",\n            \"Long\": \"55.298274993896484\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/13/c9/13c9bcfb5c5a789a205f8973bf35d9c515b9e4e7.jpeg\",\n            \"CityName\": \"Maitha Plaza, Al Khaleej Road 110, Deira, Dubai 15472\",\n            \"Price\": 490.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"STANDARD ROOM KING\",\n            \"MealName\": \"ROOM ONLY\"\n        },\n        {\n            \"HotelId\": 1670830,\n            \"HotelName\": \"Taj Jumeirah Lakes Towers\",\n            \"StarCategory\": 5,\n            \"Lat\": \"25.080570220947266\",\n            \"Long\": \"55.15384292602539\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/cf/11/cf1166fefddb58353a7c25517b20f45e69147921.jpeg\",\n            \"CityName\": \"DMCC Plot No. 2-27, Al Thanyah, Jumeirah Lakes Towers, Dubai 0\",\n            \"Price\": 757.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"SUPERIOR ROOM  2 TWIN BEDS 2 TWIN BEDS\",\n            \"MealName\": \"Room only\"\n        },\n        {\n            \"HotelId\": 1460394,\n            \"HotelName\": \"Stella Di Mare Dubai Marina Hotel\",\n            \"StarCategory\": 5,\n            \"Lat\": \"25.068830490112305\",\n            \"Long\": \"55.13410186767578\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/35/4b/354b7eef49acf49bf2f264cf110e995e80415ab5.jpeg\",\n            \"CityName\": \"Al Mattla'ee Street, Dubai 33306\",\n            \"Price\": 751.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"DELUXE ROOM CITY VIEW KING-DBL\",\n            \"MealName\": \"Bed and Breakfast\"\n        },\n        {\n            \"HotelId\": 1414574,\n            \"HotelName\": \"Barcelo Residences Dubai Marina\",\n            \"StarCategory\": 0,\n            \"Lat\": \"25.083576202392578\",\n            \"Long\": \"55.142494201660156\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/5e/b8/5eb80934fd7f9f5ee0364750dec0ecc414f3a82f.jpeg\",\n            \"CityName\": \"King Salman Bin Abdulaziz Road, Dubai 644815\",\n            \"Price\": 583.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"ONE-BEDROOM APARTMENT\",\n            \"MealName\": \"ROOM ONLY\"\n        },\n        {\n            \"HotelId\": 1770929,\n            \"HotelName\": \"Element Al Jaddaf, Dubai\",\n            \"StarCategory\": 0,\n            \"Lat\": \"25.21977424621582\",\n            \"Long\": \"55.33182907104492\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/93/ae/93ae8c4d3b728e481928576443390a77ae1e1fe0.jpeg\",\n            \"CityName\": \"Al Khail Rd, Al Jaddaf Dubai Street 26, Dubai 121515\",\n            \"Price\": 573.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"STUDIO  2 DOUBLE\",\n            \"MealName\": \"Bed and breakfast\"\n        },\n        {\n            \"HotelId\": 1139225,\n            \"HotelName\": \"Millennium Atria Business Bay\",\n            \"StarCategory\": 0,\n            \"Lat\": \"25.179811477661133\",\n            \"Long\": \"55.26432800292969\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/0e/0b/0e0b99abbae242711f61a5fb68ef100e905d9e87.jpeg\",\n            \"CityName\": \"Al Abraj Street, Business Bay, Dubai 98678\",\n            \"Price\": 482.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"STUDIO PREMIUM\",\n            \"MealName\": \"ROOM ONLY\"\n        },\n        {\n            \"HotelId\": 1966141,\n            \"HotelName\": \"Marriott Resort Palm Jumeirah, Dubai\",\n            \"StarCategory\": 5,\n            \"Lat\": \"25.107074737548828\",\n            \"Long\": \"55.1457405090332\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/4e/bc/4ebca3992320e0ecf201ee0f9ed323721076244f.jpeg\",\n            \"CityName\": \"Palm West Beach, Palm Jumeirah Road, Dubai 62049\",\n            \"Price\": 1225.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"PALM DELUXE ROOM (TWIN ROOM)\",\n            \"MealName\": \"Bed&Breakfast (Non-Alcoholic)\"\n        },\n        {\n            \"HotelId\": 1561614,\n            \"HotelName\": \"Royal Central Hotel & Resort\",\n            \"StarCategory\": 5,\n            \"Lat\": \"25.125900268554688\",\n            \"Long\": \"55.15304946899414\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/6c/70/6c7060aa4a0dc620fe540fe3311630c26e75e7b9.jpeg\",\n            \"CityName\": \"Palm Jumeirah, East Crescent, Dubai 9970\",\n            \"Price\": 1068.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"DOUBLE OR TWIN SUPERIOR WITH DOUBLE BED\",\n            \"MealName\": \"BED AND BREAKFAST\"\n        },\n        {\n            \"HotelId\": 1508481,\n            \"HotelName\": \"Grand Plaza Mövenpick Media City\",\n            \"StarCategory\": 5,\n            \"Lat\": \"25.097824096679688\",\n            \"Long\": \"55.16550827026367\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/42/a2/42a22814caacf8707dd0dd272927b763ac7ac7ff.jpeg\",\n            \"CityName\": \"Sheikh Zayed Road, Opp. Innovation Hub, Dubai 00000\",\n            \"Price\": 622.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"SUPERIOR ROOM WITH 1 KINGSIZE BED\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 1489542,\n            \"HotelName\": \"Leva Hotel and Suites Mazaya Centre\",\n            \"StarCategory\": 4,\n            \"Lat\": \"25.198684692382812\",\n            \"Long\": \"55.265201568603516\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/extranet/c8/fe/c8fe50a38f54c26689a369570aece081c73ff39f.jpeg\",\n            \"CityName\": \"Sheikh Zayed Road, 160, Dubai 340647\",\n            \"Price\": 615.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"PREMIUM CITY VIEW\",\n            \"MealName\": \"Room only\"\n        },\n        {\n            \"HotelId\": 1951805,\n            \"HotelName\": \"City Avenue Al Reqqa Hotel\",\n            \"StarCategory\": 3,\n            \"Lat\": \"25.27413558959961\",\n            \"Long\": \"55.327266693115234\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/5b/25/5b251c894a5e63dd97495c004384ae704a031400.jpeg\",\n            \"CityName\": \"34 A Street, Dubai 83021\",\n            \"Price\": 519.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"STANDARD DOUBLE OR TWIN ROOM\",\n            \"MealName\": \"Room only\"\n        },\n        {\n            \"HotelId\": 1958917,\n            \"HotelName\": \"Hyde Hotel Dubai\",\n            \"StarCategory\": 0,\n            \"Lat\": \"25.18170738220215\",\n            \"Long\": \"55.279052734375\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/a7/5f/a75f5c79dc7ba6c1db2a3d32364314409a753dc2.jpeg\",\n            \"CityName\": \"Dubai Business Bay Dubai, Dubai 213208\",\n            \"Price\": 742.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"ROOM  BALCONY (GENERAL ADMISSION KING) 1 KING BED  NON REFUNDABLE\",\n            \"MealName\": \"Room only\"\n        },\n        {\n            \"HotelId\": 1705591,\n            \"HotelName\": \"Crowne Plaza Dubai Marina, an IHG Hotel\",\n            \"StarCategory\": 0,\n            \"Lat\": \"25.07522201538086\",\n            \"Long\": \"55.13916015625\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/21/45/21458c197696d364111fa3320b6dac6f5da81b27.jpeg\",\n            \"CityName\": \"Al Yahoom Street, Dubai Marina, Dubai 116888\",\n            \"Price\": 739.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"STANDARD ROOM CITY VIEW -KING\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 35724,\n            \"HotelName\": \"Zabeel House by Jumeirah, The Greens\",\n            \"StarCategory\": 4,\n            \"Lat\": \"25.09706687927246\",\n            \"Long\": \"55.168212890625\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/c5/46/c5464fa4ebdd40c9895873b1deb17d0959d77ba5.jpeg\",\n            \"CityName\": \"Sheikh Zayed Road, The Greens, Dubai 214362\",\n            \"Price\": 600.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"ROOM, BASIC\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 1849343,\n            \"HotelName\": \"Rove City Walk Hotel\",\n            \"StarCategory\": 3,\n            \"Lat\": \"25.205387115478516\",\n            \"Long\": \"55.26796340942383\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/extranet/0b/ba/0bba82d4f0a9678561478231365e36983290fd4b.jpeg\",\n            \"CityName\": \"Al Wasl and Al Safa road-junction-Sheikh Zayed rd, Dubai 119444\",\n            \"Price\": 830.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"ROVER ROOM\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 1472180,\n            \"HotelName\": \"Mövenpick Hotel Apartments Downtown Dubai\",\n            \"StarCategory\": 0,\n            \"Lat\": \"25.19424057006836\",\n            \"Long\": \"55.28374099731445\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/2d/13/2d132e67cfe31e9a7c869de3c5d0349bc6c206bd.jpeg\",\n            \"CityName\": \"Al Ohood Street, Dubai 413779\",\n            \"Price\": 819.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"DELUXE TWIN\",\n            \"MealName\": \"ROOM ONLY\"\n        },\n        {\n            \"HotelId\": 2008469,\n            \"HotelName\": \"Mövenpick Hotel Jumeirah Village Triangle\",\n            \"StarCategory\": 0,\n            \"Lat\": \"25.041648864746094\",\n            \"Long\": \"55.188018798828125\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/e1/e5/e1e534aaedb622ac037886d3b3580060266f0e06.jpeg\",\n            \"CityName\": \"B1 Joory Street District 3 PO Box 450763, Dubai 450763\",\n            \"Price\": 557.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"SUPERIOR DOUBLE ROOM WITH CITY VIEW (FULL DOUBLE BED) (BED TYPE IS SUBJECT TO AVAILABILITY)\",\n            \"MealName\": \"Bed and Breakfast\"\n        },\n        {\n            \"HotelId\": 1954835,\n            \"HotelName\": \"Anantara World Islands Dubai Resort\",\n            \"StarCategory\": 5,\n            \"Lat\": \"25.19413185119629\",\n            \"Long\": \"55.17701721191406\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/5d/b7/5db7c0bf20e0cfd55c77b4ae4f0421a71cbd9f9b.jpeg\",\n            \"CityName\": \"South America, The World Islands, Dubai 00000\",\n            \"Price\": 4516.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"DOUBLE ROOM WITH OCEAN VIEW (FULL DOUBLE BED) (BED TYPE IS SUBJECT TO AVAILABILITY)\",\n            \"MealName\": \"Bed and Breakfast\"\n        },\n        {\n            \"HotelId\": 1773104,\n            \"HotelName\": \"Atlantis The Royal\",\n            \"StarCategory\": 0,\n            \"Lat\": \"25.137895584106445\",\n            \"Long\": \"55.12727355957031\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/2a/67/2a6765556e96c00b5d63a9e6aff4369cbb25b651.jpeg\",\n            \"CityName\": \"Crescent Road Palm Jumeirah, Dubai 00000\",\n            \"Price\": 4121.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"PALMSCAPE KING ROOM TPWHOT01 - ROOMS - / - BB - BAR\",\n            \"MealName\": \"Bed And Breakfast\"\n        },\n        {\n            \"HotelId\": 1396831,\n            \"HotelName\": \"DAMAC Maison Distinction\",\n            \"StarCategory\": 0,\n            \"Lat\": \"25.18766975402832\",\n            \"Long\": \"55.2794189453125\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/20/05/200559b1b7fccf082cf64ae14aa4040b0ca3513f.jpeg\",\n            \"CityName\": \"School Street, Burj Area, Business Bay, Downtown, Dubai 7704\",\n            \"Price\": 1011.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"DELUXE ROOM WITH DOWNTOWN VIEW\",\n            \"MealName\": \"Room only\"\n        },\n        {\n            \"HotelId\": 272374,\n            \"HotelName\": \"Dusit Thani Dubai\",\n            \"StarCategory\": 5,\n            \"Lat\": \"25.206144332885742\",\n            \"Long\": \"55.27301788330078\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/30/75/3075ac1d43c3308804ac3f091a626ee7efc62bb0.jpeg\",\n            \"CityName\": \"133 Sheikh Zayed Road, Dubai 23335\",\n            \"Price\": 558.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"DELUXE KING ROOM DBL\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 1512474,\n            \"HotelName\": \"Waldorf Astoria Dubai International Financial Centre\",\n            \"StarCategory\": 5,\n            \"Lat\": \"25.21095085144043\",\n            \"Long\": \"55.28255081176758\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/51/0b/510b7dd504d670eb2c70c164540206f38bc48fb1.jpeg\",\n            \"CityName\": \"Burj Daman, Al Mustaqbal Street, DIFC, Dubai PO Box 50751\",\n            \"Price\": 1336.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"TWO QUEEN BEDS ACCESSIBLE DELUXE ROOM - WHEELCHAIR ACCESSIBLE ROOM W/ ROLL-IN SHOWER - COMP WIFI/ESPRESSO/KETTLE/HDTV/SEATING AREA -\",\n            \"MealName\": \"Room only\"\n        },\n        {\n            \"HotelId\": 1798212,\n            \"HotelName\": \"SLS Dubai Hotel & Residences\",\n            \"StarCategory\": 5,\n            \"Lat\": \"25.184720993041992\",\n            \"Long\": \"55.29226303100586\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/ae/49/ae492bdf6d6194bea757c08384d3e57da2a50275.jpeg\",\n            \"CityName\": \"Marasi Drive Business Bay, Dubai 0\",\n            \"Price\": 1228.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"SIGNATURE SAFE DUO BEDS ACCESSIBLE\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 1327589,\n            \"HotelName\": \"Millennium Place Marina\",\n            \"StarCategory\": 0,\n            \"Lat\": \"25.071125030517578\",\n            \"Long\": \"55.13679885864258\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/2b/a0/2ba04fb4b3e7736de825012975bb8d22c1da1bed.jpeg\",\n            \"CityName\": \"Al Marsa Street, Dubai 215373\",\n            \"Price\": 625.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"SUPERIOR ROOM\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 1771977,\n            \"HotelName\": \"Address Beach Resort Hotel\",\n            \"StarCategory\": 5,\n            \"Lat\": \"25.072566986083984\",\n            \"Long\": \"55.12654113769531\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/extranet/fe/03/fe03d6c5c73fdc33b0a72d49bbb275b9037c71d2.jpeg\",\n            \"CityName\": \"The Walk, Jumeirah Beach Residence, Dubai 214042\",\n            \"Price\": 1928.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"DELUXE ROOM MARINA VIEW\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 1707179,\n            \"HotelName\": \"Radisson Blu Hotel, Dubai Canal View\",\n            \"StarCategory\": 5,\n            \"Lat\": \"25.191234588623047\",\n            \"Long\": \"55.29082489013672\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/cc/88/cc8879309f1f44ae9f3eb6e05931aa428a3071da.jpeg\",\n            \"CityName\": \"Marasi Drive, Dubai 00\",\n            \"Price\": 554.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"STANDARD ROOM NON-REFUNDABLE\",\n            \"MealName\": \"Room only\"\n        },\n        {\n            \"HotelId\": 1112925,\n            \"HotelName\": \"Delta Hotels by Marriott, Dubai Investment Park\",\n            \"StarCategory\": 4,\n            \"Lat\": \"25.008787155151367\",\n            \"Long\": \"55.157657623291016\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/3a/a8/3aa859224f706bca52359a09dcedcadc7cd4484f.jpeg\",\n            \"CityName\": \"Dubai Investment Park, Dubai 392009\",\n            \"Price\": 258.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"STANDARD ROOM  GUEST ROOM  1 KING\",\n            \"MealName\": \"Room only\"\n        },\n        {\n            \"HotelId\": 1706778,\n            \"HotelName\": \"C Central Resort the Palm\",\n            \"StarCategory\": 5,\n            \"Lat\": \"25.139238357543945\",\n            \"Long\": \"55.1414909362793\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/cb/81/cb813068c2b334ac11fb9286bd9610467cc118b6.jpeg\",\n            \"CityName\": \"Crescent Rd, Palm Jumeirah, Dubai 22369\",\n            \"Price\": 989.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"SUPERIOR ROOM\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 1458626,\n            \"HotelName\": \"W Dubai - The Palm\",\n            \"StarCategory\": 5,\n            \"Lat\": \"25.1061954498291\",\n            \"Long\": \"55.110931396484375\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/db/87/db878352d2e2905a88b4f9f26ac73c03fd7c5b4d.jpeg\",\n            \"CityName\": \"West Crescent, Palm Jumeirah, Dubai 213138\",\n            \"Price\": 1498.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"WONDERFUL ROOM KING\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 1324381,\n            \"HotelName\": \"Holiday Inn & Suites Dubai Festival City, an IHG Hotel\",\n            \"StarCategory\": 0,\n            \"Lat\": \"25.22194480895996\",\n            \"Long\": \"55.35805130004883\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/2b/3a/2b3a3ac2ba61931952f1d58cc91b0d64d4b7c3fe.jpeg\",\n            \"CityName\": \"Gateway Avenue, Festival City, Dubai 0\",\n            \"Price\": 792.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"STANDARD ROOM (WATERFRONT VIEW) 1 TWIN BED  NON REFUNDABLE\",\n            \"MealName\": \"Room only\"\n        },\n        {\n            \"HotelId\": 1111434,\n            \"HotelName\": \"New Royal Mark Hotel Apartments\",\n            \"StarCategory\": 0,\n            \"Lat\": \"25.269271850585938\",\n            \"Long\": \"55.30762481689453\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/8c/bf/8cbfe47d8e26ab852292388ec909e845409d64f0.jpeg\",\n            \"CityName\": \"Dubai, Dubai 123277\",\n            \"Price\": 207.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"STANDARD ROOM DOUBLE\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 1512950,\n            \"HotelName\": \"City Avenue Hotel\",\n            \"StarCategory\": 0,\n            \"Lat\": \"25.274080276489258\",\n            \"Long\": \"55.3226432800293\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/16/10/1610bbdaf66ac12746eafac4fd54ef40b111a083.jpeg\",\n            \"CityName\": \"Al Mateena St, Dubai 83021\",\n            \"Price\": 325.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"STANDARD ROOM\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 95764,\n            \"HotelName\": \"Grand Sina Hotel\",\n            \"StarCategory\": 1,\n            \"Lat\": \"25.269718170166016\",\n            \"Long\": \"55.30216598510742\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/5b/c9/5bc967dba3a4cbea1b40a90bb23008a75802742e.jpeg\",\n            \"CityName\": \"Al Sabakha Street, Dubai 385015\",\n            \"Price\": 225.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"STANDARD ROOM\",\n            \"MealName\": \"Room only\"\n        },\n        {\n            \"HotelId\": 759830,\n            \"HotelName\": \"Mount Royal Hotel\",\n            \"StarCategory\": 2,\n            \"Lat\": \"25.270132064819336\",\n            \"Long\": \"55.30606460571289\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/db/4c/db4c014ceca661a531a2fab6907759dc9e76ba00.jpeg\",\n            \"CityName\": \"Al Naser Square Deira, Dubai 34296\",\n            \"Price\": 225.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"STANDARD DOUBLE OR TWIN\",\n            \"MealName\": \"Room only\"\n        },\n        {\n            \"HotelId\": 1357195,\n            \"HotelName\": \"Mariana Hotel\",\n            \"StarCategory\": 1,\n            \"Lat\": \"25.269498825073242\",\n            \"Long\": \"55.30323028564453\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/a0/22/a022f69bee5fed76021552d2930c48cdf689eb88.jpeg\",\n            \"CityName\": \"Al Sabkha Road, Dubai 83163\",\n            \"Price\": 225.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"STANDARD ROOM\",\n            \"MealName\": \"Room only\"\n        },\n        {\n            \"HotelId\": 659701,\n            \"HotelName\": \"Golden Sands Hotel Apartments\",\n            \"StarCategory\": 4,\n            \"Lat\": \"25.25157928466797\",\n            \"Long\": \"55.2949333190918\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/extranet/4f/52/4f520c152b4d226639afc4d9afa6f69bcfe793fc.jpeg\",\n            \"CityName\": \"Cl, Al Mankhool Street, 9168, Bur Dubai, Dubai 9168\",\n            \"Price\": 255.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"STUDIO ROOM AT GOLDEN SANDS 5\",\n            \"MealName\": \"Room Only  \"\n        },\n        {\n            \"HotelId\": 793903,\n            \"HotelName\": \"Gateway Hotel\",\n            \"StarCategory\": 3,\n            \"Lat\": \"25.2603816986084\",\n            \"Long\": \"55.291072845458984\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/22/35/22355ab7e97ff88c4745b8527f1aab4c1e879e69.jpeg\",\n            \"CityName\": \"Al Souqe Al Kabeer, Khalid Bin Al Waleed, Dubai 125448\",\n            \"Price\": 255.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"DELUXE ROOM.\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 848574,\n            \"HotelName\": \"Saffron Hotel\",\n            \"StarCategory\": 2,\n            \"Lat\": \"25.26123046875\",\n            \"Long\": \"55.32556915283203\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/06/2e/062e598360c4854b90448a5a7bbfe2c510163c2e.jpeg\",\n            \"CityName\": \"Al Rigga Road, Behind ADCB Bank, Deira, Dubai 127286\",\n            \"Price\": 250.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"DOUBLE STANDARD\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 85941,\n            \"HotelName\": \"Al Jawhara Gardens Hotel\",\n            \"StarCategory\": 4,\n            \"Lat\": \"25.25489044189453\",\n            \"Long\": \"55.335235595703125\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/a0/aa/a0aadd74029ac9fdb39f30d6d02082f083e97050.jpeg\",\n            \"CityName\": \"P.O. Box: 121711, Port Saeed Street, Deira, Dubai 121711\",\n            \"Price\": 285.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"DELUXE TWIN ROOM\",\n            \"MealName\": \"Room only\"\n        },\n        {\n            \"HotelId\": 1959553,\n            \"HotelName\": \"Golden Tulip Deira\",\n            \"StarCategory\": 4,\n            \"Lat\": \"25.25959587097168\",\n            \"Long\": \"55.32597351074219\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/84/1b/841bc9508688105eca38e87441d3267af4c6fa5d.jpeg\",\n            \"CityName\": \"40c Street, Al Rigga Deira, Dubai 33214\",\n            \"Price\": 281.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"SUPERIOR ROOM\",\n            \"MealName\": \"Room only\"\n        },\n        {\n            \"HotelId\": 16298,\n            \"HotelName\": \"Treppan Hotel & Suites by Fakhruddin\",\n            \"StarCategory\": 0,\n            \"Lat\": \"25.042171478271484\",\n            \"Long\": \"55.222110748291016\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/48/25/4825198158fc2456c2a37d89009c8f6e31a8425f.jpeg\",\n            \"CityName\": \"Dubai Sports City, Dubai 121892\",\n            \"Price\": 278.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"DELUXE STUDIO\",\n            \"MealName\": \"Room only\"\n        },\n        {\n            \"HotelId\": 412882,\n            \"HotelName\": \"Dorus Hotel\",\n            \"StarCategory\": 4,\n            \"Lat\": \"25.272001266479492\",\n            \"Long\": \"55.31572341918945\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/ce/7c/ce7c358a2009596b2c125faca2fc19d403e23029.jpeg\",\n            \"CityName\": \"Umer Bin Khatt Ab Road Deira Dubai, Dubai 71311\",\n            \"Price\": 320.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"SINGLE STANDARD\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 76449,\n            \"HotelName\": \"Al Khoory Executive Hotel\",\n            \"StarCategory\": 3,\n            \"Lat\": \"25.23176383972168\",\n            \"Long\": \"55.27017593383789\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/3f/8b/3f8bda15bf4cc89c280b7232144447aefdf03591.jpeg\",\n            \"CityName\": \"Al Wasl Area, Dubai 6237\",\n            \"Price\": 310.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"SUPERIOR ROOM\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 756887,\n            \"HotelName\": \"West Hotel\",\n            \"StarCategory\": 1,\n            \"Lat\": \"25.27320671081543\",\n            \"Long\": \"55.310447692871094\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/9c/95/9c95c94002696af356790ab385aae8544719627d.jpeg\",\n            \"CityName\": \"Naif Road, Naif, Deira, Dubai 1039\",\n            \"Price\": 305.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"DOUBLE OR TWIN ROOM\",\n            \"MealName\": \"Room only\"\n        },\n        {\n            \"HotelId\": 342191,\n            \"HotelName\": \"Signature 1 Hotel Tecom \",\n            \"StarCategory\": 4,\n            \"Lat\": \"25.096616744995117\",\n            \"Long\": \"55.17394256591797\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/extranet/bc/e4/bce40b1532b093d0a44a6be841b3f6e35b120e6b.jpeg\",\n            \"CityName\": \"Al Thanayah 1 Barsha Heights, Tecom, Dubai 503066\",\n            \"Price\": 383.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"DOUBLE ROOM KING BED - CLASSIC\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 231867,\n            \"HotelName\": \"Ramee Rose Hotel\",\n            \"StarCategory\": 4,\n            \"Lat\": \"25.098230361938477\",\n            \"Long\": \"55.17983627319336\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/88/6d/886de8933368d00da8de722aa9cc2765c666b7af.jpeg\",\n            \"CityName\": \"Al Barsha South, Opp Media Rotana, Barsha Heights, Dubai 26816\",\n            \"Price\": 378.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"STANDARD ROOM , 1 DOUBLE BED\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 659296,\n            \"HotelName\": \"Millennium Plaza Downtown Hotel\",\n            \"StarCategory\": 5,\n            \"Lat\": \"25.220333099365234\",\n            \"Long\": \"55.28056335449219\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/7c/zz/7cad663e283d2f21eb8063c4189437b64d99d4b9.jpeg\",\n            \"CityName\": \"Sheikh Zayed Al Nahyan Road, Dubai 23215\",\n            \"Price\": 377.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"DELUXE ROOM DBL\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 990904,\n            \"HotelName\": \"Rove City Centre, Deira\",\n            \"StarCategory\": 3,\n            \"Lat\": \"25.255882263183594\",\n            \"Long\": \"55.33235549926758\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/8a/e5/8ae5cf145f39f39254cdccb4a4802ecf40bc6a35.jpeg\",\n            \"CityName\": \"24 19b Street, Dubai 119444\",\n            \"Price\": 369.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"ROVER ROOM\",\n            \"MealName\": \"Room only\"\n        },\n        {\n            \"HotelId\": 139507,\n            \"HotelName\": \"Signature Hotel Al Barsha Hotel\",\n            \"StarCategory\": 4,\n            \"Lat\": \"25.117084503173828\",\n            \"Long\": \"55.195884704589844\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/ca/52/ca522d8a53c3cb6c59960a5dd7777f319b1d8b0d.jpeg\",\n            \"CityName\": \"Hadaeq Mohammed Bin Rashid, Al Barsha 1, Dubai 26261\",\n            \"Price\": 369.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"DELUXE ROOM KING\",\n            \"MealName\": \"Room only\"\n        },\n        {\n            \"HotelId\": 935261,\n            \"HotelName\": \"President Hotel\",\n            \"StarCategory\": 2,\n            \"Lat\": \"25.244943618774414\",\n            \"Long\": \"55.29872512817383\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/f4/d6/f4d6ed0a0f8c321a7d1d0527a80e8ac3c9140f46.jpeg\",\n            \"CityName\": \"Trade Center Road, Karama, Dubai 28756\",\n            \"Price\": 365.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"STANDARD QUEEN ROOM\",\n            \"MealName\": \"Bed and breakfast\"\n        },\n        {\n            \"HotelId\": 462408,\n            \"HotelName\": \"Fortune Hotel Deira\",\n            \"StarCategory\": 3,\n            \"Lat\": \"25.27450942993164\",\n            \"Long\": \"55.3153076171875\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/extranet/4d/f2/4df277e0df2884763a1854881d4702f5b24c5515.jpeg\",\n            \"CityName\": \"Deira, Omar Bin Al Khattab Road, 160, Dubai 49185\",\n            \"Price\": 365.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"DOUBLE OR TWIN ROOM\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 774966,\n            \"HotelName\": \"Hilton Garden Inn Dubai Al Muraqabat\",\n            \"StarCategory\": 4,\n            \"Lat\": \"25.26474952697754\",\n            \"Long\": \"55.33000183105469\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/b5/5d/b55d52ad882d526ab8b64ede7c0d4b3d677677dd.jpeg\",\n            \"CityName\": \"Abu Baker Al Siddique Road, Dubai 50698\",\n            \"Price\": 351.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"KING ROOM - 25 SQM/COMP WIFI/COFFEE-TEA FACILITIES/DESK - IRON-BOARD/32 INCH HD SAT TV/MINI FRIDGE/SAFE -\",\n            \"MealName\": \"Room only\"\n        },\n        {\n            \"HotelId\": 576410,\n            \"HotelName\": \"Sun and Sands Hotel\",\n            \"StarCategory\": 3,\n            \"Lat\": \"25.260944366455078\",\n            \"Long\": \"55.32392501831055\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/d0/f4/d0f4d79ea7e0224b0873b583ce62047436c12b0f.jpeg\",\n            \"CityName\": \"37th Street, Al Rigga Road, Clock Tower, Dubai 35659\",\n            \"Price\": 350.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"STANDARD DOUBLE OR TWIN ROOM\",\n            \"MealName\": \"Room only\"\n        },\n        {\n            \"HotelId\": 590914,\n            \"HotelName\": \"Citymax Hotel Al Barsha\",\n            \"StarCategory\": 0,\n            \"Lat\": \"25.11511993408203\",\n            \"Long\": \"55.20375442504883\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/ee/58/ee589c77b039ec945c0b344992e9cc37cb11e9cb.jpeg\",\n            \"CityName\": \"Plot no 3731298, Al Barsha Rd, Dubai 116121\",\n            \"Price\": 342.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"DOUBLE ROOM\",\n            \"MealName\": \"Room only\"\n        },\n        {\n            \"HotelId\": 1398004,\n            \"HotelName\": \"The St. Regis Downtown, Dubai\",\n            \"StarCategory\": 5,\n            \"Lat\": \"25.186080932617188\",\n            \"Long\": \"55.27367401123047\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/ostrovok/c4/81/c4817b81455570035c64a1dc0f5db9e3da59ef8d.jpeg\",\n            \"CityName\": \"Marasi Drive, Dubai 00000\",\n            \"Price\": 1074.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"SUPERIOR ROOM DOUBLE DOUBLE\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 1399860,\n            \"HotelName\": \"SKAF Hotel\",\n            \"StarCategory\": 0,\n            \"Lat\": \"25.220996856689453\",\n            \"Long\": \"55.334556579589844\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/bf/e8/bfe834bdf58b5a6904996f636c6934c15c4af304.jpeg\",\n            \"CityName\": \"Al Jadaf, Dubai 117966\",\n            \"Price\": 1071.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"TWIN SUPERIOR\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 1455268,\n            \"HotelName\": \"The Retreat Palm Dubai MGallery by Sofitel\",\n            \"StarCategory\": 5,\n            \"Lat\": \"25.140541076660156\",\n            \"Long\": \"55.14249038696289\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/77/e0/77e0171f9db5c474bba016c5f197118b4a91d85d.jpeg\",\n            \"CityName\": \"East Crescent, The Palm Jumeirah, Dubai 0\",\n            \"Price\": 1050.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"DELUXE ROOM, KING BED OR TWO SINGLE BEDS, BALCONY, PRIVATE BEACH ACCESS , 2 TWIN BEDS\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 988301,\n            \"HotelName\": \"Marriott Executive Apartments Dubai, Al Jaddaf\",\n            \"StarCategory\": 0,\n            \"Lat\": \"25.21135139465332\",\n            \"Long\": \"55.31549835205078\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/f8/a1/f8a1907679303873b91aa9321460128dc8378a63.jpeg\",\n            \"CityName\": \"Oud Metha Road, Al Jaddaf Area, Dubai 122273\",\n            \"Price\": 873.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"ONE BEDROOM APARTMENT\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 841731,\n            \"HotelName\": \"Anantara Downtown Dubai Hotel\",\n            \"StarCategory\": 5,\n            \"Lat\": \"25.185819625854492\",\n            \"Long\": \"55.263858795166016\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/17/cf/17cfdec3118fa0a84fabcfc21bf4ed77c5b85d39.jpeg\",\n            \"CityName\": \"Business Bay, Dubai 71847\",\n            \"Price\": 826.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"PREMIER CITY VIEW ROOM\",\n            \"MealName\": \"Bed And Breakfast\"\n        },\n        {\n            \"HotelId\": 893881,\n            \"HotelName\": \"DAMAC Maison Mall Street\",\n            \"StarCategory\": 5,\n            \"Lat\": \"25.19525146484375\",\n            \"Long\": \"55.283775329589844\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/4e/73/4e736032cee48095adae3e251aaa4ccb30cc979f.jpeg\",\n            \"CityName\": \"Dubai Mall Street, Downtown Dubai (opposite to Dubai Mall), Dubai 2195\",\n            \"Price\": 815.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"DELUXE ROOM - CITY VIEW\",\n            \"MealName\": \"Room only\"\n        },\n        {\n            \"HotelId\": 711068,\n            \"HotelName\": \"Marina Byblos Hotel\",\n            \"StarCategory\": 0,\n            \"Lat\": \"25.071096420288086\",\n            \"Long\": \"55.13496780395508\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/extranet/37/c9/37c9cf6b6a7f78a9652a84d0aa62cc0fb4f97034.jpeg\",\n            \"CityName\": \"Al Hubob St, Dubai Marina, Dubai 123233\",\n            \"Price\": 784.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"DELUXE TWIN ROOM - NON-REFUNDABLE\",\n            \"MealName\": \"Room only\"\n        },\n        {\n            \"HotelId\": 325690,\n            \"HotelName\": \"Grand Astoria Hotel\",\n            \"StarCategory\": 3,\n            \"Lat\": \"25.26209831237793\",\n            \"Long\": \"55.29218673706055\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/57/60/5760bcf51a963aede707fb16787fc5071ffb737b.jpeg\",\n            \"CityName\": \"Al Fahidi Street, Bur Dubai, Dubai 457\",\n            \"Price\": 762.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"DOUBLE STANDARD\",\n            \"MealName\": \"ROOM ONLY\"\n        },\n        {\n            \"HotelId\": 12047,\n            \"HotelName\": \"Pullman Dubai Downtown\",\n            \"StarCategory\": 5,\n            \"Lat\": \"25.18710708618164\",\n            \"Long\": \"55.27118682861328\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/de/a1/dea1822d432511394a9730d891ac5c3672de7eb4.jpeg\",\n            \"CityName\": \"Al Abraj Street with Marasi Drive, Dubai 0000\",\n            \"Price\": 753.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"DOUBLE ROOM KING BED - SUPERIOR\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 1366522,\n            \"HotelName\": \"Radisson Blu Hotel Dubai Waterfront\",\n            \"StarCategory\": 5,\n            \"Lat\": \"25.186304092407227\",\n            \"Long\": \"55.268157958984375\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/c7/2b/c72b330253b052548ab8d73856bf5e1757515bc3.jpeg\",\n            \"CityName\": \"Marasi Drive, Business Bay, Dubai 16021\",\n            \"Price\": 684.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"STANDARD ROOM NON-REFUNDABLE\",\n            \"MealName\": \"Room only\"\n        },\n        {\n            \"HotelId\": 452252,\n            \"HotelName\": \"Wyndham Dubai Marina\",\n            \"StarCategory\": 4,\n            \"Lat\": \"25.069007873535156\",\n            \"Long\": \"55.128517150878906\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/d8/07/d807e2da576755ea6fbde5443734e4f4e32c7457.jpeg\",\n            \"CityName\": \"Al Seba Street, Dubai 215373\",\n            \"Price\": 681.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"SUPERIOR ROOM\",\n            \"MealName\": \"Room only\"\n        },\n        {\n            \"HotelId\": 1437146,\n            \"HotelName\": \"Hyatt Regency Galleria Residence Dubai\",\n            \"StarCategory\": 4,\n            \"Lat\": \"25.278364181518555\",\n            \"Long\": \"55.30467224121094\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/30/be/30be03688510fe9708d65e64671ef27ef41650f0.jpeg\",\n            \"CityName\": \"Al Khaleej Road, Deira Corniche, Dubai 6655\",\n            \"Price\": 674.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"APARTMENT 1 BEDROOM - KITCHEN\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 980735,\n            \"HotelName\": \"Marriott Hotel Al Jaddaf, Dubai\",\n            \"StarCategory\": 5,\n            \"Lat\": \"25.21111488342285\",\n            \"Long\": \"55.31531524658203\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/40/a2/40a2b947a84c3a41c168c494f560b4d96a274ed0.jpeg\",\n            \"CityName\": \"Oud Metha Road, Al Jaddaf Area, Dubai 122273\",\n            \"Price\": 646.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"DELUXE ROOM TWO DOUBLE BEDS\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 532594,\n            \"HotelName\": \"V Hotel Dubai, Curio Collection by Hilton\",\n            \"StarCategory\": 5,\n            \"Lat\": \"25.18442726135254\",\n            \"Long\": \"55.25494384765625\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/2e/62/2e625c94a1fed56188db64c9b5b7f5d67ed0c2aa.jpeg\",\n            \"CityName\": \"Al Habtoor City, Sheikh Zayed Road, Dubai P.O Box 12\",\n            \"Price\": 644.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"TWO QUEEN BEDS DELUXE ROOM\",\n            \"MealName\": \"ROOM ONLY\"\n        },\n        {\n            \"HotelId\": 777771,\n            \"HotelName\": \"Hyatt Regency Dubai Creek Heights\",\n            \"StarCategory\": 5,\n            \"Lat\": \"25.23444175720215\",\n            \"Long\": \"55.323978424072266\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/3c/65/3c6515bb112361f4c2a6300e207a0d6e87d2c978.jpeg\",\n            \"CityName\": \"20th Street, Dubai Healthcare City, Bur Dubai, Dubai 5668\",\n            \"Price\": 629.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"STUDIO\",\n            \"MealName\": \"Breakfast\"\n        },\n        {\n            \"HotelId\": 753930,\n            \"HotelName\": \"Adagio Premium Dubai Al Barsha\",\n            \"StarCategory\": 4,\n            \"Lat\": \"25.113019943237305\",\n            \"Long\": \"55.188297271728516\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/58/d3/58d3037a003e9be9a07bb1323c40cbbd40d3874f.jpeg\",\n            \"CityName\": \"Sheikh Zayed Road, Dubai 450011\",\n            \"Price\": 606.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"APARTMENT 1 BEDROOM\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 133460,\n            \"HotelName\": \"City Stay Prime Hotel Apartment\",\n            \"StarCategory\": 4,\n            \"Lat\": \"25.114809036254883\",\n            \"Long\": \"55.203582763671875\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/84/bf/84bff1718d9b541ba1ca4d9a960fdff04c2cc8ee.jpeg\",\n            \"CityName\": \"Behind Mall Of The Emirates Al Barsha 1, Dubai 450127\",\n            \"Price\": 604.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"ONE-BEDROOM APARTMENT WITH BALCONY - NON-REFUNDABLE\",\n            \"MealName\": \"Room only\"\n        },\n        {\n            \"HotelId\": 664315,\n            \"HotelName\": \"Four Points by Sheraton Sheikh Zayed Road, Dubai\",\n            \"StarCategory\": 4,\n            \"Lat\": \"25.214012145996094\",\n            \"Long\": \"55.275917053222656\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/07/1b/071b622a06515f7e98a3587d539fd409f7049174.jpeg\",\n            \"CityName\": \"Sheikh Zayed Road, Dubai 116162\",\n            \"Price\": 596.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"CLASSIC ROOM KING\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 35354,\n            \"HotelName\": \"Arabian Courtyard Hotel & Spa\",\n            \"StarCategory\": 4,\n            \"Lat\": \"25.26263427734375\",\n            \"Long\": \"55.29747009277344\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/09/f3/09f3193d71f46e0bb4cc300e5cd15cc9c4790d84.jpeg\",\n            \"CityName\": \"Al Fahidi Street, Dubai 46500\",\n            \"Price\": 543.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"ROOM CLASSIC\",\n            \"MealName\": \"Bed & Breakfast\"\n        },\n        {\n            \"HotelId\": 660284,\n            \"HotelName\": \"Grand Millennium Dubai Hotel\",\n            \"StarCategory\": 5,\n            \"Lat\": \"25.10139274597168\",\n            \"Long\": \"55.17754364013672\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/fa/ee/faeec75ff798b01d93950a1488fc689cf08b02b3.jpeg\",\n            \"CityName\": \"Sheikh Zayed Road - Exit 36, Barsha Heights, Dubai 212422\",\n            \"Price\": 541.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"DELUXE ROOM 1 KING BED\",\n            \"MealName\": \"ROOM(ONLY)\"\n        },\n        {\n            \"HotelId\": 110543,\n            \"HotelName\": \"Al Habtoor Polo Resort\",\n            \"StarCategory\": 5,\n            \"Lat\": \"25.079519271850586\",\n            \"Long\": \"55.36639404296875\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/extranet/5d/80/5d800ce407efecd5a5fbbe125fd1e5a15d3c2641.jpeg\",\n            \"CityName\": \"Wadi Al Safa 5, Emirates Road 611, Dubai, Dubai \",\n            \"Price\": 533.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"DELUXE POLO VIEW ROOM\",\n            \"MealName\": \"ROOM ONLY\"\n        },\n        {\n            \"HotelId\": 1170914,\n            \"HotelName\": \"Ewa Dubai Deira Hotel\",\n            \"StarCategory\": 0,\n            \"Lat\": \"25.28267478942871\",\n            \"Long\": \"55.31647491455078\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/3f/6e/3f6e9bb045030dc83367d5dacbb5ba0de74d712a.jpeg\",\n            \"CityName\": \"Al Khaleej Road, Al Baraha Po Box 93499 Deira, Dubai 93499\",\n            \"Price\": 508.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"*21~TWINDOUBLEROOM ()\",\n            \"MealName\": \"Room only\"\n        },\n        {\n            \"HotelId\": 83983,\n            \"HotelName\": \"Ascot Hotel\",\n            \"StarCategory\": 4,\n            \"Lat\": \"25.259313583374023\",\n            \"Long\": \"55.291194915771484\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/5c/87/5c8723b2102c7a7e845698421ca2333ddff1ee37.jpeg\",\n            \"CityName\": \"Khalid Bin Walid Road, Bur Dubai, Dubai 52555\",\n            \"Price\": 504.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"DELUXE ROOM - BREAKFAST INCLUDED IN THE PRICE\",\n            \"MealName\": \"Bed and breakfast\"\n        },\n        {\n            \"HotelId\": 1271955,\n            \"HotelName\": \"TRYP by Wyndham Dubai\",\n            \"StarCategory\": 4,\n            \"Lat\": \"25.097492218017578\",\n            \"Long\": \"55.17488098144531\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/7c/19/7c19bef905f22ab82a1790db1f191b419307ce5f.jpeg\",\n            \"CityName\": \"Al Saef 1 Street, Barsha Heights, Dubai 215373\",\n            \"Price\": 500.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"TRYP ROOM\",\n            \"MealName\": \"Room only\"\n        },\n        {\n            \"HotelId\": 941835,\n            \"HotelName\": \"Carlton Downtown Hotel\",\n            \"StarCategory\": 4,\n            \"Lat\": \"25.209022521972656\",\n            \"Long\": \"55.27486038208008\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/ea/cc/eacc53e98e9e459a891007b48208a70444cca923.jpeg\",\n            \"CityName\": \"Sheikh Zayed Road, Dubai 7143\",\n            \"Price\": 433.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"DELUXE ROOM\",\n            \"MealName\": \"Room Only  \"\n        },\n        {\n            \"HotelId\": 677652,\n            \"HotelName\": \"Holiday Inn Dubai - Al Barsha, an IHG Hotel\",\n            \"StarCategory\": 4,\n            \"Lat\": \"25.11597442626953\",\n            \"Long\": \"55.19415283203125\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/52/db/52db39cada0d492712e5101fb95aa6baf9df2ee4.jpeg\",\n            \"CityName\": \"Al Barsha 1, Sheikh Zayed Road, next to Mall of the Emirates, Dubai 115443\",\n            \"Price\": 432.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"STANDARD ROOM, 2 TWIN BEDS\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 619921,\n            \"HotelName\": \"First Central Hotel Suites\",\n            \"StarCategory\": 4,\n            \"Lat\": \"25.09772491455078\",\n            \"Long\": \"55.174800872802734\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/58/bc/58bcb31a89c1a7312ff72f4640c669a92e533b79.jpeg\",\n            \"CityName\": \"Barsha Heights, Tecom, Dubai 9970\",\n            \"Price\": 431.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"CLASSIC STUDIO KING\",\n            \"MealName\": \"Room only\"\n        },\n        {\n            \"HotelId\": 1019952,\n            \"HotelName\": \"Rove Trade Centre\",\n            \"StarCategory\": 3,\n            \"Lat\": \"25.231948852539062\",\n            \"Long\": \"55.28553771972656\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/e4/e3/e4e3da32b60e616d0c5270d389e4ae99925d6a22.jpeg\",\n            \"CityName\": \"2nd December Road, Jafiliya, Dubai 119444\",\n            \"Price\": 426.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"ROVER ROOM\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 558846,\n            \"HotelName\": \"Abidos Hotel Apartment, Dubailand\",\n            \"StarCategory\": 0,\n            \"Lat\": \"25.089160919189453\",\n            \"Long\": \"55.37950897216797\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/c7/74/c774492491df18ddf2b82e1d50baa2a573b7710e.jpeg\",\n            \"CityName\": \"Dubailand Residence Area, Dubai 232808\",\n            \"Price\": 423.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"ONE-BEDROOM APARTMENT\",\n            \"MealName\": \"Room only\"\n        },\n        {\n            \"HotelId\": 677065,\n            \"HotelName\": \"Rose Garden Hotel Apartments Barsha\",\n            \"StarCategory\": 4,\n            \"Lat\": \"25.114084243774414\",\n            \"Long\": \"55.19288635253906\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/91/77/9177b887a01ab2f0d4b5e79587589a14367ce88b.jpeg\",\n            \"CityName\": \"Al Barsha 1, Sheikh Zayed, Mashreq Metro Station, Dubai 45113\",\n            \"Price\": 423.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"STUDIO NON-REFUNDABLE\",\n            \"MealName\": \"Room only\"\n        },\n        {\n            \"HotelId\": 1800682,\n            \"HotelName\": \"Pearl Executive Hotel Apartments\",\n            \"StarCategory\": 0,\n            \"Lat\": \"25.258560180664062\",\n            \"Long\": \"55.32276916503906\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/a2/32/a23208e9f5d762ebd57f7979a27e3d20bab8a99c.jpeg\",\n            \"CityName\": \"4th &17th Street Corner, Rigga Al Buteen, Dubai 126012\",\n            \"Price\": 416.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"DELUXE STUDIO (TWIN) , 2 TWIN BEDS\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 538516,\n            \"HotelName\": \"Hilton Garden Inn Dubai Mall Of The Emirates\",\n            \"StarCategory\": 4,\n            \"Lat\": \"25.115983963012695\",\n            \"Long\": \"55.196372985839844\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/1f/3c/1f3c1c9eb4b61d66d411dd142e3dc19289f333c6.jpeg\",\n            \"CityName\": \"22nd St, Al Barsha, Dubai 393971\",\n            \"Price\": 416.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"TWIN ROOM - 29SQM/COFFEE-TEA FACILITIES/COMP WIFI - 42INCH HDTV/IRON-BOARD/SAFE/MINI REFRIGERATOR -\",\n            \"MealName\": \"Room only\"\n        },\n        {\n            \"HotelId\": 959599,\n            \"HotelName\": \"Somewhere Hotel Apartment\",\n            \"StarCategory\": 0,\n            \"Lat\": \"25.25394630432129\",\n            \"Long\": \"55.32965850830078\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/39/0b/390bc4985c80c03eb84f2cd19b561dce1f33f6e0.jpeg\",\n            \"CityName\": \"Al Ittihad Road, Port Saeed, Deira, Dubai 113562\",\n            \"Price\": 415.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"STUDIO EXECUTIVE\",\n            \"MealName\": \"Room only\"\n        },\n        {\n            \"HotelId\": 672778,\n            \"HotelName\": \"Chelsea Gardens Hotel Apartments\",\n            \"StarCategory\": 4,\n            \"Lat\": \"25.04814338684082\",\n            \"Long\": \"55.13063049316406\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/7c/9b/7c9bf916f33a282ff3dce38065992b5d8d264bf7.jpeg\",\n            \"CityName\": \"Discovery Gardens, Dubai 124169\",\n            \"Price\": 415.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"STUDIO TWIN - NON-REFUNDABLE\",\n            \"MealName\": \"Room only\"\n        },\n        {\n            \"HotelId\": 42578,\n            \"HotelName\": \"Emirates Stars Hotel Apartments Dubai\",\n            \"StarCategory\": 4,\n            \"Lat\": \"25.280067443847656\",\n            \"Long\": \"55.35739517211914\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/14/a8/14a80ea663e8df240ddcdc9ac0ee14d254cdf33a.jpeg\",\n            \"CityName\": \"Al Nahda2, Al Qusais near NMC Hospital, Dubai 86880\",\n            \"Price\": 412.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"DELUXE SUITE\",\n            \"MealName\": \"Room only\"\n        },\n        {\n            \"HotelId\": 689343,\n            \"HotelName\": \"Park Regis Kris Kin Hotel Dubai\",\n            \"StarCategory\": 5,\n            \"Lat\": \"25.249265670776367\",\n            \"Long\": \"55.301368713378906\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/85/93/85939df89cd2de8fc8d8b0ff2df7f52d15572096.jpeg\",\n            \"CityName\": \"Sheikh Khalifah Bin Zayed St Opposite Burjuman Centre, Dubai 8264\",\n            \"Price\": 405.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"SUPERIOR ROOM - TWIN BEDS\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 1369643,\n            \"HotelName\": \"Al Khoory Inn\",\n            \"StarCategory\": 0,\n            \"Lat\": \"25.258495330810547\",\n            \"Long\": \"55.30046081542969\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/dc/d7/dcd7d24977784dc389a55e4022bb4f0a40d9b84c.jpeg\",\n            \"CityName\": \"17th Street, Dubai 6237\",\n            \"Price\": 397.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"SUPERIOR DOUBLE\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 770931,\n            \"HotelName\": \"Landmark Hotel Riqqa\",\n            \"StarCategory\": 4,\n            \"Lat\": \"25.267005920410156\",\n            \"Long\": \"55.3200569152832\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/28/zz/28adf8a880804e319a527e60a02c270ffc24f024.jpeg\",\n            \"CityName\": \"Al-Jazeera Street 28763, Dubai 28763\",\n            \"Price\": 393.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"STANDARD\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 64523,\n            \"HotelName\": \"Grand Excelsior Hotel Al Barsha\",\n            \"StarCategory\": 4,\n            \"Lat\": \"25.111492156982422\",\n            \"Long\": \"55.203125\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/df/f2/dff2d2351891b904a22757340eeeb2f41ff2c300.jpeg\",\n            \"CityName\": \"Al Barsha 1, Near Mall Of The Emirates, Dubai 213434\",\n            \"Price\": 393.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"SUPERIOR ROOM\",\n            \"MealName\": \"Room only\"\n        },\n        {\n            \"HotelId\": 1364454,\n            \"HotelName\": \"Royal Continental Hotel\",\n            \"StarCategory\": 4,\n            \"Lat\": \"25.252805709838867\",\n            \"Long\": \"55.33564758300781\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/extranet/5f/84/5f844154da7b3ae1df2bfcc32a1c160ce65720b9.jpeg\",\n            \"CityName\": \"P.O. Box 182166, Deira, Opposite Deira City Center, Dubai 182166\",\n            \"Price\": 386.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"SUPERIOR KING ROOM\",\n            \"MealName\": \"Room only\"\n        },\n        {\n            \"HotelId\": 923870,\n            \"HotelName\": \"Citymax Bur Dubai\",\n            \"StarCategory\": 3,\n            \"Lat\": \"25.250755310058594\",\n            \"Long\": \"55.291866302490234\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/9e/25/9e25e78cedeebba7076fe4d4cb3c6a618b062389.jpeg\",\n            \"CityName\": \"Kuwait St. and Mankhool Road, Al Mankhool, Dubai 116121\",\n            \"Price\": 336.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"DOUBLE STANDARD\",\n            \"MealName\": \"ROOM ONLY\"\n        },\n        {\n            \"HotelId\": 1118389,\n            \"HotelName\": \"Al Khoory Atrium Hotel\",\n            \"StarCategory\": 4,\n            \"Lat\": \"25.111366271972656\",\n            \"Long\": \"55.196083068847656\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/d3/8f/d38fbd67e3692a101f5181de752a0f4f7d9e8c05.jpeg\",\n            \"CityName\": \"Sheikh Zayed Road, Al Barsha 1, Dubai 6237\",\n            \"Price\": 334.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"SUPERIOR ROOM\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 1351392,\n            \"HotelName\": \"Fortune Park Hotel\",\n            \"StarCategory\": 4,\n            \"Lat\": \"25.005971908569336\",\n            \"Long\": \"55.15577697753906\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/9d/b4/9db4d54d448055ab94e5cb1c57a08fe2ce4742d5.jpeg\",\n            \"CityName\": \"Dubai Investment Park, Dubai 49815\",\n            \"Price\": 333.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"DOUBLE ROOM - DE LUXE\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 773382,\n            \"HotelName\": \"DoubleTree by Hilton Dubai - Jumeirah Beach\",\n            \"StarCategory\": 4,\n            \"Lat\": \"25.07244873046875\",\n            \"Long\": \"55.12785720825195\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/ostrovok/a5/58/a558484a75d8677f113dda11be6ae445692e490c.jpeg\",\n            \"CityName\": \"The Walk, Dubai Marina, Dubai 0000 Dubai\",\n            \"Price\": 978.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"ONE BEDROOM SUITE CITY VIEW - 78 SQM/LIVING - DINING ROOM/SOFA BED-BALCONY - HD TV /SAFE/ COFFEE TEA FACILITIES/ WIFI -\",\n            \"MealName\": \"Room only\"\n        },\n        {\n            \"HotelId\": 755203,\n            \"HotelName\": \"Rolla Residence Hotel Apartment\",\n            \"StarCategory\": 0,\n            \"Lat\": \"25.25629997253418\",\n            \"Long\": \"55.289398193359375\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/d5/42/d542624c58d9f30a4eeca00d62d4775f6aa84f86.jpeg\",\n            \"CityName\": \"Al Rolla Road, Bur Dubai, Dubai 24490\",\n            \"Price\": 935.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"STUDIO\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 1781878,\n            \"HotelName\": \"Hilton Dubai Jumeirah\",\n            \"StarCategory\": 5,\n            \"Lat\": \"25.07866668701172\",\n            \"Long\": \"55.13408279418945\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/08/c2/08c29f21f2674dd98cfb4aa555a0c05a1533194d.jpeg\",\n            \"CityName\": \"Tower A The Walk, Dubai 2431\",\n            \"Price\": 899.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"TWO QUEEN BED DELUXE ROOM - 2Q CITY VIEW/ SERENITY BED/ WIFI / BALCONY - COFFEE FACILITIES / LCD TV/ WORK DESK -\",\n            \"MealName\": \"Room only\"\n        },\n        {\n            \"HotelId\": 1095431,\n            \"HotelName\": \"Somerset Jadaf\",\n            \"StarCategory\": 0,\n            \"Lat\": \"25.265615463256836\",\n            \"Long\": \"55.31629180908203\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/59/94/599485d8e7eeb5dc5794cb3e6589cd7df05d9faf.jpeg\",\n            \"CityName\": \"PO Box 122161 Dubai, United Arab Emirates - Dubai - United Arab Emirates, Dubai Not found\",\n            \"Price\": 731.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"STUDIO - KING BED\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 771864,\n            \"HotelName\": \"Rove Downtown Dubai\",\n            \"StarCategory\": 3,\n            \"Lat\": \"25.202789306640625\",\n            \"Long\": \"55.27964782714844\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/fe/fb/fefb3664ed2c2a96af2d28f9e9afd9b93384ea73.jpeg\",\n            \"CityName\": \"312 Al Mustaqbal Street, Zabeel 2, Dubai 119444\",\n            \"Price\": 729.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"ROVER ROOM\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 106120,\n            \"HotelName\": \"Hilton Dubai The Walk\",\n            \"StarCategory\": 4,\n            \"Lat\": \"25.078094482421875\",\n            \"Long\": \"55.13498306274414\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/ed/e6/ede6d467ea369fbdfe5b3922ff09a9f2aa11eda9.jpeg\",\n            \"CityName\": \"Tower B The Walk, Dubai 2431\",\n            \"Price\": 727.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"TWIN STUDIO\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 1091907,\n            \"HotelName\": \"Royal Ascot Hotel Apartment\",\n            \"StarCategory\": 0,\n            \"Lat\": \"25.260089874267578\",\n            \"Long\": \"55.28593826293945\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/67/f7/67f7389effc3428b4aab5dae5fa696d778365107.jpeg\",\n            \"CityName\": \"Khalid Bin Waleed Road, Behindi Adcb Bank, Bur Dubai, Dubai 30948\",\n            \"Price\": 720.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"DELUXE SUITE\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 116988,\n            \"HotelName\": \"Hyatt Place Dubai Al Rigga\",\n            \"StarCategory\": 4,\n            \"Lat\": \"25.262958526611328\",\n            \"Long\": \"55.32802200317383\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/7a/93/7a936066aa3c4196efed98da982113e3df10d0a1.jpeg\",\n            \"CityName\": \"45th St., Dubai 33178\",\n            \"Price\": 715.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"ROOM 1 KING BED\",\n            \"MealName\": \"Bed and breakfast\"\n        },\n        {\n            \"HotelId\": 666658,\n            \"HotelName\": \"Park Apartments Dubai, an Edge by Rotana Hotel\",\n            \"StarCategory\": 0,\n            \"Lat\": \"25.22163200378418\",\n            \"Long\": \"55.329132080078125\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/ostrovok/d0/30/d0308f7b16d8c975ec7f12751a9f8454a8074510.jpeg\",\n            \"CityName\": \"Al Jadaf Area, Oud Mehta Road, Dubai 122382\",\n            \"Price\": 714.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"STUDIO - KING BED(O18-ADVANCE PURCHASE)\",\n            \"MealName\": \"Room only\"\n        },\n        {\n            \"HotelId\": 525691,\n            \"HotelName\": \"Omega Hotel\",\n            \"StarCategory\": 4,\n            \"Lat\": \"25.25490379333496\",\n            \"Long\": \"55.29185485839844\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/extranet/ca/4f/ca4f05bae0ea56704bd97dae7fd47569f88e9866.jpeg\",\n            \"CityName\": \"17 - 19d Street, Dubai 33618\",\n            \"Price\": 621.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"STANDARD ROOM\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 885575,\n            \"HotelName\": \"Landmark Grand Hotel\",\n            \"StarCategory\": 4,\n            \"Lat\": \"25.265565872192383\",\n            \"Long\": \"55.317047119140625\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/ba/73/ba73bdfe84987c38ed3ae2d51699f276720f0dc5.jpeg\",\n            \"CityName\": \"Al Riqqa, Opposite Al Ghuriar City, Dubai 42222\",\n            \"Price\": 619.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"STANDARD KING OR DOUBLE NON-REFUNDABLE\",\n            \"MealName\": \"Room only\"\n        },\n        {\n            \"HotelId\": 663622,\n            \"HotelName\": \"Dubai Marine Beach Resort & Spa\",\n            \"StarCategory\": 5,\n            \"Lat\": \"25.233627319335938\",\n            \"Long\": \"55.26359176635742\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/a4/f8/a4f8649b57ef14d74b2fcd3035807ee33052ba24.jpeg\",\n            \"CityName\": \"Jumierah Beach Road, Dubai 00000\",\n            \"Price\": 616.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"FULL SIZE BED (1 BIG BED)\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 2022293,\n            \"HotelName\": \"Pullman Dubai Creek City Centre\",\n            \"StarCategory\": 0,\n            \"Lat\": \"25.25063705444336\",\n            \"Long\": \"55.33454513549805\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/da/94/da949a228db5221ddcc6491aba8beb32d4ee7fbf.jpeg\",\n            \"CityName\": \"Port Saeed Road Baniyas Street PO Box 61871, Dubai 61871\",\n            \"Price\": 562.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"SUPERIOR TWIN ROOM, 2 TWIN BEDS, 2 TWIN BEDS\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 1353967,\n            \"HotelName\": \"Rove Healthcare City - Bur Dubai\",\n            \"StarCategory\": 3,\n            \"Lat\": \"25.234439849853516\",\n            \"Long\": \"55.3129768371582\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/10/eb/10eb9eb06554ec7cf88431c449a17bcb29f0bd0a.jpeg\",\n            \"CityName\": \"19th Street, Oud Metha, Bur Dubai, Dubai 119444\",\n            \"Price\": 560.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"ROVER ROOM\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 595002,\n            \"HotelName\": \"Ramada Plaza by Wyndham Dubai Deira\",\n            \"StarCategory\": 4,\n            \"Lat\": \"25.270248413085938\",\n            \"Long\": \"55.33072280883789\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/47/4d/474d6240afae691462c8d9f5563a9e43718b87f9.jpeg\",\n            \"CityName\": \"Beside Abu Bakar Al Siddique Metro Station, Dubai 81877\",\n            \"Price\": 559.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"DELUXE ROOM, 1 KING BED, NON SMOKING\",\n            \"MealName\": \"Free breakfast\"\n        },\n        {\n            \"HotelId\": 682033,\n            \"HotelName\": \"Grandeur Hotel\",\n            \"StarCategory\": 4,\n            \"Lat\": \"25.109600067138672\",\n            \"Long\": \"55.202999114990234\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/61/3f/613fa19fc72eae89978c5464598e172a92078f5e.jpeg\",\n            \"CityName\": \"Al Barsha 1, Behind Mall of the Emirates, Dubai 282429\",\n            \"Price\": 525.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"ROOM EXECUTIVE\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 1801784,\n            \"HotelName\": \"Pullman Dubai Jumeirah Lakes Towers - Hotel and Residence\",\n            \"StarCategory\": 5,\n            \"Lat\": \"25.08002281188965\",\n            \"Long\": \"55.150020599365234\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/3d/26/3d26ed3c7ef20524195b5a8effbdb2f2147c4865.jpeg\",\n            \"CityName\": \"Jumeirah Lakes Towers Cluster T, Adjacent to Damac Properties Metro station, Dubai 000\",\n            \"Price\": 519.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"DOUBLE ROOM KING BED - SUPERIOR\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 1460983,\n            \"HotelName\": \"Two Seasons Hotel & Apartments\",\n            \"StarCategory\": 4,\n            \"Lat\": \"25.102935791015625\",\n            \"Long\": \"55.17184829711914\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/91/ea/91ea3b34f0097f58aded28568117d565970e26d5.jpeg\",\n            \"CityName\": \"Sheikh Zayed Road, Dubai 502222\",\n            \"Price\": 515.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"SUITE DELUXE\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 1399551,\n            \"HotelName\": \"Telal Hotel Apartments\",\n            \"StarCategory\": 4,\n            \"Lat\": \"25.281700134277344\",\n            \"Long\": \"55.347900390625\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/3e/ca/3eca27f973da50631bc847cd9b7d07e4d8b11b7b.jpeg\",\n            \"CityName\": \"P.O. Box 33324 , Behind Deira Main Post Office Deira, Dubai 33324\",\n            \"Price\": 496.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"DELUXE APARTMENT - NON-REFUNDABLE\",\n            \"MealName\": \"Room only\"\n        },\n        {\n            \"HotelId\": 448533,\n            \"HotelName\": \"Savoy Central Hotel Apartments\",\n            \"StarCategory\": 3,\n            \"Lat\": \"25.257186889648438\",\n            \"Long\": \"55.28920364379883\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/9f/c5/9fc59fa8889ded7dfec82e1eaa48833568e02881.jpeg\",\n            \"CityName\": \"Al Rolla Road Bur Dubai, Dubai 49519\",\n            \"Price\": 492.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"EXECUTIVE STUDIO\",\n            \"MealName\": \"Room only\"\n        },\n        {\n            \"HotelId\": 1399163,\n            \"HotelName\": \"MENA Plaza Hotel Albarsha Hotel\",\n            \"StarCategory\": 0,\n            \"Lat\": \"25.113494873046875\",\n            \"Long\": \"55.20211410522461\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/extranet/6e/df/6edf394d6e199d0c8c9c7418f8cbd904d18de999.jpeg\",\n            \"CityName\": \"Street 13 Al Barsha 1, Dubai, Dubai 282464\",\n            \"Price\": 492.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"DELUXE TWIN SMOKING ROOM NON-REFUNDABLE\",\n            \"MealName\": \"Room only\"\n        },\n        {\n            \"HotelId\": 1371303,\n            \"HotelName\": \"dusitD2 kenz Hotel Dubai\",\n            \"StarCategory\": 4,\n            \"Lat\": \"25.099000930786133\",\n            \"Long\": \"55.173099517822266\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/a0/ba/a0ba19021fa71686fb8937571cfa0abb4aab1b91.jpeg\",\n            \"CityName\": \"Barsha Heights, Sheikh Zayed Road, near Internet City Metro Station, Dubai 71162\",\n            \"Price\": 477.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"TWIN/DOUBLE ROOM\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 1539079,\n            \"HotelName\": \"Golden Tulip Media Hotel\",\n            \"StarCategory\": 4,\n            \"Lat\": \"25.09964942932129\",\n            \"Long\": \"55.17822265625\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/extranet/3a/60/3a60fb41bffdd34ce2a630e6d0bcbb69a1a3c082.jpeg\",\n            \"CityName\": \"Tecom Al Barsha, Dubai, Dubai 500849\",\n            \"Price\": 474.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"DELUXE TWIN ROOM\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 1006584,\n            \"HotelName\": \"Novotel Dubai Al Barsha\",\n            \"StarCategory\": 4,\n            \"Lat\": \"25.112455368041992\",\n            \"Long\": \"55.18868637084961\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/94/dc/94dc75d694fe5b2fcd270e7a46eb4d1c8f6b1627.jpeg\",\n            \"CityName\": \"Opp Mashreq Metro Station, Sheikh Zayed Road Barsha 1 POB 450011, Dubai 450011\",\n            \"Price\": 470.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"SUPERIOR, DOUBLE BED\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 624492,\n            \"HotelName\": \"MD Hotel by Gewan\",\n            \"StarCategory\": 4,\n            \"Lat\": \"25.113840103149414\",\n            \"Long\": \"55.1931266784668\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/df/1a/df1a5032955c1a3aa7ba6f3d80db387933f3c02f.jpeg\",\n            \"CityName\": \"Sheikh Zayed Road, Street 38, Al Barsha-1, Dubai 114400\",\n            \"Price\": 451.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"SUPERIOR TWIN ROOM , 2 TWIN BEDS\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 509642,\n            \"HotelName\": \"City Seasons Towers\",\n            \"StarCategory\": 4,\n            \"Lat\": \"25.252511978149414\",\n            \"Long\": \"55.30295944213867\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/b1/64/b164d4802bae4f3b95f36452bffd456d6e1d6ad0.jpeg\",\n            \"CityName\": \"Khalifa Bin Zayed Road, Mankhool, Dubai 5847\",\n            \"Price\": 444.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"DOUBLE PREMIUM\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 474618,\n            \"HotelName\": \"ibis Al Barsha\",\n            \"StarCategory\": 3,\n            \"Lat\": \"25.10938262939453\",\n            \"Long\": \"55.183841705322266\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/2b/64/2b64ecf78ad0756d807d7ec6e0ded6aa2b5cea47.jpeg\",\n            \"CityName\": \"Sheikh Zayed Road, Dubai 0\",\n            \"Price\": 443.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"DOUBLE ROOM\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 485611,\n            \"HotelName\": \"Atana Hotel\",\n            \"StarCategory\": 4,\n            \"Lat\": \"25.102970123291016\",\n            \"Long\": \"55.176700592041016\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/f3/fc/f3fccb88d43c62c01dada49078f06dea671f60c8.jpeg\",\n            \"CityName\": \"Tecom, Hessa Street, Barsha Heights, Dubai 500555\",\n            \"Price\": 439.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"DOUBLE ROOM KING BED\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 770129,\n            \"HotelName\": \"ibis Styles Dragon Mart Dubai\",\n            \"StarCategory\": 3,\n            \"Lat\": \"25.174169540405273\",\n            \"Long\": \"55.41970443725586\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/4d/f2/4df2f51ad6a5e50a82feac9ac825ce7073264a73.jpeg\",\n            \"CityName\": \"Al Awir Road E44 on Hatta Road, Dubai 68278\",\n            \"Price\": 438.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"STANDARD ROOM WITH 1 DOUBLE BED\",\n            \"MealName\": \"ROOM ONLY\"\n        },\n        {\n            \"HotelId\": 768448,\n            \"HotelName\": \"Hafez Hotel Apartments\",\n            \"StarCategory\": 0,\n            \"Lat\": \"25.267574310302734\",\n            \"Long\": \"55.29401779174805\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/extranet/2c/00/2c004e6602756b8edc1b774d586d47ce2d85820b.jpeg\",\n            \"CityName\": \"United Arab Emirates, Dubai, Deira, Al Ras, Al Ahmadiya Street, 12, Dubai 83163\",\n            \"Price\": 436.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"DOUBLE OR TWIN STUDIO APARTMENT\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 654062,\n            \"HotelName\": \"Gulf Oasis Hotel Apartments\",\n            \"StarCategory\": 0,\n            \"Lat\": \"25.094295501708984\",\n            \"Long\": \"55.17696762084961\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/99/44/9944d510231c360ae90bfa6853d8f40b3e8f23c3.jpeg\",\n            \"CityName\": \"Tecom C Area, Barsha Heights, Dubai 31272\",\n            \"Price\": 435.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"SUPERIOR STUDIO APARTMENT - NON-REFUNDABLE\",\n            \"MealName\": \"Room only\"\n        },\n        {\n            \"HotelId\": 65374,\n            \"HotelName\": \"XVA Art Hotel\",\n            \"StarCategory\": 0,\n            \"Lat\": \"25.264175415039062\",\n            \"Long\": \"55.29990768432617\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/7b/4c/7b4cab9ebdf7780357dc0a0d1f9598bb604575ad.jpeg\",\n            \"CityName\": \"Al Fahidi Neighborhood, Bur Dubai, Dubai 37304\",\n            \"Price\": 461.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"ROOM STANDARD\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 588492,\n            \"HotelName\": \"Royal Falcon Hotel\",\n            \"StarCategory\": 3,\n            \"Lat\": \"25.270599365234375\",\n            \"Long\": \"55.319915771484375\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/extranet/2c/3d/2c3d1bacfc30c9699f6c7b637797329cf71579cc.jpeg\",\n            \"CityName\": \"Salahuddin Road, Dubai, Dubai 25871\",\n            \"Price\": 457.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"DOUBLE OR TWIN DELUXE\",\n            \"MealName\": \"BED AND BREAKFAST\"\n        },\n        {\n            \"HotelId\": 73262,\n            \"HotelName\": \"Baity Hotel Apartments\",\n            \"StarCategory\": 0,\n            \"Lat\": \"25.24860954284668\",\n            \"Long\": \"55.29634475708008\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/c2/36/c2363bd71b9ac04183451fff77b590a1b574eaf9.jpeg\",\n            \"CityName\": \"Kuwait St - Bur Dubai, Dubai 124052\",\n            \"Price\": 455.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"EXECUTIVE ONE BEDROOM\",\n            \"MealName\": \"Room Only - No meal plan\"\n        },\n        {\n            \"HotelId\": 139713,\n            \"HotelName\": \"Pride Hotel Apartments\",\n            \"StarCategory\": 0,\n            \"Lat\": \"25.114761352539062\",\n            \"Long\": \"55.19145202636719\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/a5/8f/a58f8c8b5958e04328e2fbe4fa9cccab64e6c5a7.jpeg\",\n            \"CityName\": \"Al Barsha, Dubai 113601\",\n            \"Price\": 452.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"STUDIO\",\n            \"MealName\": \"Room only\"\n        },\n        {\n            \"HotelId\": 776421,\n            \"HotelName\": \"Hilton Garden Inn Dubai Al Mina\",\n            \"StarCategory\": 4,\n            \"Lat\": \"25.24765968322754\",\n            \"Long\": \"55.2784538269043\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/ba/0d/ba0dd93f2671bf685064f21a135ef827dee988c5.jpeg\",\n            \"CityName\": \"Al Mina Road, Dubai 50831\",\n            \"Price\": 360.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"KING ROOM - 25 SQM/COMP WIFI/COFFEE-TEA FACILITIES/DESK - IRON-BOARD/32 INCH HD SAT TV/MINI FRIDGE/SAFE -\",\n            \"MealName\": \"Room only\"\n        },\n        {\n            \"HotelId\": 606294,\n            \"HotelName\": \"Premier Inn Dubai Investment Park\",\n            \"StarCategory\": 3,\n            \"Lat\": \"25.008159637451172\",\n            \"Long\": \"55.15673828125\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/ca/4d/ca4d59e836d5f9b7f2758c379e7c0578177ab265.jpeg\",\n            \"CityName\": \"Sheikh Mohammed Bin Zayed Rd Dubai, Dubai 00000\",\n            \"Price\": 359.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"DOUBLE ROOM - NON SMOKING\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 666971,\n            \"HotelName\": \"Elite Byblos Hotel\",\n            \"StarCategory\": 5,\n            \"Lat\": \"25.113868713378906\",\n            \"Long\": \"55.20029830932617\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/extranet/0a/a6/0aa671764d26c4aba5218c51eb9be29a0adaf47b.jpeg\",\n            \"CityName\": \"Barsha 1 Behind Mall Of The Emirates, Dubai PO box 390531\",\n            \"Price\": 358.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"CLASSIC DOUBLE\",\n            \"MealName\": \"Room Only Base\"\n        },\n        {\n            \"HotelId\": 760744,\n            \"HotelName\": \"Residence & Spa at One&Only Royal Mirage\",\n            \"StarCategory\": 5,\n            \"Lat\": \"25.097936630249023\",\n            \"Long\": \"55.15348434448242\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/63/c4/63c4e87e94c9ebe6f78ce9948567757869797878.jpeg\",\n            \"CityName\": \"King Salman Bin Abdul Aziz Al Saud St Jumeirah Bea, Dubai -\",\n            \"Price\": 2748.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"ARABIAN COURT DELUXE KING ROOM - GCC RESIDENT  GCC ID MANDATORY - BREAKFAST INCLUDED IN THE PRICE\",\n            \"MealName\": \"Bed and breakfast\"\n        },\n        {\n            \"HotelId\": 423017,\n            \"HotelName\": \"Jumeirah Al Qasr\",\n            \"StarCategory\": 5,\n            \"Lat\": \"25.13205909729004\",\n            \"Long\": \"55.18421936035156\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/19/2a/192ab61f1b7717c526bee507a1cadc2fb72284c5.jpeg\",\n            \"CityName\": \"Madinat Jumeirah King Salman bin Abdulaziz Al Saud Street, Umm Suqeim St, Dubai 75157\",\n            \"Price\": 2616.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"ROOM, DELUXE, LAKE VIEW\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 754342,\n            \"HotelName\": \"Shangri-La Residences and Apartments\",\n            \"StarCategory\": 0,\n            \"Lat\": \"25.208106994628906\",\n            \"Long\": \"55.27201843261719\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/bd/4a/bd4a0bfc641a9ac12ad07b8679db3f15cc75574a.jpeg\",\n            \"CityName\": \"Sheikh Zayed Road, Dubai 75880\",\n            \"Price\": 2433.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"APARTMENT 2 BEDROOMS\",\n            \"MealName\": \"Room only\"\n        },\n        {\n            \"HotelId\": 922175,\n            \"HotelName\": \"Armani Dubai Hotel\",\n            \"StarCategory\": 5,\n            \"Lat\": \"25.197519302368164\",\n            \"Long\": \"55.274879455566406\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/extranet/aa/09/aa091979445c9dd8c5393c50cc0737f87ecc6fb5.jpeg\",\n            \"CityName\": \"Burj Khalifa, Mohamed Bin Rashid Boulevard, Dubai 888333\",\n            \"Price\": 2397.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"ARMANI DELUXE ROOM\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 1300072,\n            \"HotelName\": \"Nikki Beach Resort & Spa Dubai\",\n            \"StarCategory\": 5,\n            \"Lat\": \"25.24688720703125\",\n            \"Long\": \"55.2558708190918\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/2f/84/2f8435c08f605104deb3fff32121aecf98cfbb46.jpeg\",\n            \"CityName\": \"Pearl Jumeira, Dubai 8286\",\n            \"Price\": 2341.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"LUUX ROOM GROUND FLOOR\",\n            \"MealName\": \"Bed&Breakfast\"\n        },\n        {\n            \"HotelId\": 438623,\n            \"HotelName\": \"Four Seasons Hotel Dubai International Financial Centre\",\n            \"StarCategory\": 5,\n            \"Lat\": \"25.2150936126709\",\n            \"Long\": \"55.2801399230957\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/ed/a2/eda2c12671460b096e1e801c0ec892cd506e21a0.jpeg\",\n            \"CityName\": \"Gate Village Building 9, Dubai International Financial Centre, Dubai 128777\",\n            \"Price\": 2228.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"SUPERIOR ROOM\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 683512,\n            \"HotelName\": \"Le Royal Meridien Beach Resort And Spa\",\n            \"StarCategory\": 5,\n            \"Lat\": \"25.08438491821289\",\n            \"Long\": \"55.140316009521484\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/3b/1c/3b1cd5ea8bf325b66ac0fb545a35aa0fbafb960a.jpeg\",\n            \"CityName\": \"Al Mamsha Street, Dubai 24970\",\n            \"Price\": 2044.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"DELUXE ROOM - CITY VIEW\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 779740,\n            \"HotelName\": \"Atlantis, The Palm\",\n            \"StarCategory\": 5,\n            \"Lat\": \"25.13033103942871\",\n            \"Long\": \"55.11713790893555\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/3f/16/3f16d5dd3e08666eedbd27a94f50d7c8e31648b1.jpeg\",\n            \"CityName\": \"Crescent Road, The Palm, Dubai PO Box 211\",\n            \"Price\": 1938.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"OCEAN KING ROOM BEST AVAILABLE RATE\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 905222,\n            \"HotelName\": \"The Ritz-Carlton Executive Residences\",\n            \"StarCategory\": 5,\n            \"Lat\": \"25.212806701660156\",\n            \"Long\": \"55.27869415283203\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/1c/a5/1ca54bc9e45c9bd216655f722851b1f152d8d9e5.jpeg\",\n            \"CityName\": \"Gate Village, DIFC, Dubai 482032\",\n            \"Price\": 1906.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"ONE BEDROOM APARTMENT - DOUBLE (KING)\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 834016,\n            \"HotelName\": \"Jumeirah Zabeel Saray Royal Residences\",\n            \"StarCategory\": 0,\n            \"Lat\": \"25.097980499267578\",\n            \"Long\": \"55.123600006103516\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/44/c9/44c9520ac7a7778c28cfa1c5348f27026f3e3c8e.jpeg\",\n            \"CityName\": \"West Crescent Road, The Palm Jumeirah, Dubai 27722\",\n            \"Price\": 1615.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"FAMILY ROOM, SUPERIOR, BALCONY\",\n            \"MealName\": \"ONLY BED\"\n        },\n        {\n            \"HotelId\": 1614849,\n            \"HotelName\": \"Grosvenor House, a Luxury Collection Hotel, Dubai\",\n            \"StarCategory\": 5,\n            \"Lat\": \"25.085481643676758\",\n            \"Long\": \"55.1442756652832\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/4e/43/4e4349b31e48eef68f420453b3ac1a8e5c430d0f.jpeg\",\n            \"CityName\": \"Al Emreef Street, Dubai 118500\",\n            \"Price\": 1542.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"DELUXE DOUBLE ROOM (TWIN BEDS) (BED TYPE IS SUBJECT TO AVAILABILITY)\",\n            \"MealName\": \"Bed and Breakfast\"\n        },\n        {\n            \"HotelId\": 939692,\n            \"HotelName\": \"Jumeirah Zabeel Saray\",\n            \"StarCategory\": 5,\n            \"Lat\": \"25.098007202148438\",\n            \"Long\": \"55.123512268066406\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/df/3f/df3ff7603dd79d8d01ef95f7e4b654f8f87e7e78.jpeg\",\n            \"CityName\": \"Palm Jumeirah, West Crescent, Dubai 27722\",\n            \"Price\": 1531.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"SUPERIOR KING ROOM\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 96953,\n            \"HotelName\": \"Waldorf Astoria Dubai Palm Jumeirah\",\n            \"StarCategory\": 5,\n            \"Lat\": \"25.134614944458008\",\n            \"Long\": \"55.15120315551758\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/da/19/da194df627fc9f7db0691dfb334ba61ada091858.jpeg\",\n            \"CityName\": \"Crescent Road - The Palm Jumeirah - Dubai - United Arab Emirates, Dubai \",\n            \"Price\": 1385.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"KING ACCESSIBLE SUPERIOR ROOM - WHEELCHAIR ACCESSIBLE BATHRM W/ROLL-IN SHOWER - FROM 55 SQM/LOWERED VANITY/ESPRESSO/BALCONY -\",\n            \"MealName\": \"Buffet Breakfast\"\n        },\n        {\n            \"HotelId\": 855887,\n            \"HotelName\": \"Sofitel Dubai The Palm Resort & Spa\",\n            \"StarCategory\": 5,\n            \"Lat\": \"25.140422821044922\",\n            \"Long\": \"55.132022857666016\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/ea/cf/eacf3c2a24aedbbb32f9ca36fdbd58ddcb900e29.jpeg\",\n            \"CityName\": \"The Palm Jumeirah, East Crescent Road, Dubai 55558\",\n            \"Price\": 1283.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"TWIN/KING ROOM - CLASSIC - COURTYARD VIEW\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 16814,\n            \"HotelName\": \"Habtoor Palace Dubai, LXR Hotels & Resorts\",\n            \"StarCategory\": 5,\n            \"Lat\": \"25.183269500732422\",\n            \"Long\": \"55.25437927246094\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/ostrovok/b1/ba/b1ba5832a8844a88fe4940a9df7632c150407413.jpeg\",\n            \"CityName\": \"Al Habtoor City, Sheikh Zayed Road, Dubai 124405\",\n            \"Price\": 1207.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"DELUXE ROOM\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 1354441,\n            \"HotelName\": \"Dukes The Palm, a Royal Hideaway Hotel\",\n            \"StarCategory\": 5,\n            \"Lat\": \"25.11214256286621\",\n            \"Long\": \"55.137733459472656\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/b9/d7/b9d74d683f56de6a3a7514e8a9449626d44cc666.jpeg\",\n            \"CityName\": \"Palm Jumeirah, Dubai 120015\",\n            \"Price\": 1163.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"DELUXE ROOM\",\n            \"MealName\": \"BED AND BREAKFAST\"\n        },\n        {\n            \"HotelId\": 535627,\n            \"HotelName\": \"Royal Tulip Hotel\",\n            \"StarCategory\": 3,\n            \"Lat\": \"25.276138305664062\",\n            \"Long\": \"55.31057357788086\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/extranet/5d/2e/5d2ed3c50e25a60b3737d54cfbf30098aa4dfbcf.jpeg\",\n            \"CityName\": \"Opposite Delhi Resturant, Al Murar area, Dubai N/A\",\n            \"Price\": 327.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"STANDARD ROOM\",\n            \"MealName\": \"Room only\"\n        },\n        {\n            \"HotelId\": 133636,\n            \"HotelName\": \"The Apartments Dubai World Trade Centre\",\n            \"StarCategory\": 3,\n            \"Lat\": \"25.224750518798828\",\n            \"Long\": \"55.28424072265625\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/7e/01/7e01843777e91f7a2d867bcb8ea7e994c2ac8239.jpeg\",\n            \"CityName\": \"Sheikh Zayed Road, Dubai 9292\",\n            \"Price\": 327.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"SUPERIOR ROOM\",\n            \"MealName\": \"Room only\"\n        },\n        {\n            \"HotelId\": 775648,\n            \"HotelName\": \"ibis One Central Hotel\",\n            \"StarCategory\": 3,\n            \"Lat\": \"25.221290588378906\",\n            \"Long\": \"55.286109924316406\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/af/65/af6587dece30b5130c8442d9dc65a84168547291.jpeg\",\n            \"CityName\": \"Trade Centre District, Dubai 9914\",\n            \"Price\": 322.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"PREMIUM QUEEN ROOM - NON-REFUNDABLE\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 767908,\n            \"HotelName\": \"Al Manar Grand Hotel Apartments\",\n            \"StarCategory\": 0,\n            \"Lat\": \"25.248329162597656\",\n            \"Long\": \"55.29684829711914\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/17/b6/17b6199256ccae25a49f30233ff9653bc4712739.jpeg\",\n            \"CityName\": \"41 Kuwait Street, Dubai 111695\",\n            \"Price\": 304.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"STUDIO - NON-REFUNDABLE\",\n            \"MealName\": \"Room only\"\n        },\n        {\n            \"HotelId\": 762308,\n            \"HotelName\": \"Africana Hotel\",\n            \"StarCategory\": 1,\n            \"Lat\": \"25.27203369140625\",\n            \"Long\": \"55.311431884765625\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/5b/d0/5bd0e684f2f1b5c46faa19ba8dfb845fb76f60ea.jpeg\",\n            \"CityName\": \"28-C Street, Fish Roundabout, Deira, Dubai 83954\",\n            \"Price\": 272.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"DOUBLE STANDARD\",\n            \"MealName\": \"ROOM ONLY\"\n        },\n        {\n            \"HotelId\": 1303060,\n            \"HotelName\": \"Royal Mark Hotel Apartment Dubai\",\n            \"StarCategory\": 2,\n            \"Lat\": \"25.26898956298828\",\n            \"Long\": \"55.30617904663086\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/bf/79/bf796b8efc77dc185d39ea928da6d37a70602fdb.png\",\n            \"CityName\": \"Nasser Square, Baniyas, Dubai, Dubai 385015\",\n            \"Price\": 228.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"STUDIO\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 23784,\n            \"HotelName\": \"Montreal Naif Hotel\",\n            \"StarCategory\": 2,\n            \"Lat\": \"25.271501541137695\",\n            \"Long\": \"55.30393600463867\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/41/b8/41b815da0e36f702029cbd8fc8de038ac393bfe5.jpeg\",\n            \"CityName\": \"19, 6 A Street, Dubai 34296\",\n            \"Price\": 10479.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"DOUBLE STANDARD\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 577032,\n            \"HotelName\": \"One&Only The Palm\",\n            \"StarCategory\": 5,\n            \"Lat\": \"25.098814010620117\",\n            \"Long\": \"55.132564544677734\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/c6/6f/c66f7357c911e04a2b8fe1975cee222778a6d076.jpeg\",\n            \"CityName\": \"Palm Island, The West Crescent, Dubai 114843\",\n            \"Price\": 5744.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"PREMIER DOUBLE ROOM (PALM MANOR GCC ID MANDATORY) NON-REFUNDABLE\",\n            \"MealName\": \"Bed and breakfast\"\n        },\n        {\n            \"HotelId\": 1228618,\n            \"HotelName\": \"Jumeirah Al Naseem\",\n            \"StarCategory\": 5,\n            \"Lat\": \"25.13713836669922\",\n            \"Long\": \"55.187416076660156\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/09/1f/091fbd159ad0b5d181d3ce98b3dfaca139af2e96.jpeg\",\n            \"CityName\": \"Jumeira Road, Umm Suqeim 3, Dubai 75157\",\n            \"Price\": 3972.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"ROOM, DELUXE, POOL VIEW\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 12258,\n            \"HotelName\": \"One&Only Royal Mirage\",\n            \"StarCategory\": 5,\n            \"Lat\": \"25.095796585083008\",\n            \"Long\": \"55.1500358581543\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/db/f8/dbf86a5d89fa457c557fecad1cfe483f4c2e4a49.jpeg\",\n            \"CityName\": \"King Salman bin Abdul Aziz Al Saud St., Dubai Marina, Dubai 37252\",\n            \"Price\": 3047.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"ROOM (PALACE SUPERIOR TWIN) NON-REFUNDABLE\",\n            \"MealName\": \"Bed and breakfast\"\n        },\n        {\n            \"HotelId\": 664075,\n            \"HotelName\": \"Royal Club at Palm Jumeirah\",\n            \"StarCategory\": 0,\n            \"Lat\": \"25.106849670410156\",\n            \"Long\": \"55.1508903503418\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/38/75/38752365c41ffdf82369feb331eee0c20f39b691.jpeg\",\n            \"CityName\": \"Building 20, Jumeirah Shoreline, Palm Jumeirah, Dubai 347474\",\n            \"Price\": 720.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"ROOM SEA VIEW ONE BEDROOM\",\n            \"MealName\": \"ROOM ONLY\"\n        },\n        {\n            \"HotelId\": 770056,\n            \"HotelName\": \"Al Sarab Hotel\",\n            \"StarCategory\": 3,\n            \"Lat\": \"25.2625732421875\",\n            \"Long\": \"55.32201385498047\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/5c/77/5c77d0dab2e384f3461cc2c05fea4e751898694a.jpeg\",\n            \"CityName\": \"Al Rigga Street, Dubai 113330\",\n            \"Price\": 337.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"STANDARD ROOM\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 474786,\n            \"HotelName\": \"ibis Deira City Centre\",\n            \"StarCategory\": 3,\n            \"Lat\": \"25.253543853759766\",\n            \"Long\": \"55.33251953125\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/b8/5a/b85a1b081c59dbdc42a685bf86896729088ee10c.jpeg\",\n            \"CityName\": \"8th Street, Deira City Centre, Dubai 0\",\n            \"Price\": 400.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"STANDARD ROOM WITH 1 DOUBLE BED\",\n            \"MealName\": \"ROOM ONLY\"\n        },\n        {\n            \"HotelId\": 1065948,\n            \"HotelName\": \"Ivory Grand Hotel Apartments\",\n            \"StarCategory\": 3,\n            \"Lat\": \"25.11433982849121\",\n            \"Long\": \"55.20158767700195\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/4a/84/4a84f9beb5a74cbfc0f32ea5423aa16519383c0a.jpeg\",\n            \"CityName\": \"Behind Mall of Emirates, Al Barsha 1, Dubai 391977\",\n            \"Price\": 356.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"STUDIO\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 663125,\n            \"HotelName\": \"Coral Dubai Deira Hotel\",\n            \"StarCategory\": 4,\n            \"Lat\": \"25.266088485717773\",\n            \"Long\": \"55.325626373291016\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/2e/3c/2e3ce40e6387fd0caf3bf0a7a8ae64d6a1daa432.jpeg\",\n            \"CityName\": \"Al Muraqqabat Street Deira, Dubai 82999\",\n            \"Price\": 422.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"STANDARD TWIN\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 31779,\n            \"HotelName\": \"Landmark Premier Hotel\",\n            \"StarCategory\": 4,\n            \"Lat\": \"25.262714385986328\",\n            \"Long\": \"55.32001876831055\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/27/9f/279f38a6c64641b7162778396136eeb327150f8a.jpeg\",\n            \"CityName\": \"40B Street, Dubai 42222\",\n            \"Price\": 546.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"STANDARD DOUBLE OR TWIN ROOM\",\n            \"MealName\": \"Room only\"\n        },\n        {\n            \"HotelId\": 772763,\n            \"HotelName\": \"City Premiere Marina Hotel Apartments\",\n            \"StarCategory\": 0,\n            \"Lat\": \"25.079490661621094\",\n            \"Long\": \"55.14301300048828\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/0f/df/0fdfe7e4ec774acf58fbb982234713fee710737e.jpeg\",\n            \"CityName\": \"Al Suwayeb Street, Near Damac Properties Metro Station, Dubai Marina, Dubai 27372\",\n            \"Price\": 606.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"ONE BEDROOM STANDARD\",\n            \"MealName\": \"Room only\"\n        },\n        {\n            \"HotelId\": 546092,\n            \"HotelName\": \"JW Marriott Marquis Hotel Dubai\",\n            \"StarCategory\": 5,\n            \"Lat\": \"25.18587875366211\",\n            \"Long\": \"55.257957458496094\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/5e/0d/5e0dcf1cccd89326bf51715eff603a3ab3d3ed5b.jpeg\",\n            \"CityName\": \"Sheikh Zayed Road, Business Bay, Dubai 121000\",\n            \"Price\": 750.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"DELUXE KING ROOM\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 736026,\n            \"HotelName\": \"Millennium Central Downtown\",\n            \"StarCategory\": 4,\n            \"Lat\": \"25.19358253479004\",\n            \"Long\": \"55.28933334350586\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/10/a1/10a11642e70969315859a6a601809fa04426d5db.jpeg\",\n            \"CityName\": \"Al Asayel St. Business Bay, Dubai 115138\",\n            \"Price\": 496.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"STANDARD QUEEN STD0001Q\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 656405,\n            \"HotelName\": \"Crowne Plaza Festival City, an IHG Hotel\",\n            \"StarCategory\": 5,\n            \"Lat\": \"25.223812103271484\",\n            \"Long\": \"55.34919357299805\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/a7/2e/a72e13030f8ee1aee97ef10e1b52203b522a9057.jpeg\",\n            \"CityName\": \"Dubai Festival City, Dubai 45777\",\n            \"Price\": 788.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"1 KING STANDARD\",\n            \"MealName\": \"Room only\"\n        },\n        {\n            \"HotelId\": 660459,\n            \"HotelName\": \"Blue Beach Tower\",\n            \"StarCategory\": 5,\n            \"Lat\": \"25.08007049560547\",\n            \"Long\": \"55.1361198425293\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/ostrovok/2b/ff/2bff62651104a652401abd5502af2a45f617cbc0.jpeg\",\n            \"CityName\": \"The Walk, Jumeirah Beach Residence, Dubai 26500\",\n            \"Price\": 514.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"DELUXE ROOM\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 1373633,\n            \"HotelName\": \"Best Western Plus Pearl Creek\",\n            \"StarCategory\": 4,\n            \"Lat\": \"25.267576217651367\",\n            \"Long\": \"55.304744720458984\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/a9/fc/a9fceeffe29b7efeb05bae92aefb8b79c7ce74a5.jpeg\",\n            \"CityName\": \"90 Baniyas Road, Dubai 83163\",\n            \"Price\": 326.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"STANDARD ROOM\",\n            \"MealName\": \"Room only\"\n        },\n        {\n            \"HotelId\": 1252850,\n            \"HotelName\": \"DoubleTree by Hilton Dubai - Business Bay\",\n            \"StarCategory\": 4,\n            \"Lat\": \"25.186721801757812\",\n            \"Long\": \"55.280757904052734\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/0d/d6/0dd67e7dbbf02d69529e5b3a397e8047879d31e5.jpeg\",\n            \"CityName\": \"Bay Square 5, Business Bay, Dubai 999\",\n            \"Price\": 709.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"KING ACCESSIBLE ROOM - WHEELCHAIR ACCESSIBLE ROOM W/ ROLL-IN SHOWER - COMP WIFI/COFFEE-TEA FACILITIES, 49 INCH HDTV -\",\n            \"MealName\": \"Buffet Breakfast\"\n        },\n        {\n            \"HotelId\": 876186,\n            \"HotelName\": \"White Fort Hotel\",\n            \"StarCategory\": 1,\n            \"Lat\": \"25.26926040649414\",\n            \"Long\": \"55.30607223510742\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/69/4a/694ab8784e535753888ea000bf32473df4a05b46.jpeg\",\n            \"CityName\": \"Nasser Square, Near Baniyas, Dubai 83163\",\n            \"Price\": 324.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"STANDARD DOUBLE OR TWIN ROOM , 2 TWIN BEDS\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 260109,\n            \"HotelName\": \"Palazzo Versace Dubai Hotel\",\n            \"StarCategory\": 5,\n            \"Lat\": \"25.22709083557129\",\n            \"Long\": \"55.34206008911133\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/extranet/f4/fd/f4fd6a951bf1bf5e75e988670ff8caf7528bb926.jpeg\",\n            \"CityName\": \"Jaddaf Waterfront, Al Jaddaf, Dubai 00\",\n            \"Price\": 1038.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"DELUXE ROOM, CITY VIEW (VERSACE) , 2 TWIN BEDS\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 1398127,\n            \"HotelName\": \"Rose Park Hotel Al Barsha\",\n            \"StarCategory\": 4,\n            \"Lat\": \"25.114309310913086\",\n            \"Long\": \"55.19069290161133\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/91/db/91db4f3f5f3fd162e0449fac86b441169c625ad5.jpeg\",\n            \"CityName\": \"Opp. Mashreq Metro Station, Dubai 45113\",\n            \"Price\": 442.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"DELUXE TWIN ROOM\",\n            \"MealName\": \"Room only\"\n        },\n        {\n            \"HotelId\": 595421,\n            \"HotelName\": \"Al Bustan Residence Hotel Apartments\",\n            \"StarCategory\": 4,\n            \"Lat\": \"25.27491569519043\",\n            \"Long\": \"55.36716079711914\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/dc/66/dc6645534997f3d09e50586c90b8386447ea5090.jpeg\",\n            \"CityName\": \"Al Qusais Area at Al Nahda Street, Dubai 20107\",\n            \"Price\": 669.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"CLUB ROOM\",\n            \"MealName\": \"Breakfast\"\n        },\n        {\n            \"HotelId\": 312389,\n            \"HotelName\": \"Millennium Airport Hotel Dubai\",\n            \"StarCategory\": 4,\n            \"Lat\": \"25.248458862304688\",\n            \"Long\": \"55.34389877319336\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/mec/51/73/51737f03763d502eb95c86ca59057923198dfd7b.jpeg\",\n            \"CityName\": \"Airport Road, Casablanca Street, Dubai 13018\",\n            \"Price\": 427.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"DELUXE ROOM WITH TWO SINGLE BEDS DOUBLE\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 1343819,\n            \"HotelName\": \"InterContinental Dubai Festival City, an IHG Hotel\",\n            \"StarCategory\": 5,\n            \"Lat\": \"25.22345733642578\",\n            \"Long\": \"55.34986114501953\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/74/98/7498214460f1a0418ebc0e912efa4915e605b24d.jpeg\",\n            \"CityName\": \"Crescent Drive, Dubai Festival City, Dubai 45777\",\n            \"Price\": 876.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"CLASSIC ROOM NON-REFUNDABLE\",\n            \"MealName\": \"Room only\"\n        },\n        {\n            \"HotelId\": 605891,\n            \"HotelName\": \"Premier Inn Dubai International Airport\",\n            \"StarCategory\": 3,\n            \"Lat\": \"25.243101119995117\",\n            \"Long\": \"55.35890579223633\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/7e/52/7e52aa0d74497130961de1c1982e12f9cb52cc93.jpeg\",\n            \"CityName\": \"52B Street, Opposite Terminal 3, Dubai 35118\",\n            \"Price\": 415.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"TWIN ROOM 2 TWIN BEDS NON SMOKING (NEWSTYLE-FREE DXB SHUTTLE 30MIN T3&T1) NON-REFUNDABLE\",\n            \"MealName\": \"Room only\"\n        },\n        {\n            \"HotelId\": 378707,\n            \"HotelName\": \"Movenpick Hotel Jumeirah Lakes Towers\",\n            \"StarCategory\": 0,\n            \"Lat\": \"25.06637954711914\",\n            \"Long\": \"55.13800048828125\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/38/fc/38fc3bb2b8bc9473cc82026d75004aefeb45d5fd.jpeg\",\n            \"CityName\": \"Jumeirah Lakes Towers Cluster A, Dubai 454439\",\n            \"Price\": 592.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"SUPERIOR TWIN ROOM  FREE BEACH CLUB ACCESS IN PALM JUMEIRAH\",\n            \"MealName\": \"Room only\"\n        },\n        {\n            \"HotelId\": 663772,\n            \"HotelName\": \"Bab Al Shams\",\n            \"StarCategory\": 5,\n            \"Lat\": \"24.816370010375977\",\n            \"Long\": \"55.231319427490234\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/09/f6/09f6f4cca69f650c58fe561d432f148952e97082.jpeg\",\n            \"CityName\": \"Al Qudra Road, Dubai 8168\",\n            \"Price\": 2416.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"DELUXE DESERT VIEW TWIN ROOM WHLKEY01 - / - BB - BAR\",\n            \"MealName\": \"Bed And Breakfast\"\n        },\n        {\n            \"HotelId\": 1265335,\n            \"HotelName\": \"Rixos Premium Dubai JBR\",\n            \"StarCategory\": 5,\n            \"Lat\": \"25.080623626708984\",\n            \"Long\": \"55.13566970825195\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/09/4c/094ceb9557f4c5e07e08a551e634aaa48d7fd248.jpeg\",\n            \"CityName\": \"The Walk Jbr Jumeirah Beach Residence Al Mamsha Street, Dubai 643660\",\n            \"Price\": 1737.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"DELUXE SUITE 1 BEDROOM\",\n            \"MealName\": \"Room only\"\n        },\n        {\n            \"HotelId\": 589862,\n            \"HotelName\": \"Carlton Al Barsha\",\n            \"StarCategory\": 0,\n            \"Lat\": \"25.108665466308594\",\n            \"Long\": \"55.20399856567383\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/08/8c/088c11119dc4b7c60b8477ffc910d7482d22dfca.jpeg\",\n            \"CityName\": \"23rd St , Al Barsha 1, Dubai 120257\",\n            \"Price\": 370.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"DELUXE ROOM\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 1408754,\n            \"HotelName\": \"Beach Walk Boutique\",\n            \"StarCategory\": 3,\n            \"Lat\": \"25.146352767944336\",\n            \"Long\": \"55.19556427001953\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/extranet/33/26/33267806278bfcedad36cbefd2f4f11e0c9d5083.jpeg\",\n            \"CityName\": \"325 Rd, Al Thanya Street, Dubai, Dubai 28776\",\n            \"Price\": 629.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"TWIN/DOUBLE ROOM - BOUTIQUE\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 45744,\n            \"HotelName\": \"Novotel Dubai Deira City Centre\",\n            \"StarCategory\": 4,\n            \"Lat\": \"25.253591537475586\",\n            \"Long\": \"55.33261489868164\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/6d/9d/6d9d9fe61592abb07dee6de883c5fd22e0f4a2e9.jpeg\",\n            \"CityName\": \"8th Street Port Saeed District, Dubai n/a\",\n            \"Price\": 465.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"SUPERIOR ROOM WITH 1 DOUBLE BED AND SOFA\",\n            \"MealName\": \"ROOM ONLY\"\n        },\n        {\n            \"HotelId\": 539089,\n            \"HotelName\": \"Ramada by Wyndham Dubai Barsha Heights\",\n            \"StarCategory\": 4,\n            \"Lat\": \"25.094511032104492\",\n            \"Long\": \"55.177223205566406\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/98/2d/982d0db166ac8d87cf6f3357a807389a58ebf03f.jpeg\",\n            \"CityName\": \"56 Al Fosool Street, Bashra Heights, Dubai 500679\",\n            \"Price\": 488.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"SUITE ONE BEDROOM\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 1373001,\n            \"HotelName\": \"La Ville Hotel & Suites CITY WALK, Dubai, Autograph Collection\",\n            \"StarCategory\": 5,\n            \"Lat\": \"25.208511352539062\",\n            \"Long\": \"55.26030731201172\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/86/f7/86f7f74776561f2d108530dfdc90c556921157da.jpeg\",\n            \"CityName\": \"Al Multaqa Street, Dubai 41443\",\n            \"Price\": 1447.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"DELUXE ROOM 1 KING BED NON SMOKING\",\n            \"MealName\": \"ROOM(ONLY)\"\n        },\n        {\n            \"HotelId\": 149542,\n            \"HotelName\": \"Marmara Hotel Apartments\",\n            \"StarCategory\": 0,\n            \"Lat\": \"25.109336853027344\",\n            \"Long\": \"55.20293426513672\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/e4/3b/e43bc36d38944180939768e0e6a1432ab9eeefff.jpeg\",\n            \"CityName\": \"Al Barsha 1 PO Box 63907,Al Barsha 1, Dubai 63907\",\n            \"Price\": 525.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"ONE BEDROOM APARTMENT\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 768780,\n            \"HotelName\": \"Orchid Vue Hotel\",\n            \"StarCategory\": 4,\n            \"Lat\": \"25.256484985351562\",\n            \"Long\": \"55.29826736450195\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/af/14/af143a003a95a6a6d06b1d22cb2aad2305d20542.jpeg\",\n            \"CityName\": \"1A, Behind ADCB Bank, Khalid Bin Al Waleed Rd, Dubai 185170\",\n            \"Price\": 327.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"STANDARD DOUBLE OR TWIN ROOM\",\n            \"MealName\": \"Room only\"\n        },\n        {\n            \"HotelId\": 279258,\n            \"HotelName\": \"The Ritz-Carlton, Dubai\",\n            \"StarCategory\": 5,\n            \"Lat\": \"25.083072662353516\",\n            \"Long\": \"55.138282775878906\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/e0/08/e008b6d3b73953f1363a160cf6bce581a5edb488.jpeg\",\n            \"CityName\": \"P.O. Box 26525, Al Mamsha St - Jumeirah Beach Residence, Dubai 26525\",\n            \"Price\": 2060.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"DELUXE KING\",\n            \"MealName\": \"Bed&Breakfast\"\n        },\n        {\n            \"HotelId\": 1371970,\n            \"HotelName\": \"Lapita, Dubai Parks and Resorts, Autograph Collection\",\n            \"StarCategory\": 4,\n            \"Lat\": \"24.91616439819336\",\n            \"Long\": \"55.003543853759766\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/88/f6/88f6140d2a4f2cf1fad0e5651c5d036feb08db7b.jpeg\",\n            \"CityName\": \"Sheikh Zayed Road, Dubai 334221\",\n            \"Price\": 1416.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"STANDARD ROOM KING BED, RESORT VIEW. INCLUDES THEME PARK ACCESS, SHUTTLE TO MOE & DUBAI MALL\",\n            \"MealName\": \"Buffet Breakfast Included\"\n        },\n        {\n            \"HotelId\": 484710,\n            \"HotelName\": \"Fairmont The Palm\",\n            \"StarCategory\": 5,\n            \"Lat\": \"25.110454559326172\",\n            \"Long\": \"55.14126205444336\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/2a/0d/2a0d4d84ddfda06d34afd4244d050883501af49a.jpeg\",\n            \"CityName\": \"Palm Jumeirah, Dubai P.O Box 72413\",\n            \"Price\": 1298.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"FAIRMONT HERITAGE KING - PARTIAL PALM SEA VIEW\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 666911,\n            \"HotelName\": \"Sheraton Jumeirah Beach Resort\",\n            \"StarCategory\": 5,\n            \"Lat\": \"25.073171615600586\",\n            \"Long\": \"55.12886428833008\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/81/77/817741eb430df5026fdbd3d928538f76004c621a.jpeg\",\n            \"CityName\": \"Al Mamsha Road, P.O. BOX 53567, Dubai 53567\",\n            \"Price\": 1293.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"DELUXE DOUBLE ROOM (TWIN BEDS) (BED TYPE IS SUBJECT TO AVAILABILITY)\",\n            \"MealName\": \"Bed and Breakfast\"\n        },\n        {\n            \"HotelId\": 738688,\n            \"HotelName\": \"Marriott Executive Apartments Dubai Creek\",\n            \"StarCategory\": 4,\n            \"Lat\": \"25.257999420166016\",\n            \"Long\": \"55.3236198425293\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/09/12/0912004d614448a333716adb0f61d3dd057a2626.jpeg\",\n            \"CityName\": \"Riggat Albuteen Street, Dubai P.O. Box 81148\",\n            \"Price\": 747.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"1 BEDROOM APARTMENT, 1 KING, CITY VIEW\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 1779841,\n            \"HotelName\": \"Hyatt Regency Dubai\",\n            \"StarCategory\": 5,\n            \"Lat\": \"25.278457641601562\",\n            \"Long\": \"55.303672790527344\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/de/43/de439e07bec2ad0689de568a1dfd2f092840aaf5.jpeg\",\n            \"CityName\": \"Deira Corniche Alkhaleej Road, Dubai 5588\",\n            \"Price\": 727.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"ROOM 1 KING BED\",\n            \"MealName\": \"Room only\"\n        },\n        {\n            \"HotelId\": 680974,\n            \"HotelName\": \"The H Dubai\",\n            \"StarCategory\": 5,\n            \"Lat\": \"25.230297088623047\",\n            \"Long\": \"55.286964416503906\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/9e/f3/9ef34914277ebaa9607547761449d6f59b07c709.jpeg\",\n            \"CityName\": \"One Sheikh Zayed Road, Dubai 125511\",\n            \"Price\": 609.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"DELUXE ROOM_DOUBLE\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 600452,\n            \"HotelName\": \"Smana Hotel Al Raffa\",\n            \"StarCategory\": 3,\n            \"Lat\": \"25.250085830688477\",\n            \"Long\": \"55.282772064208984\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/29/a6/29a6dd67fee9763895cee64d5513da6e2eb507db.jpeg\",\n            \"CityName\": \"37, Al Raffa, Bur Dubai, Dubai, Dubai 49789\",\n            \"Price\": 599.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"DELUXE ROOM\",\n            \"MealName\": \"Room only\"\n        },\n        {\n            \"HotelId\": 162573,\n            \"HotelName\": \"Villa Rotana\",\n            \"StarCategory\": 4,\n            \"Lat\": \"25.19449806213379\",\n            \"Long\": \"55.26140213012695\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/08/1f/081f5ab0e2b892c3f342c731426718b87c342092.jpeg\",\n            \"CityName\": \"Sheikh Zayed Road, Dubai 118737\",\n            \"Price\": 579.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"STUDIO - KING BED\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 10149,\n            \"HotelName\": \"Mövenpick Hotel Jumeirah Beach\",\n            \"StarCategory\": 5,\n            \"Lat\": \"25.080135345458984\",\n            \"Long\": \"55.13692092895508\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/86/2d/862d600ee6bcb2464cd891ef8a551e960ce67ee7.jpeg\",\n            \"CityName\": \"The Walk, Jumeirah Beach Residence, Dubai 282825\",\n            \"Price\": 903.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"SUPERIOR KING WITH BALCONY\",\n            \"MealName\": \"Bed and Breakfast for 2 guests\"\n        },\n        {\n            \"HotelId\": 775480,\n            \"HotelName\": \"Taj Dubai\",\n            \"StarCategory\": 5,\n            \"Lat\": \"25.192323684692383\",\n            \"Long\": \"55.26723098754883\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/0c/ee/0cee75749d28b92f2444027ff877666abfefb2d2.jpeg\",\n            \"CityName\": \"Burj Khalifa Street, Dubai 8489\",\n            \"Price\": 900.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"LUXURY CITY VIEW KING\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 775506,\n            \"HotelName\": \"Sheraton Grand Hotel, Dubai\",\n            \"StarCategory\": 5,\n            \"Lat\": \"25.229686737060547\",\n            \"Long\": \"55.28654861450195\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/f0/04/f00478eb6749053b70b8ed0f2f55e78e82f60549.jpeg\",\n            \"CityName\": \"3 Sheikh Zayed Road, Dubai 123979\",\n            \"Price\": 866.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"DELUXE ROOM\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 221959,\n            \"HotelName\": \"Number One Tower Suites\",\n            \"StarCategory\": 0,\n            \"Lat\": \"25.210552215576172\",\n            \"Long\": \"55.273372650146484\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/9d/b8/9db82e303ece58b977014e70502796e55624e720.jpeg\",\n            \"CityName\": \"Sheikh Zayed Road 1, Dubai 31003\",\n            \"Price\": 332.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"DELUXE STUDIO\",\n            \"MealName\": \"Room Only  \"\n        },\n        {\n            \"HotelId\": 660468,\n            \"HotelName\": \"Marco Polo Hotel\",\n            \"StarCategory\": 4,\n            \"Lat\": \"25.273801803588867\",\n            \"Long\": \"55.31904602050781\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/4b/c9/4bc98ffc2aee288bea8b1d33572a735bac9ff38e.jpeg\",\n            \"CityName\": \"Al Muteena Street, Dubai 25570\",\n            \"Price\": 332.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"STANDARD ROOM\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 1303299,\n            \"HotelName\": \"Star Metro Deira Hotel Apartments\",\n            \"StarCategory\": 4,\n            \"Lat\": \"25.27037811279297\",\n            \"Long\": \"55.32264709472656\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/65/d3/65d35d7960b44c071640309595012523e55ebcbf.jpeg\",\n            \"CityName\": \"Salahuddin Road, Dubai NULL\",\n            \"Price\": 311.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"DOUBLE DELUXE KING STUDIO ROOM\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 270210,\n            \"HotelName\": \"Al Khaleej Palace Deira Hotel\",\n            \"StarCategory\": 4,\n            \"Lat\": \"25.262571334838867\",\n            \"Long\": \"55.31660461425781\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/25/52/2552b8a74c81208eec6e1283dc501cd09ba4b2d3.jpeg\",\n            \"CityName\": \"Al Makthoum Road, Dubai 3720\",\n            \"Price\": 309.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"DELUXE ROOM\",\n            \"MealName\": \"Room only\"\n        },\n        {\n            \"HotelId\": 700049,\n            \"HotelName\": \"Grand Central Hotel\",\n            \"StarCategory\": 4,\n            \"Lat\": \"25.263628005981445\",\n            \"Long\": \"55.32673645019531\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/3d/f5/3df5c3f1bbdda0bbb9c8eb1b77419f5d0f61b183.jpeg\",\n            \"CityName\": \"24c Street, Al Rigga Road, Deira, Dubai 185722\",\n            \"Price\": 307.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"DOUBLE OR TWIN DELUXE\",\n            \"MealName\": \"ROOM ONLY\"\n        },\n        {\n            \"HotelId\": 665561,\n            \"HotelName\": \"Carlton Palace Hotel\",\n            \"StarCategory\": 5,\n            \"Lat\": \"25.261754989624023\",\n            \"Long\": \"55.319618225097656\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/67/65/67653f770c28583443ccb51f5c289126ef9e6edf.jpeg\",\n            \"CityName\": \"Al Maktoum Street, Dubai 56262\",\n            \"Price\": 356.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"SUPERIOR KING\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 605933,\n            \"HotelName\": \"Capitol Hotel\",\n            \"StarCategory\": 4,\n            \"Lat\": \"25.24196434020996\",\n            \"Long\": \"55.27519989013672\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/99/6a/996adcdfbef694ec8b299a3918d5e85652fa29c2.jpeg\",\n            \"CityName\": \"Al Mina Road, Dubai 33228\",\n            \"Price\": 356.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"STANDARD ROOM DOUBLE OR TWIN\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 667664,\n            \"HotelName\": \"Palm Beach Hotel\",\n            \"StarCategory\": 3,\n            \"Lat\": \"25.25911521911621\",\n            \"Long\": \"55.287784576416016\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/19/b7/19b75c2370283a193f683476b811980cefb7addf.jpeg\",\n            \"CityName\": \"P.O.BOX 5822, Khalid Bin Waleed Road, Bur Dubai, Dubai 5822\",\n            \"Price\": 352.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"ROOM STANDARD\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 918988,\n            \"HotelName\": \"New Penninsula Hotel\",\n            \"StarCategory\": 0,\n            \"Lat\": \"25.262428283691406\",\n            \"Long\": \"55.28977584838867\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/4a/ae/4aae071258072f4d381b31ec85ff89562dace195.jpeg\",\n            \"CityName\": \"12 Al Rifa'a St - Dubai, Dubai 33502\",\n            \"Price\": 343.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"DOUBLE OR TWIN STANDARD\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 771117,\n            \"HotelName\": \"Panorama Bur Dubai Hotel\",\n            \"StarCategory\": 2,\n            \"Lat\": \"25.254955291748047\",\n            \"Long\": \"55.29375076293945\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/4f/6b/4f6b37da8fe789b89d8c81126c1a01598474d33a.jpeg\",\n            \"CityName\": \"Al Mankhool Road, Dubai 14703\",\n            \"Price\": 341.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"STANDARD ROOM\",\n            \"MealName\": \"Room only\"\n        },\n        {\n            \"HotelId\": 54013,\n            \"HotelName\": \"The Meydan Hotel Dubai\",\n            \"StarCategory\": 5,\n            \"Lat\": \"25.15787124633789\",\n            \"Long\": \"55.30119705200195\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/84/zz/84ad36da213cd43fb8b1d602334212d517aa8945.jpeg\",\n            \"CityName\": \"Meydan Racecourse, Al Meydan Road, Dubai 9305\",\n            \"Price\": 777.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"GRAND SUPERIOR BALCONY\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 761730,\n            \"HotelName\": \"Jumeirah Living - World Trade Centre Residence\",\n            \"StarCategory\": 5,\n            \"Lat\": \"25.226675033569336\",\n            \"Long\": \"55.28961944580078\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/76/fd/76fd45760009e9072527f98eb09d78ba9415806f.jpeg\",\n            \"CityName\": \"2nd Zabeel Road, Dubai 0000\",\n            \"Price\": 777.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"ONE BEDROOM DUPLEX RESIDENCE\",\n            \"MealName\": \"Bed&Breakfast\"\n        },\n        {\n            \"HotelId\": 895974,\n            \"HotelName\": \"Jumeirah Creekside Hotel\",\n            \"StarCategory\": 5,\n            \"Lat\": \"25.242904663085938\",\n            \"Long\": \"55.3406982421875\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/14/b8/14b893072ab75bc35576095c1b5530733fae4786.jpeg\",\n            \"CityName\": \"Al Garhoud, next to The Irish Village, Dubai PO 78377\",\n            \"Price\": 748.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"DELUXE ROOM\",\n            \"MealName\": \"Breakfast\"\n        },\n        {\n            \"HotelId\": 810962,\n            \"HotelName\": \"Oaks Liwa Heights Suites\",\n            \"StarCategory\": 3,\n            \"Lat\": \"25.07722282409668\",\n            \"Long\": \"55.150455474853516\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/7e/a1/7ea16e209d26c49abad27371b6733ca79941bbfe.jpeg\",\n            \"CityName\": \"Jumeirah Lake Towers, Dubai 31303\",\n            \"Price\": 623.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"PREMIER ONE BEDROOM SUITE\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 776529,\n            \"HotelName\": \"Hotel Reflections Hotel Dubai\",\n            \"StarCategory\": 4,\n            \"Lat\": \"25.2249813079834\",\n            \"Long\": \"55.33378601074219\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/extranet/59/c1/59c1fa4331f9f4d3ca6587c34f77c0b2297c1e56.jpeg\",\n            \"CityName\": \"Sheikh Rashid Road, 3/8, Dubai 30531\",\n            \"Price\": 614.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"TWIN/DOUBLE ROOM - DE LUXE\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 675371,\n            \"HotelName\": \"Holiday Inn Express Dubai Safa Park an IHG Hotel\",\n            \"StarCategory\": 3,\n            \"Lat\": \"25.18882942199707\",\n            \"Long\": \"55.25507354736328\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/extranet/bf/f0/bff022756b35bee3f88e2d05e6b40fea5feefe66.jpeg\",\n            \"CityName\": \"Jumeira, Al Wasl, 58B Street, 1, Dubai n/a\",\n            \"Price\": 614.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"ROOM, 1 KING BED WITH SOFA BED, SMOKING\",\n            \"MealName\": \"Bed & Breakfast\"\n        },\n        {\n            \"HotelId\": 666588,\n            \"HotelName\": \"Fairmont Dubai\",\n            \"StarCategory\": 5,\n            \"Lat\": \"25.2264461517334\",\n            \"Long\": \"55.28427505493164\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/3e/df/3edfba6d22ec092034ea922d34428b32b19429f9.jpeg\",\n            \"CityName\": \"Sheikh Zayed Road, Dubai 97555\",\n            \"Price\": 1014.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"FAIRMONT, KING BED\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 670925,\n            \"HotelName\": \"JA The Resort - JA Beach hotel\",\n            \"StarCategory\": 5,\n            \"Lat\": \"24.987594604492188\",\n            \"Long\": \"55.02296829223633\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/ostrovok/c0/4d/c04d1a2ad5c03d2b4f5b5ee0ab6bd36d4f359ae2.jpeg\",\n            \"CityName\": \"Exit No:13, Jebel Ali, Dubai 0\",\n            \"Price\": 1001.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"RESORT VIEW ROOM\",\n            \"MealName\": \"Room with Breakfast  \"\n        },\n        {\n            \"HotelId\": 595382,\n            \"HotelName\": \"ZiQoo Hotel Apartments\",\n            \"StarCategory\": 3,\n            \"Lat\": \"25.049470901489258\",\n            \"Long\": \"55.13036346435547\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/extranet/c3/7d/c37d0f2a028b9485b9cd5c2dabba0e1a91959714.jpeg\",\n            \"CityName\": \"Discovery Gardens, Dubai, Dubai 487021\",\n            \"Price\": 988.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"DELUXE APARTMENT 1 BEDROOM\",\n            \"MealName\": \"Room only\"\n        },\n        {\n            \"HotelId\": 405965,\n            \"HotelName\": \"Savoy Crest Hotel Apartments\",\n            \"StarCategory\": 0,\n            \"Lat\": \"25.25299644470215\",\n            \"Long\": \"55.29592514038086\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/7e/6d/7e6da168a8fb8e448e653f5b1f77441391a30bb6.jpeg\",\n            \"CityName\": \"Al Mankhool 10b Street, Bur Dubai, Dubai 29016\",\n            \"Price\": 365.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"DELUXE STUDIO SUITE - FREE BUS SERVICE TO LA MER BEACH AT JUMEIRAH WITH BEACH MATS & BEACH TOWELS\",\n            \"MealName\": \"Room only\"\n        },\n        {\n            \"HotelId\": 270881,\n            \"HotelName\": \"Rose Garden Hotel Apartments - Bur Dubai\",\n            \"StarCategory\": 3,\n            \"Lat\": \"25.254283905029297\",\n            \"Long\": \"55.30124282836914\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/5b/ef/5befcd13fee7c337f3f9010a4997399a68f4d39e.jpeg\",\n            \"CityName\": \"Behind Burjman Shopping Mall, Dubai 45113\",\n            \"Price\": 362.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"STUDIO NON-REFUNDABLE\",\n            \"MealName\": \"ROOM(ONLY)\"\n        },\n        {\n            \"HotelId\": 1397330,\n            \"HotelName\": \"Belvedere Court Hotel Apartments\",\n            \"StarCategory\": 3,\n            \"Lat\": \"25.24860191345215\",\n            \"Long\": \"55.2968864440918\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/e9/78/e97873937da18c0004a3ad29aa52d69a1fe3f4df.jpeg\",\n            \"CityName\": \"Kuwait Street Bur Dubai, Dubai 00000\",\n            \"Price\": 341.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"STUDIO\",\n            \"MealName\": \"Bed&Breakfast\"\n        },\n        {\n            \"HotelId\": 213576,\n            \"HotelName\": \"Golden Tulip Al Barsha Hotel\",\n            \"StarCategory\": 4,\n            \"Lat\": \"25.11283302307129\",\n            \"Long\": \"55.18993377685547\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/73/1b/731b9d9c650fa5f1436510453ed9917b6584aad0.jpeg\",\n            \"CityName\": \"Al Barsha Al Barsha 1 Dubai, Dubai 125962\",\n            \"Price\": 337.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"TWIN/DOUBLE ROOM - SUPERIOR\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 914761,\n            \"HotelName\": \"Avani Deira Dubai Hotel\",\n            \"StarCategory\": 5,\n            \"Lat\": \"25.27090835571289\",\n            \"Long\": \"55.32951736450195\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/9b/79/9b798f09d9d670d5dc89d7d9e3516485719fcc6d.jpeg\",\n            \"CityName\": \"Deira, Abu Baker Al Siddique Road, 36, Dubai 234344\",\n            \"Price\": 335.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"AVANI ROOM\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 475948,\n            \"HotelName\": \"ibis World Trade Centre Dubai\",\n            \"StarCategory\": 3,\n            \"Lat\": \"25.2230281829834\",\n            \"Long\": \"55.285709381103516\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/eb/c7/ebc75e53e0cd7fae3de1d64561681c37e7482023.jpeg\",\n            \"CityName\": \"Sheikh Zayed Road, Dubai 1\",\n            \"Price\": 387.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"STANDARD ROOM WITH ONE DOUBLE-SIZE BED\",\n            \"MealName\": \"ROOM ONLY\"\n        },\n        {\n            \"HotelId\": 766774,\n            \"HotelName\": \"Raviz Center Point Hotel\",\n            \"StarCategory\": 4,\n            \"Lat\": \"25.255718231201172\",\n            \"Long\": \"55.301719665527344\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/3f/3f/3f3f3d2fd39ee245d99bb127306fec775be76ef8.jpeg\",\n            \"CityName\": \"Khalid Bin Al Waleed Street, P.O Box-33382, Dubai 33382\",\n            \"Price\": 385.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"STANDARD DOUBLE OR TWIN ROOM\",\n            \"MealName\": \"Room only\"\n        },\n        {\n            \"HotelId\": 235242,\n            \"HotelName\": \"Hues Boutique Hotel\",\n            \"StarCategory\": 4,\n            \"Lat\": \"25.281904220581055\",\n            \"Long\": \"55.31509780883789\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/c3/75/c3756b15b0a3fd81ffc0acd83a43030cab3c617a.jpeg\",\n            \"CityName\": \"Corniche Deira P.O. Box 5245, Dubai 00\",\n            \"Price\": 306.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"DOUBLE CLASSIC\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 666112,\n            \"HotelName\": \"York International Hotel\",\n            \"StarCategory\": 3,\n            \"Lat\": \"25.258787155151367\",\n            \"Long\": \"55.29690170288086\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/7c/47/7c478a016ab34fbccc28273bc429381e93b99e01.jpeg\",\n            \"CityName\": \"Khaleed Bin Walid Street 101, Dubai 82555\",\n            \"Price\": 300.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"ROOM STANDARD\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 17480,\n            \"HotelName\": \"Royalton Hotel\",\n            \"StarCategory\": 2,\n            \"Lat\": \"25.268997192382812\",\n            \"Long\": \"55.3138313293457\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/78/85/788509eba61e03ca089fa82e23dd5845f84e4571.jpeg\",\n            \"CityName\": \"Near Fish Roundabout Opposite Al Maktoum Hospital, Dubai P O Box 14\",\n            \"Price\": 300.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"STANDARD QUEEN ROOM\",\n            \"MealName\": \"Room only\"\n        },\n        {\n            \"HotelId\": 404001,\n            \"HotelName\": \"Sea View Hotel\",\n            \"StarCategory\": 4,\n            \"Lat\": \"25.255420684814453\",\n            \"Long\": \"55.28477478027344\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/7c/23/7c23cab975604dfc42b9f4705780f850af4c6b7e.jpeg\",\n            \"CityName\": \"Al Mina Road, Bur Dubai, Dubai 52700\",\n            \"Price\": 469.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"DELUXE ROOM NON-REFUNDABLE\",\n            \"MealName\": \"Room only\"\n        },\n        {\n            \"HotelId\": 613016,\n            \"HotelName\": \"ibis Al Rigga\",\n            \"StarCategory\": 3,\n            \"Lat\": \"25.265037536621094\",\n            \"Long\": \"55.32121658325195\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/94/eb/94ebaa577334694191114cb25729f0936f85dd8d.jpeg\",\n            \"CityName\": \"Al Rigga Road, Deira, Dubai 186878\",\n            \"Price\": 464.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"STANDARD ROOM WITH 1 DOUBLE BED\",\n            \"MealName\": \"ROOM ONLY\"\n        },\n        {\n            \"HotelId\": 354614,\n            \"HotelName\": \"Sun City International Hotel\",\n            \"StarCategory\": 2,\n            \"Lat\": \"25.26255989074707\",\n            \"Long\": \"55.2964973449707\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/23/0c/230cee512d7f55e491adefe24b8ec60af7f2cada.jpeg\",\n            \"CityName\": \"Al Fahidi Street, Dubai 44981\",\n            \"Price\": 288.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"STANDARD ROOM\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 661160,\n            \"HotelName\": \"Al Jawhara Hotel Apartments\",\n            \"StarCategory\": 4,\n            \"Lat\": \"25.25485610961914\",\n            \"Long\": \"55.33498764038086\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/f3/cc/f3cc3fa01128cccba81127e80d199c56a56f6d52.jpeg\",\n            \"CityName\": \"Port Saeed Street, Deira, Dubai 116036\",\n            \"Price\": 270.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"DELUXE ROOM (NON REFUNDABLE)\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 768100,\n            \"HotelName\": \"Lavender Hotel\",\n            \"StarCategory\": 3,\n            \"Lat\": \"25.263534545898438\",\n            \"Long\": \"55.31808853149414\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/bb/f8/bbf84accc516a36420d2d08070cad7c60f4ea2ca.jpeg\",\n            \"CityName\": \"Al Jazeera Street, Deira, Dubai 27867\",\n            \"Price\": 269.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"STANDARD TWIN BED\",\n            \"MealName\": \"Room only\"\n        },\n        {\n            \"HotelId\": 668248,\n            \"HotelName\": \"Novotel World Trade Centre\",\n            \"StarCategory\": 4,\n            \"Lat\": \"25.22145652770996\",\n            \"Long\": \"55.288368225097656\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/35/64/35647ce384c333f866416267edc6360a7bc04abb.jpeg\",\n            \"CityName\": \"Al Mustaqbal Street, PO Box 9622, Dubai 9622\",\n            \"Price\": 432.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"FAMILY ROOM - SUPERIOR - SOFA BED\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 907711,\n            \"HotelName\": \"Icon Hotel Apartments\",\n            \"StarCategory\": 0,\n            \"Lat\": \"25.273090362548828\",\n            \"Long\": \"55.31705093383789\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/65/43/654386d133f4673725d3710b0a9a2d248b672ff7.jpeg\",\n            \"CityName\": \"Al Muteena Street, Dubai 49725\",\n            \"Price\": 431.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"STANDARD STUDIO - NON-REFUNDABLE\",\n            \"MealName\": \"Room only\"\n        },\n        {\n            \"HotelId\": 271451,\n            \"HotelName\": \"Fortune Karama Hotel\",\n            \"StarCategory\": 3,\n            \"Lat\": \"25.24250030517578\",\n            \"Long\": \"55.297874450683594\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/ostrovok/33/f5/33f5fdcfa9d161088505d1fa6c932ee7b69b97d8.jpeg\",\n            \"CityName\": \"Near karama Metro Station, Dubai 971\",\n            \"Price\": 393.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"STANDARD ROOM\",\n            \"MealName\": \"Room only\"\n        },\n        {\n            \"HotelId\": 1455915,\n            \"HotelName\": \"Emirates Grand Hotel\",\n            \"StarCategory\": 0,\n            \"Lat\": \"25.211271286010742\",\n            \"Long\": \"55.27412033081055\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/c8/fc/c8fca866c26f99ae5e93c24a8f32ecb184b996b3.jpeg\",\n            \"CityName\": \"Sheikh Zayed Road Next to Financial Centre Metro exit # 2, Dubai 116957\",\n            \"Price\": 391.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"DELUXE KING ROOM\",\n            \"MealName\": \"ROOM ONLY\"\n        },\n        {\n            \"HotelId\": 1744380,\n            \"HotelName\": \"Holiday Inn Dubai Al-Maktoum Airport an IHG Hotel\",\n            \"StarCategory\": 4,\n            \"Lat\": \"24.86803436279297\",\n            \"Long\": \"55.145565032958984\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/extranet/34/ec/34ec9b5f56a50c3aca31fa794e4c1d0127e6e296.jpeg\",\n            \"CityName\": \"Madinat Al Maktoum, Madinat Al Mataar, DWC Peripheral Road, 3/4, Dubai 00000\",\n            \"Price\": 387.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"STANDARD ROOM\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 1257302,\n            \"HotelName\": \"Deira Suites Hotel Apartment\",\n            \"StarCategory\": 0,\n            \"Lat\": \"25.260738372802734\",\n            \"Long\": \"55.31914138793945\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/62/21/62211c6c38364cbd1f64c423f290ba9dc2ef1532.jpeg\",\n            \"CityName\": \"Al Maktoum Road, Dubai 186256\",\n            \"Price\": 815.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"APARTMENT 2 BEDROOMS\",\n            \"MealName\": \"Room only\"\n        },\n        {\n            \"HotelId\": 497008,\n            \"HotelName\": \"Sheraton Mall of the Emirates Hotel, Dubai\",\n            \"StarCategory\": 5,\n            \"Lat\": \"25.119646072387695\",\n            \"Long\": \"55.20314025878906\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/ba/5e/ba5e10bb914f3c8287d8b72a6a2568dfd4f7c930.jpeg\",\n            \"CityName\": \"Sheikh Zayed Road - Al Barsha, Dubai 450309\",\n            \"Price\": 801.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"DELUXE, KING BED, CITY VIEW\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 663347,\n            \"HotelName\": \"Arjaan by Rotana Hotel – Dubai Media City\",\n            \"StarCategory\": 4,\n            \"Lat\": \"25.09573745727539\",\n            \"Long\": \"55.15349197387695\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/b1/d5/b1d591aa90732dd532de742bfdf127c1b05e1ade.jpeg\",\n            \"CityName\": \"King Salman Bin Abdul Azis Al Saud St, Dubai 502828\",\n            \"Price\": 783.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"CITY VIEW ROOM\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 7373,\n            \"HotelName\": \"Dubai Grand Hotel by Fortune\",\n            \"StarCategory\": 4,\n            \"Lat\": \"25.273439407348633\",\n            \"Long\": \"55.38140106201172\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/f1/65/f165b8d72a83a1cca96a0651890522960a404299.jpeg\",\n            \"CityName\": \"Al Quasis, Dubai 49185\",\n            \"Price\": 687.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"STANDARD DOUBLE ROOM , 1 DOUBLE BED\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 178689,\n            \"HotelName\": \"Crowne Plaza Dubai Deira an IHG Hotel\",\n            \"StarCategory\": 5,\n            \"Lat\": \"25.270505905151367\",\n            \"Long\": \"55.32697296142578\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/extranet/fd/ac/fdacd0104f9905e78cb5c3d4e9231e35fefe366f.jpeg\",\n            \"CityName\": \"Deira, Salahuddin Road, 197, Dubai 8668\",\n            \"Price\": 682.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"STANDARD ROOM, 1 KING BED, CLUB LOUNGE ACCESS\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 906602,\n            \"HotelName\": \"voco Bonnington Dubai, an IHG Hotel\",\n            \"StarCategory\": 5,\n            \"Lat\": \"25.067577362060547\",\n            \"Long\": \"55.14186096191406\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/69/9d/699d4d1876e3f95e4f74e42611a9dec401c8512d.jpeg\",\n            \"CityName\": \"Cluster J, Jumeirah Lakes Towers, Dubai 37246\",\n            \"Price\": 682.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"STANDARD ROOM\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 252674,\n            \"HotelName\": \"Moscow Hotel\",\n            \"StarCategory\": 4,\n            \"Lat\": \"25.259410858154297\",\n            \"Long\": \"55.322906494140625\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/a0/0e/a00e1da4bad63949571cb21576245685cf5f7373.jpeg\",\n            \"CityName\": \"Al Maktoum Street, Deira, Dubai 119911\",\n            \"Price\": 492.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"STANDARD ROOM\",\n            \"MealName\": \"Breakfast\"\n        },\n        {\n            \"HotelId\": 663817,\n            \"HotelName\": \"Media Rotana\",\n            \"StarCategory\": 5,\n            \"Lat\": \"25.099733352661133\",\n            \"Long\": \"55.17970275878906\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/7a/d2/7ad209d3ae8a77137fccc85f16cee2a6ba7eb863.jpeg\",\n            \"CityName\": \"Hessa Street, Barsha Heights, Dubai 503030\",\n            \"Price\": 484.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"GUEST ROOM -  KING(O18-FLEXIBLE)\",\n            \"MealName\": \"Room only\"\n        },\n        {\n            \"HotelId\": 163390,\n            \"HotelName\": \"Al Khaleej Grand Hotel\",\n            \"StarCategory\": 3,\n            \"Lat\": \"25.268428802490234\",\n            \"Long\": \"55.303558349609375\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/ac/81/ac81a805dc75b8adba2fbddc5c4f5bb9e6062da3.jpeg\",\n            \"CityName\": \"Baniyas Square, Dubai 83163\",\n            \"Price\": 403.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"DOUBLE OR TWIN ROOM , 2 TWIN BEDS\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 959365,\n            \"HotelName\": \"Metropolitan Hotel Dubai Hotel\",\n            \"StarCategory\": 0,\n            \"Lat\": \"25.13313102722168\",\n            \"Long\": \"55.21244430541992\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/extranet/9b/e9/9be9ffe28eafeebf985818a1ca618b2ce02edcf9.jpeg\",\n            \"CityName\": \"Sheikh Zayed Road, Exit 41, Dubai, Dubai 31588\",\n            \"Price\": 398.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"DOUBLE OR TWIN GUEST ROOM\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 1690769,\n            \"HotelName\": \"Staybridge Suites Dubai Al-Maktoum Airport, an IHG Hotel\",\n            \"StarCategory\": 0,\n            \"Lat\": \"24.867908477783203\",\n            \"Long\": \"55.14615249633789\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/98/3d/983d3747dd2bd569df9a0a46d4aabe9ded209d63.jpeg\",\n            \"CityName\": \"Aviation City A, Dubai 00000\",\n            \"Price\": 395.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"STUDIO SUITE 1 KING BED KITCHEN CITY VIEW NON-REFUNDABLE\",\n            \"MealName\": \"BED AND BREAKFAST\"\n        },\n        {\n            \"HotelId\": 610309,\n            \"HotelName\": \"Ramada by Wyndham Downtown Dubai\",\n            \"StarCategory\": 4,\n            \"Lat\": \"25.19282341003418\",\n            \"Long\": \"55.27246856689453\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/26/25/262558771496af2c1763f373e138745fd2e28c3f.jpeg\",\n            \"CityName\": \"Boulevard Street Downtown Dubai P.O., Dubai 116566\",\n            \"Price\": 846.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"1 BEDROOM  BALCONY KING  DOWNTOWN VIEW  NON-SMOKING  COMPLIMENTARY TRANSFER TO KITE BEACH  DUBAI MALL AND METRO STATION\",\n            \"MealName\": \"Room only\"\n        },\n        {\n            \"HotelId\": 908043,\n            \"HotelName\": \"Pearl Marina Hotel Apartments\",\n            \"StarCategory\": 0,\n            \"Lat\": \"25.069494247436523\",\n            \"Long\": \"55.12892150878906\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/extranet/8a/3a/8a3a425950b5463c49bc740cc57f417a0d5d9712.jpeg\",\n            \"CityName\": \"Marina Water Front, Dubai, Dubai 125179\",\n            \"Price\": 570.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"DELUXE DOUBLE STUDIO (FULL DOUBLE BED)\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 903912,\n            \"HotelName\": \"Florida Square Hotel\",\n            \"StarCategory\": 0,\n            \"Lat\": \"25.270111083984375\",\n            \"Long\": \"55.3036994934082\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/bf/b3/bfb381dd19873ba604b476fdd13b357d2ee28f70.jpeg\",\n            \"CityName\": \"Sabkha Street, Deira, Dubai 123309\",\n            \"Price\": 569.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"TRIPLE ROOM , 3 TWIN BEDS\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 830002,\n            \"HotelName\": \"Movenpick Hotel Apartments Al Mamzar Dubai\",\n            \"StarCategory\": 0,\n            \"Lat\": \"25.289920806884766\",\n            \"Long\": \"55.35444641113281\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/3c/2e/3c2e3e5fed4993f833dae245b1402860b1d9b98a.jpeg\",\n            \"CityName\": \"Corner Cairo road and 46th street, Dubai 92114\",\n            \"Price\": 557.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"SUPERIOR KING\",\n            \"MealName\": \"ROOM ONLY\"\n        },\n        {\n            \"HotelId\": 749178,\n            \"HotelName\": \"Asiana Hotel Dubai\",\n            \"StarCategory\": 5,\n            \"Lat\": \"25.27018165588379\",\n            \"Long\": \"55.32524490356445\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/2e/5f/2e5fb8afdbfe79aaed2ee5a30027cdc569c21284.jpeg\",\n            \"CityName\": \"Salahuddin Rd, Deira, Near Reef mall, Dubai 4483\",\n            \"Price\": 435.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"SUPERIOR TWIN ROOM , 2 TWIN BEDS\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 404352,\n            \"HotelName\": \"Media One Hotel Dubai\",\n            \"StarCategory\": 4,\n            \"Lat\": \"25.08977699279785\",\n            \"Long\": \"55.15220260620117\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/a2/dc/a2dcb5303762fbaa0c51258d907e6d986accfba4.jpeg\",\n            \"CityName\": \"Dubai Media City, Plot No. 1, Dubai 121818\",\n            \"Price\": 435.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"ROOM (HIP) NON-REFUNDABLE\",\n            \"MealName\": \"Room only\"\n        },\n        {\n            \"HotelId\": 312045,\n            \"HotelName\": \"Carlton Tower Hotel\",\n            \"StarCategory\": 4,\n            \"Lat\": \"25.267114639282227\",\n            \"Long\": \"55.307090759277344\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/81/40/814045d35044cd9ff47c713be33e9ecbc793c4c8.jpeg\",\n            \"CityName\": \"Baniyas Street, Dubai 1955\",\n            \"Price\": 322.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"DOUBLE DELUXE ROOM CITY VIEW\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 632061,\n            \"HotelName\": \"Chelsea Plaza Hotel Dubai\",\n            \"StarCategory\": 3,\n            \"Lat\": \"25.235427856445312\",\n            \"Long\": \"55.27939987182617\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/72/85/72853d739545b661823e152c23a3f768ea3d9e9c.jpeg\",\n            \"CityName\": \"Satwa Roundabout, Dubai 24621\",\n            \"Price\": 316.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"DELUXE ROOM\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 675338,\n            \"HotelName\": \"Avenue Hotel\",\n            \"StarCategory\": 4,\n            \"Lat\": \"25.2625675201416\",\n            \"Long\": \"55.326072692871094\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/06/75/06756d5277f31290e98a07626e8c1467a9267864.jpeg\",\n            \"CityName\": \"Al Rigga Street, Deira, Dubai 182244\",\n            \"Price\": 314.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"PREMIUM ROOM\",\n            \"MealName\": \"Room only\"\n        },\n        {\n            \"HotelId\": 662596,\n            \"HotelName\": \"Jumeirah Emirates Towers\",\n            \"StarCategory\": 5,\n            \"Lat\": \"25.217378616333008\",\n            \"Long\": \"55.28287887573242\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/fd/dd/fddda827d84712ad8945efa9fb996bf326a7be77.jpeg\",\n            \"CityName\": \"Sheikh Zayed Road, Dubai 72127\",\n            \"Price\": 969.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"ROOM, DELUXE\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 659032,\n            \"HotelName\": \"Majestic City Retreat Hotel\",\n            \"StarCategory\": 4,\n            \"Lat\": \"25.25322723388672\",\n            \"Long\": \"55.2932014465332\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/16/25/1625348338ede9a5fa180cd882bc213c7151d157.jpeg\",\n            \"CityName\": \"Mankhool Road, Dubai 122235\",\n            \"Price\": 449.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"ECONOMY ROOM\",\n            \"MealName\": \"Bed and Breakfast for 2 guests\"\n        },\n        {\n            \"HotelId\": 680894,\n            \"HotelName\": \"Signature Hotel Apartments & Spa Resort\",\n            \"StarCategory\": 0,\n            \"Lat\": \"25.068645477294922\",\n            \"Long\": \"55.13108444213867\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/extranet/91/45/91451a09a9c3d7aa17c8c826b8c0ca3fcdb913bb.jpeg\",\n            \"CityName\": \"Al Seba Street, 16, Dubai 376332\",\n            \"Price\": 446.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"SUPERIOR STUDIO\",\n            \"MealName\": \"Room only\"\n        },\n        {\n            \"HotelId\": 421760,\n            \"HotelName\": \"Jumeira Rotana Hotel\",\n            \"StarCategory\": 4,\n            \"Lat\": \"25.237159729003906\",\n            \"Long\": \"55.274200439453125\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/d1/f4/d1f4554c0e4f583cfd9e6961cc342ffec256ddbf.jpeg\",\n            \"CityName\": \"2nd December St., Al Badaa, Al Jafiliya, Dubai 33640\",\n            \"Price\": 445.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"GUEST ROOM - KING BED\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 615693,\n            \"HotelName\": \"Centro Barsha\",\n            \"StarCategory\": 3,\n            \"Lat\": \"25.1130313873291\",\n            \"Long\": \"55.19511795043945\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/4e/19/4e196113f979f84a048a5e2d19ab565d59647eed.jpeg\",\n            \"CityName\": \"Road 329, Al Barsha 1, Dubai 115060\",\n            \"Price\": 544.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"CENTRO ROOM - QUEEN BED\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 766615,\n            \"HotelName\": \"DAMAC Maison Cour Jardin\",\n            \"StarCategory\": 5,\n            \"Lat\": \"25.187564849853516\",\n            \"Long\": \"55.2680549621582\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/b3/cb/b3cb0b342daad7d66f339b382d0fa97935c2b9f1.jpeg\",\n            \"CityName\": \"Al Abraj Street, Business Bay, Dubai 7704\",\n            \"Price\": 543.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"DELUXE ROOM DOWNTOWN VIEW\",\n            \"MealName\": \"ROOM ONLY\"\n        },\n        {\n            \"HotelId\": 339120,\n            \"HotelName\": \"Sheraton Dubai Creek Hotel & Towers\",\n            \"StarCategory\": 5,\n            \"Lat\": \"25.261539459228516\",\n            \"Long\": \"55.313758850097656\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/4d/92/4d92081df18c71bd37a3ce7bc778353b957a98ef.jpeg\",\n            \"CityName\": \"Baniyas Street, Dubai 4250\",\n            \"Price\": 530.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"DELUXE CITY VIEW\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 671642,\n            \"HotelName\": \"Ascott Park Place Dubai\",\n            \"StarCategory\": 4,\n            \"Lat\": \"25.224567413330078\",\n            \"Long\": \"55.282928466796875\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/49/7b/497bd441c63d4b9b3431197552b0a00d0c48ed76.jpeg\",\n            \"CityName\": \"Park Place Tower, Sheikh Zayed Road, Dubai 117452\",\n            \"Price\": 672.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"STUDIO PREMIER 10% OFF /OTO PROMOTION\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 716865,\n            \"HotelName\": \"Nassima Tower Hotel Apartments\",\n            \"StarCategory\": 0,\n            \"Lat\": \"25.22311019897461\",\n            \"Long\": \"55.28316116333008\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/6f/84/6f842ed3d2fc63de2208af5f0dbcdb0e4e3297dd.jpeg\",\n            \"CityName\": \"P O Box 49260 Sheikh Zayed Road, Dubai 000\",\n            \"Price\": 666.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"APARTMENT 1 BEDROOM\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 244188,\n            \"HotelName\": \"Rose Rayhaan by Rotana\",\n            \"StarCategory\": 4,\n            \"Lat\": \"25.21160316467285\",\n            \"Long\": \"55.27650833129883\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/24/f1/24f13f054711e57e66b48e5a9a6e1c711c77ab4f.jpeg\",\n            \"CityName\": \"Sheikh Zayed Road P.O. Box 126452, Dubai, UAE, Dubai 126452\",\n            \"Price\": 637.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"GUEST ROOM - TWIN BEDS\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 842098,\n            \"HotelName\": \"Grand Hyatt Dubai\",\n            \"StarCategory\": 5,\n            \"Lat\": \"25.228160858154297\",\n            \"Long\": \"55.32799530029297\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/mec/7d/2f/7d2f2fa765186cd7c8dc60d4452e827f1b846c37.jpeg\",\n            \"CityName\": \"Riyadh Street, Sheikh Rashid Road, Dubai 7978\",\n            \"Price\": 1261.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"ROOM, KING BED, SKYLINE VIEW\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 659478,\n            \"HotelName\": \"Kempinski Mall Of The Emirates\",\n            \"StarCategory\": 5,\n            \"Lat\": \"25.11874771118164\",\n            \"Long\": \"55.19745635986328\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/62/e3/62e3f72fa517dfd056a14debd4836e98e092ea58.jpeg\",\n            \"CityName\": \"Sheikh Zayed Road, Dubai 120679\",\n            \"Price\": 1228.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"DELUXE ROOM DYNAMIC WHOLESALE PACKAGE EARLY BOOKER RATE - SAVE UP TO 10% OFF. NON CANCELLABL\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 301194,\n            \"HotelName\": \"Dubai Marriott Harbour Hotel & Suites\",\n            \"StarCategory\": 4,\n            \"Lat\": \"25.08730125427246\",\n            \"Long\": \"55.14603805541992\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/49/0f/490f3f701c0aafdb1dccec4940d4649586daaf64.jpeg\",\n            \"CityName\": \"King Salman Bin Abdulaziz Al Saud St, Dubai P.O. Box 66662\",\n            \"Price\": 1156.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"ONE BEDROOM SUITE\",\n            \"MealName\": \"Bed & Breakfast\"\n        },\n        {\n            \"HotelId\": 661515,\n            \"HotelName\": \"Raffles Dubai Hotel\",\n            \"StarCategory\": 5,\n            \"Lat\": \"25.227880477905273\",\n            \"Long\": \"55.320648193359375\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/02/b3/02b3d607de239cae37927cdb3616c6294266f317.jpeg\",\n            \"CityName\": \"Sheikh Rashid Road, Wafi, Dubai 121800\",\n            \"Price\": 720.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"DOUBLE OR TWIN STANDARD\",\n            \"MealName\": \"ROOM ONLY\"\n        },\n        {\n            \"HotelId\": 1773643,\n            \"HotelName\": \"Roda Al Murooj Residences\",\n            \"StarCategory\": 0,\n            \"Lat\": \"25.202905654907227\",\n            \"Long\": \"55.277801513671875\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/83/12/8312197c8282c24b057cb3ed7fbb0feb29fa63e8.jpeg\",\n            \"CityName\": \"Financial Center Road, Dubai 117546\",\n            \"Price\": 718.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"TWO BEDROOM APARTMENT\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 776702,\n            \"HotelName\": \"Jannah Place Dubai Marina\",\n            \"StarCategory\": 0,\n            \"Lat\": \"25.069425582885742\",\n            \"Long\": \"55.133087158203125\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/4a/73/4a7359eb5283c7a14eb62b03035958eeca03722c.jpeg\",\n            \"CityName\": \"Al Nasaq Street, Dubai 00\",\n            \"Price\": 704.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"DELUXE STUDIO\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 969703,\n            \"HotelName\": \"DoubleTree by Hilton Hotel & Residences Dubai Al Barsha\",\n            \"StarCategory\": 4,\n            \"Lat\": \"25.114805221557617\",\n            \"Long\": \"55.200828552246094\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/7f/20/7f20f44f1d2fecbc7f4d429940bf8de1b1ea7aaf.jpeg\",\n            \"CityName\": \"Al Barsha - 1, Dubai PO Box 72584\",\n            \"Price\": 420.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"KING GUEST ROOM - 42 INCH SAT TV/COFFEE-TEA FACILITY/MINI BAR - MP3 CLOCK/LAPTOP SAFE/WORK SPACE/WIFI -\",\n            \"MealName\": \"Room only\"\n        },\n        {\n            \"HotelId\": 403648,\n            \"HotelName\": \"Novotel Suites Mall of the Emirates\",\n            \"StarCategory\": 3,\n            \"Lat\": \"25.116605758666992\",\n            \"Long\": \"55.195899963378906\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/57/40/57403f51483c17f8129948946acf336a26fcb725.jpeg\",\n            \"CityName\": \"2A Street, Dubai 283825\",\n            \"Price\": 419.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"SUITE 1 DOUBLE BED\",\n            \"MealName\": \"Room only\"\n        },\n        {\n            \"HotelId\": 211727,\n            \"HotelName\": \"Holiday Inn Express Dubai Jumeirah an IHG Hotel\",\n            \"StarCategory\": 2,\n            \"Lat\": \"25.242944717407227\",\n            \"Long\": \"55.2716064453125\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/extranet/3c/a5/3ca572a2409afaa65afe009205b59b947dbc8a64.jpeg\",\n            \"CityName\": \"Jumeirah Road, Al Mina, Dubai 0\",\n            \"Price\": 418.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"STANDARD ROOM, 1 KING BED, ACCESSIBLE BATHTUB\",\n            \"MealName\": \"Bed & Breakfast\"\n        },\n        {\n            \"HotelId\": 672781,\n            \"HotelName\": \"Address Downtown Hotel\",\n            \"StarCategory\": 5,\n            \"Lat\": \"25.193809509277344\",\n            \"Long\": \"55.279090881347656\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/ba/a2/baa21acdd4d3e8dbf4d22c59ec6f7a5e5f8a6ae4.jpeg\",\n            \"CityName\": \"Sheikh Mohamed Bin Rashid Boulevard, Downtown Dubai, PO Box 123234, Dubai 123234\",\n            \"Price\": 2211.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"DELUXE ROOM 1-3AD+0-2CH (MAX4)\",\n            \"MealName\": \"ROOM(ONLY)\"\n        },\n        {\n            \"HotelId\": 669379,\n            \"HotelName\": \"The Westin Dubai Mina Seyahi Beach Resort & Marina\",\n            \"StarCategory\": 5,\n            \"Lat\": \"25.09255599975586\",\n            \"Long\": \"55.1491584777832\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/9d/67/9d67199372bb81d6e925e23f50cbaa9cee0d86df.jpeg\",\n            \"CityName\": \"Dubai Marina, Dubai 213084\",\n            \"Price\": 2079.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"WESTIN CLUB ROOM SKYLINE VIEW\",\n            \"MealName\": \"Bed&Breakfast\"\n        },\n        {\n            \"HotelId\": 665554,\n            \"HotelName\": \"Nihal Hotel\",\n            \"StarCategory\": 3,\n            \"Lat\": \"25.260440826416016\",\n            \"Long\": \"55.32451629638672\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/7b/2f/7b2fa7f2475edd2c474d54dc093ac19b62e83077.jpeg\",\n            \"CityName\": \"Between Al Rigga and Al Maktoum Road, Dubai 14914\",\n            \"Price\": 383.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"STANDARD DOUBLE\",\n            \"MealName\": \"Room only\"\n        },\n        {\n            \"HotelId\": 32168,\n            \"HotelName\": \"Al Manar Hotel Apartments\",\n            \"StarCategory\": 0,\n            \"Lat\": \"25.28038787841797\",\n            \"Long\": \"55.351593017578125\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/0d/31/0d3195d0e10cde576f89ff8adea45aad63d2a7c2.jpeg\",\n            \"CityName\": \"Hor Al Anz East at the corner 24th and 9th street near Al Qiyadah Metro Station, Dubai 111695\",\n            \"Price\": 381.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"STUDIO\",\n            \"MealName\": \"ROOM ONLY\"\n        },\n        {\n            \"HotelId\": 421758,\n            \"HotelName\": \"Versailles by Raviz\",\n            \"StarCategory\": 4,\n            \"Lat\": \"25.26319694519043\",\n            \"Long\": \"55.32039260864258\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/2e/b1/2eb105b8d01badffd5e8c4e488dc701f8ef5c2f8.jpeg\",\n            \"CityName\": \"15Th Street,Al Rigga,Deira, Dubai 33382\",\n            \"Price\": 376.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"TWIN STANDARD\",\n            \"MealName\": \"ROOM ONLY\"\n        },\n        {\n            \"HotelId\": 661167,\n            \"HotelName\": \"Orchid Hotel\",\n            \"StarCategory\": 3,\n            \"Lat\": \"25.260517120361328\",\n            \"Long\": \"55.324623107910156\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/ba/b6/bab6436e5d4c0ff8bd63f8a34974df7929639872.jpeg\",\n            \"CityName\": \"Al Riqqa Road, Riqqa Al Buteen, Deira, Dubai 14042\",\n            \"Price\": 416.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"STANDARD ROOM\",\n            \"MealName\": \"Room only\"\n        },\n        {\n            \"HotelId\": 55654,\n            \"HotelName\": \"The Canvas Dubai - MGallery Hotel Collection\",\n            \"StarCategory\": 5,\n            \"Lat\": \"25.255409240722656\",\n            \"Long\": \"55.28561782836914\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/45/be/45be19d71850d126ebb010703b7165f8674ffde5.jpeg\",\n            \"CityName\": \"23, Kuwait Street, Dubai 116656\",\n            \"Price\": 416.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"DOUBLE SUPERIOR KING ROOM\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 663105,\n            \"HotelName\": \"Mövenpick Grand Al Bustan Dubai\",\n            \"StarCategory\": 5,\n            \"Lat\": \"25.248031616210938\",\n            \"Long\": \"55.34550094604492\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/extranet/41/92/41921aaafcb3e47a20bdaf31ec2e53833c1e909e.jpeg\",\n            \"CityName\": \"Casablanca Road, Al Garhoud Dubai Airport, Dubai 30880\",\n            \"Price\": 406.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"CLASSIC ROOM WITH 1 KING SIZE BED\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 611542,\n            \"HotelName\": \"Savoy Suites Hotel Apartments\",\n            \"StarCategory\": 0,\n            \"Lat\": \"25.253814697265625\",\n            \"Long\": \"55.29750061035156\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/ee/9a/ee9aa8ee02114ac0ac3acc1f4f35d0260cbf423c.jpeg\",\n            \"CityName\": \"Community 317, Street no. 12A, Bur Dubai, Dubai 28950\",\n            \"Price\": 374.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"STUDIO SUITE\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 37045,\n            \"HotelName\": \"J5 Hotels - Port Saeed\",\n            \"StarCategory\": 3,\n            \"Lat\": \"25.25411605834961\",\n            \"Long\": \"55.33585739135742\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/1b/48/1b4818d012a2ddde955e10bcb3796b896a0434b1.jpeg\",\n            \"CityName\": \"Al Garhoud Road, Deira City Centre, Dubai 33871\",\n            \"Price\": 365.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"DELUXE TWIN ROOM\",\n            \"MealName\": \"Room only\"\n        },\n        {\n            \"HotelId\": 546585,\n            \"HotelName\": \"Phoenix Hotel\",\n            \"StarCategory\": 3,\n            \"Lat\": \"25.272323608398438\",\n            \"Long\": \"55.31374740600586\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/8d/c8/8dc85b0f742dbf4f6c70f9cf5ca74d204aeea0e7.jpeg\",\n            \"CityName\": \"28, St.28 C, Community 118, Nakheel Area, Dubai 39674\",\n            \"Price\": 323.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"STANDARD DOUBLE - TWIN NON-REFUNDABLE\",\n            \"MealName\": \"Room only\"\n        },\n        {\n            \"HotelId\": 663683,\n            \"HotelName\": \"Burj Al Arab Jumeirah\",\n            \"StarCategory\": 5,\n            \"Lat\": \"25.140872955322266\",\n            \"Long\": \"55.18592834472656\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/36/b2/36b2a0debd2210250b611b31c143358ecca4c0f9.jpeg\",\n            \"CityName\": \"Jumeirah Beach Road, Dubai 74147\",\n            \"Price\": 6459.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"SUITE, DELUXE, SEA VIEW\",\n            \"MealName\": \"Bed And Breakfast\"\n        },\n        {\n            \"HotelId\": 719183,\n            \"HotelName\": \"Kempinski Hotel & Residences Palm Jumeirah\",\n            \"StarCategory\": 5,\n            \"Lat\": \"25.112899780273438\",\n            \"Long\": \"55.109100341796875\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/68/6e/686e2ab167b85521ec7f7ddeb6da3f6d3d04ca69.jpeg\",\n            \"CityName\": \"Crescent West, Palm Jumeirah, Dubai 213208\",\n            \"Price\": 3295.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"FAMILY SUITE, 2 BEDROOMS, OCEAN VIEW , 3 TWIN BEDS\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 29630,\n            \"HotelName\": \"Jumeirah Beach Hotel\",\n            \"StarCategory\": 5,\n            \"Lat\": \"25.14120101928711\",\n            \"Long\": \"55.19102478027344\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/42/25/4225a34cdd42c941f3943a5914056974270fed3b.jpeg\",\n            \"CityName\": \"Jumeirah Beach Road, Dubai 11416\",\n            \"Price\": 2444.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"OCEAN VIEW DELUXE ROOM - INCLUDES WILD WADI WATERPARKÂ„¢ AND KIDS CLUB ACCESS  - NON-REFUNDABLE\",\n            \"MealName\": \"Room only\"\n        },\n        {\n            \"HotelId\": 135766,\n            \"HotelName\": \"Aloft Dubai South\",\n            \"StarCategory\": 4,\n            \"Lat\": \"24.867008209228516\",\n            \"Long\": \"55.14719009399414\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/15/63/1563a72f6ea23cf0c73e330e61bcc4745c8ee2d5.jpeg\",\n            \"CityName\": \"Al Maktoum International Airport, Dubai 712778\",\n            \"Price\": 505.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"ALOFT ROOM, GUEST ROOM, 2 TWIN/SINGLE BED(S)\",\n            \"MealName\": \"Room only\"\n        },\n        {\n            \"HotelId\": 1458832,\n            \"HotelName\": \"Rove At The Park\",\n            \"StarCategory\": 3,\n            \"Lat\": \"24.91114616394043\",\n            \"Long\": \"55.01331329345703\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/23/07/2307f5fcf3d3b2669c83fed1b5fa6aaf4fbd4d92.jpeg\",\n            \"CityName\": \"Dubai Parks and Resorts, Dubai 119444\",\n            \"Price\": 505.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"ROVER ROOM\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 587526,\n            \"HotelName\": \"Al Raya Hotel Apartment\",\n            \"StarCategory\": 0,\n            \"Lat\": \"25.249296188354492\",\n            \"Long\": \"55.29677963256836\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/37/b4/37b4a5d2763625e5853ceba083fddad1a5cd23fb.jpeg\",\n            \"CityName\": \"Bur Dubai Al Mankhool area, Dubai 124899\",\n            \"Price\": 494.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"TWO BEDROOM APARTMENTS\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 502575,\n            \"HotelName\": \"Mövenpick Hotel & Apartments Bur Dubai\",\n            \"StarCategory\": 5,\n            \"Lat\": \"25.2342472076416\",\n            \"Long\": \"55.31175994873047\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/a9/ed/a9ede7d6db2ac6f3145370a09394f99e76296d3d.jpeg\",\n            \"CityName\": \"19th Street, Dubai 32733\",\n            \"Price\": 522.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"SUPERIOR ROOM KING\",\n            \"MealName\": \"ROOM ONLY\"\n        },\n        {\n            \"HotelId\": 130377,\n            \"HotelName\": \"Fortune Plaza Hotel\",\n            \"StarCategory\": 3,\n            \"Lat\": \"25.267004013061523\",\n            \"Long\": \"55.38087463378906\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/79/de/79dec81dafea2588a24e3fc8313ce1ff054e5c72.jpeg\",\n            \"CityName\": \"Al Nadha Road, Dubai Dubai\",\n            \"Price\": 519.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"DELUXE  ROOM\",\n            \"MealName\": \"Bed and Breakfast\"\n        },\n        {\n            \"HotelId\": 90257,\n            \"HotelName\": \"Holiday Inn Express Dubai Internet City an IHG Hotel\",\n            \"StarCategory\": 3,\n            \"Lat\": \"25.104232788085938\",\n            \"Long\": \"55.16623306274414\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/extranet/14/84/148414dd48043d0a5793f588f53cfea6cb6e1e32.jpeg\",\n            \"CityName\": \"Knowledge Village Pob 282647, Dubai No postal\",\n            \"Price\": 511.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"STANDARD ROOM 1 KING BED WITH SOFA BED SMOKING NON-REFUNDABLE\",\n            \"MealName\": \"Bed and breakfast\"\n        },\n        {\n            \"HotelId\": 662760,\n            \"HotelName\": \"Golden Sands-Dubai Creek\",\n            \"StarCategory\": 5,\n            \"Lat\": \"25.259824752807617\",\n            \"Long\": \"55.318267822265625\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/63/89/6389f77247a39823fd35df185eaea3228bdc08c8.jpeg\",\n            \"CityName\": \"Baniyas Road, Dubai NULL\",\n            \"Price\": 829.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"DELUXE KING\",\n            \"MealName\": \"Breakfast\"\n        },\n        {\n            \"HotelId\": 182146,\n            \"HotelName\": \"Swissôtel Al Murooj Dubai\",\n            \"StarCategory\": 5,\n            \"Lat\": \"25.2027530670166\",\n            \"Long\": \"55.27766799926758\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/5e/5b/5e5b3efdac758768b1a33f49d801ff01198d2fd1.jpeg\",\n            \"CityName\": \"Al Mustaqbal Steet, opposite Dubai Mall, Dubai 117546\",\n            \"Price\": 815.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"CLASSIC ROOM KING\",\n            \"MealName\": \"BED AND BREAKFAST\"\n        },\n        {\n            \"HotelId\": 659544,\n            \"HotelName\": \"Nuran Marina Serviced Residences\",\n            \"StarCategory\": 0,\n            \"Lat\": \"25.07463836669922\",\n            \"Long\": \"55.13697814941406\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/3f/07/3f079e3315ef68fd4449d4120c2d79f563e5f392.jpeg\",\n            \"CityName\": \"Al Majara 4, Street H, District 4, Dubai 121600\",\n            \"Price\": 725.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"STUDIO WITH BALCONY , 1 KING BED\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 51834,\n            \"HotelName\": \"ibis Dubai Mall of the Emirates Hotel\",\n            \"StarCategory\": 3,\n            \"Lat\": \"25.116525650024414\",\n            \"Long\": \"55.19578170776367\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/e5/c1/e5c16de7bd931562854e8762a497b4b768fb71b2.jpeg\",\n            \"CityName\": \"2 A Street, Al Barsha Heights, Dubai 0\",\n            \"Price\": 442.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"STANDARD ROOM - DOUBLE\",\n            \"MealName\": \"Bed & Breakfast\"\n        },\n        {\n            \"HotelId\": 661051,\n            \"HotelName\": \"Ramee Royal Hotel\",\n            \"StarCategory\": 4,\n            \"Lat\": \"25.249156951904297\",\n            \"Long\": \"55.312767028808594\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/d2/bd/d2bdfa88a34c8dd475fe4ba8642f82c4f0369c34.jpeg\",\n            \"CityName\": \"Khalid Bin Al Waleed St., Dubai 26818\",\n            \"Price\": 438.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"STANDARD DOUBLE OR TWIN ROOM\",\n            \"MealName\": \"Room only\"\n        },\n        {\n            \"HotelId\": 19577,\n            \"HotelName\": \"J5 Rimal Hotel Apartments\",\n            \"StarCategory\": 4,\n            \"Lat\": \"25.26421356201172\",\n            \"Long\": \"55.3267822265625\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/0f/9a/0f9ac786f5198c3adcfd873998726c87297bfa52.jpeg\",\n            \"CityName\": \"Al Muraqqabat Road, Dubai 27070\",\n            \"Price\": 365.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"CLASSIC STUDIO\",\n            \"MealName\": \"Room only\"\n        },\n        {\n            \"HotelId\": 605855,\n            \"HotelName\": \"Premier Inn Dubai Silicon Oasis\",\n            \"StarCategory\": 3,\n            \"Lat\": \"25.122905731201172\",\n            \"Long\": \"55.37438201904297\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/25/5e/255eff2f37a384fd4cd3ed5f66e21da04826d70d.jpeg\",\n            \"CityName\": \"Silicon Oasis, Dubai 35118\",\n            \"Price\": 509.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"STANDARD DOUBLE ROOM (FULL DOUBLE BED) (BED TYPE IS SUBJECT TO AVAILABILITY)\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 45994,\n            \"HotelName\": \"Radisson Blu Hotel, Dubai Media City\",\n            \"StarCategory\": 4,\n            \"Lat\": \"25.09360694885254\",\n            \"Long\": \"55.1555290222168\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/28/d4/28d4efaf7bc54b790f9a30a64298e32028e59625.jpeg\",\n            \"CityName\": \"Dubai Media City, Dubai 211723\",\n            \"Price\": 508.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"PREMIUM ROOM NON-REFUNDABLE\",\n            \"MealName\": \"Room only\"\n        },\n        {\n            \"HotelId\": 1374471,\n            \"HotelName\": \"Premier Inn Dubai Ibn Battuta Mall\",\n            \"StarCategory\": 3,\n            \"Lat\": \"25.046701431274414\",\n            \"Long\": \"55.11880874633789\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/5f/ae/5fae93ad09625100b3c09b9a43a37f43e06a8263.jpeg\",\n            \"CityName\": \"Sheikh Zayed Road, Dubai 390258\",\n            \"Price\": 355.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"STANDARD DOUBLE NON-SMOKING\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 596371,\n            \"HotelName\": \"Shangri-La Dubai\",\n            \"StarCategory\": 5,\n            \"Lat\": \"25.208038330078125\",\n            \"Long\": \"55.27214431762695\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/c7/b6/c7b6fef186ccb0e8c20bf123f0759306efd2e53a.jpeg\",\n            \"CityName\": \"Sheikh Zayed Road, Dubai 0000\",\n            \"Price\": 955.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"DELUXE SEA VIEW KING DOUBLE\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 556967,\n            \"HotelName\": \"JA Ocean View Hotel\",\n            \"StarCategory\": 5,\n            \"Lat\": \"25.07291030883789\",\n            \"Long\": \"55.13026809692383\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/ostrovok/e1/08/e108881b9b5de11a1fd31d73bfd0d8fc21f95003.jpeg\",\n            \"CityName\": \"The Walk Jbr, Dubai 26500\",\n            \"Price\": 910.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"SEA VIEW ROOM (NON REFUNDABLE)\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 591107,\n            \"HotelName\": \"Mercure Gold Hotel Al Mina Road Dubai\",\n            \"StarCategory\": 4,\n            \"Lat\": \"25.24283790588379\",\n            \"Long\": \"55.275787353515625\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/c9/44/c944314f2a48baded069ced416d3e0caffb6eef2.jpeg\",\n            \"CityName\": \"Al Mina Road, Dubai 66431\",\n            \"Price\": 360.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"TWIN/DOUBLE ROOM - SUPERIOR\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 1798557,\n            \"HotelName\": \"LEGOLAND Hotel Dubai\",\n            \"StarCategory\": 4,\n            \"Lat\": \"24.923946380615234\",\n            \"Long\": \"55.00609588623047\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/f4/7a/f47a8dafefa682bd05e0ee25f743cc366ef05bdb.jpeg\",\n            \"CityName\": \"Sheikh Zayed Rd, Dubai 123311\",\n            \"Price\": 1104.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"PIRATE FULLY THEMED ROOM\",\n            \"MealName\": \"Bed and Breakfast\"\n        },\n        {\n            \"HotelId\": 1311488,\n            \"HotelName\": \"The Leela Hotel\",\n            \"StarCategory\": 4,\n            \"Lat\": \"25.252439498901367\",\n            \"Long\": \"55.33562469482422\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/32/8a/328a68c8f0b43cf40a0dd81ef0d995da5b1ed7ec.jpeg\",\n            \"CityName\": \"Garhoud Road, next to Al Ittihad Building, Opposite of Deira City Centre, Dubai  \",\n            \"Price\": 1064.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"EXECUTIVE SUITE, CORNER\",\n            \"MealName\": \"Bed & Breakfast\"\n        },\n        {\n            \"HotelId\": 1500410,\n            \"HotelName\": \"Grand Square Stay Hotel Apartments\",\n            \"StarCategory\": 0,\n            \"Lat\": \"25.113250732421875\",\n            \"Long\": \"55.20180130004883\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/c5/36/c5366112e90a7590d1b9f86afb5888e59199900b.jpeg\",\n            \"CityName\": \"Al Barsha 1, Behind Mall of the Emirates, Dubai 450127\",\n            \"Price\": 437.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"DELUXE DOUBLE ROOM , 1 KING BED\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 405603,\n            \"HotelName\": \"Sofitel Dubai Jumeirah Beach\",\n            \"StarCategory\": 5,\n            \"Lat\": \"25.07552719116211\",\n            \"Long\": \"55.13216781616211\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/bb/c0/bbc035fd9b9274c519ba520e52ad7cf287b22c5e.jpeg\",\n            \"CityName\": \"Jumeirah Beach Residence, The Walk, Dubai 0\",\n            \"Price\": 1111.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"TWIN SUPERIOR\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 580110,\n            \"HotelName\": \"Oaks Ibn Battuta Gate Hotel Dubai\",\n            \"StarCategory\": 5,\n            \"Lat\": \"25.041534423828125\",\n            \"Long\": \"55.11580276489258\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/be/8e/be8e12916762b27e26e9aabb39ece17d7c669427.jpeg\",\n            \"CityName\": \"Off Sheikh Zayed Road, Dubai 211508\",\n            \"Price\": 508.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"PREMIER ROOM\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 738676,\n            \"HotelName\": \"Zain International Hotel\",\n            \"StarCategory\": 3,\n            \"Lat\": \"25.264480590820312\",\n            \"Long\": \"55.317779541015625\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/44/82/448291b0ca290d0a6124af6d5ea37ce37afa2c06.jpeg\",\n            \"CityName\": \"Al Rigga Road, Deira, Dubai 14938\",\n            \"Price\": 258.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"STANDARD TWIN ROOM - NON-REFUNDABLE\",\n            \"MealName\": \"Room only\"\n        },\n        {\n            \"HotelId\": 768478,\n            \"HotelName\": \"TIME Grand Plaza Hotel, Dubai Airport\",\n            \"StarCategory\": 4,\n            \"Lat\": \"25.271709442138672\",\n            \"Long\": \"55.38125228881836\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/6c/d3/6cd34fa58018370368bfcd44bddb3bde47fe2e65.jpeg\",\n            \"CityName\": \"Damascus Road Al Qusais, Dubai 237844\",\n            \"Price\": 383.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"TWIN ROOM - DE LUXE\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 1399163,\n            \"HotelName\": \"MENA Plaza Hotel Albarsha Hotel\",\n            \"StarCategory\": 0,\n            \"Lat\": \"25.113494873046875\",\n            \"Long\": \"55.20211410522461\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/extranet/6e/df/6edf394d6e199d0c8c9c7418f8cbd904d18de999.jpeg\",\n            \"CityName\": \"Street 13 Al Barsha 1, Dubai, Dubai 282464\",\n            \"Price\": 435.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"DELUXE TWIN ROOM - SMOKING\",\n            \"MealName\": \"Room only\"\n        },\n        {\n            \"HotelId\": 702613,\n            \"HotelName\": \"Al Khoory Hotel Apartments\",\n            \"StarCategory\": 0,\n            \"Lat\": \"25.112869262695312\",\n            \"Long\": \"55.19334030151367\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/8c/ee/8cee1efea4fbd953700396f56260790fcbf7e688.jpeg\",\n            \"CityName\": \"Sheikh Zayed Road, Al Barsha, Dubai 6237\",\n            \"Price\": 423.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"STUDIO\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 661553,\n            \"HotelName\": \"Saffron Boutique Hotel\",\n            \"StarCategory\": 4,\n            \"Lat\": \"25.277177810668945\",\n            \"Long\": \"55.31459426879883\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/extranet/c7/61/c76136e3222689fed06ebfa7ba75e5f3ed5c6383.jpeg\",\n            \"CityName\": \"Burj Nahar Intersection, Deira, Al Murar, 24 Street, 82, Dubai 181757\",\n            \"Price\": 254.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"DOUBLE OR TWIN DELUXE\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 86825,\n            \"HotelName\": \"Palace Downtown Hotel\",\n            \"StarCategory\": 5,\n            \"Lat\": \"25.19333839416504\",\n            \"Long\": \"55.27627944946289\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/extranet/52/4b/524baf487208501d03c436fb5638b0f3cfccbee0.jpeg\",\n            \"CityName\": \"Sheikh Mohamed Bin Rashid Boulevard, Downtown Dubai, PO Box 9770, Dubai 9770\",\n            \"Price\": 1979.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"DELUXE LAKE VIEW ROOM\",\n            \"MealName\": \"Room only\"\n        },\n        {\n            \"HotelId\": 667239,\n            \"HotelName\": \"Samaya Hotel Deira\",\n            \"StarCategory\": 4,\n            \"Lat\": \"25.260517120361328\",\n            \"Long\": \"55.318695068359375\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/98/34/98346512b552e4901dcaacf6d13390cc473eee64.jpeg\",\n            \"CityName\": \"Riggat Al Buteen, Deira, Dubai 88449\",\n            \"Price\": 472.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"CLASSIC\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 273122,\n            \"HotelName\": \"Grand Excelsior Hotel Bur Dubai\",\n            \"StarCategory\": 4,\n            \"Lat\": \"25.250572204589844\",\n            \"Long\": \"55.29227066040039\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/13/6c/136c2d5c9ede6a43883e387bf3aa5c76793f890e.jpeg\",\n            \"CityName\": \"Kuwait Road - Bur Dubai, Dubai 121545\",\n            \"Price\": 460.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"DOUBLE DELUXE\",\n            \"MealName\": \"Room Only\"\n        },\n        {\n            \"HotelId\": 659060,\n            \"HotelName\": \"Admiral Plaza Hotel Dubai\",\n            \"StarCategory\": 3,\n            \"Lat\": \"25.260107040405273\",\n            \"Long\": \"55.291351318359375\",\n            \"Slug\": \"\",\n            \"ImagePath\": \"https://cdn.worldota.net/t/x500/content/49/ea/49ea21a9b812839426eb9ee0c95caf666c803817.jpeg\",\n            \"CityName\": \"Khalid Bin Al Waleed Road, Al Nahdha St, Dubai 26888\",\n            \"Price\": 228.0,\n            \"CancellationDate\": \"\",\n            \"RoomName\": \"TWIN/DOUBLE ROOM - SUPERIOR\",\n            \"MealName\": \"Room Only\"\n        }\n    ],\n    \"GUID\": \"c3f7528c-15b1-469f-b632-fa0e6afaaa0a\"\n}"}],"_postman_id":"dfda9e6e-c066-43f0-adeb-052939caa8f8"},{"name":"Get Room List","id":"64f4b77e-2a2a-4361-bbdb-c83dd3952c54","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"CityId\": \"<integer>\",\n  \"Country\": \"<integer>\",\n  \"Rooms\": [\n    {\n      \"Adult\": \"<integer>\",\n      \"Child\": [\n        \"<integer>\",\n        \"<integer>\"\n      ]\n    },\n    {\n      \"Adult\": \"<integer>\",\n      \"Child\": [\n        \"<integer>\",\n        \"<integer>\"\n      ]\n    }\n  ],\n  \"CheckInDate\": \"<string>\",\n  \"CheckOutDate\": \"<string>\",\n  \"Residency\": \"<integer>\",\n  \"HotelId\": \"<integer>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"hotelapisandbox.wholesaletourism.com/api/APIHotel/GetRooms","description":"<p><strong>Explanation of Request Columns:</strong></p>\n<ul>\n<li><p><strong>CityId</strong>: The ID of the city where the hotel is located. Example: <code>41389</code>.</p>\n</li>\n<li><p><strong>Country</strong>: The ID of the country where the city is located. Example: <code>229</code>.</p>\n</li>\n<li><p><strong>Rooms</strong>: An array specifying the room details.</p>\n<ul>\n<li><p><strong>Adult</strong>: The number of adults staying in the room. Example: <code>1</code>.</p>\n</li>\n<li><p><strong>Child</strong>: An array of ages for children staying in the room. Example: <code>[6, 12]</code>.</p>\n</li>\n</ul>\n</li>\n<li><p><strong>CheckInDate</strong>: The date when the stay begins, in the format <code>DD-MMM-YYYY</code>. Example: <code>13-Sep-2024</code>.</p>\n</li>\n<li><p><strong>CheckOutDate</strong>: The date when the stay ends, in the format <code>DD-MMM-YYYY</code>. Example: <code>15-Sep-2024</code>.</p>\n</li>\n<li><p><strong>Residency</strong>: The ID representing the residency status or location. Example: <code>229</code>.</p>\n</li>\n<li><p><strong>HotelId</strong>: The unique identifier for the hotel for which you want to get room details. Example: <code>1618774</code>.</p>\n</li>\n</ul>\n<p><strong>Explanation of Response Columns:</strong></p>\n<p><em><strong>Results</strong></em></p>\n<ul>\n<li><p><strong>MatrixId</strong>: A unique identifier for the room matrix. Example: <code>2</code>.</p>\n</li>\n<li><p><strong>RoomName</strong>: The name or description of the room. Example: <code>SCENE ROOM DOWNTOWN VIEW,1 DOUBLE BED,NONSMOKING</code>.</p>\n</li>\n<li><p><strong>RoomType</strong>: The type of room (if specified). Example: <code>\"\"</code>.</p>\n</li>\n<li><p><strong>Bathroom</strong>: Indicates the number of bathrooms. Example: <code>0</code>.</p>\n</li>\n<li><p><strong>Bedding</strong>: Indicates the type of bedding provided. Example: <code>1</code>.</p>\n</li>\n<li><p><strong>Capacity</strong>: The maximum number of occupants the room can accommodate. Example: <code>0</code>.</p>\n</li>\n<li><p><strong>Sex</strong>: Gender specification for the room, if applicable. Example: <code>0</code>.</p>\n</li>\n<li><p><strong>Class</strong>: The class of the room, if specified. Example: <code>0</code>.</p>\n</li>\n<li><p><strong>Club</strong>: Indicates if the room is part of a club or exclusive area. Example: <code>0</code>.</p>\n</li>\n<li><p><strong>Family</strong>: Indicates if the room is suitable for families. Example: <code>0</code>.</p>\n</li>\n<li><p><strong>Quality</strong>: Quality rating of the room. Example: <code>1</code>.</p>\n</li>\n<li><p><strong>AmenitiesData</strong>: Details about amenities provided in the room. Example: <code>null</code>.</p>\n</li>\n<li><p><strong>Images</strong>: URL or path to images of the room. Example: <code>\"\"</code>.</p>\n</li>\n<li><p><strong>Meals</strong>: An array of meal options associated with the room.</p>\n<ul>\n<li><p><strong>Price</strong>: The price of the room including the specified meal. Example: <code>1269.0</code>.</p>\n</li>\n<li><p><strong>TaxData</strong>: Information about taxes related to the room. Example: <code>null</code>.</p>\n</li>\n<li><p><strong>SupplierBookingCode</strong>: Booking code provided by the supplier. Example: <code>\"\"</code>.</p>\n</li>\n<li><p><strong>FreeCancellationBefore</strong>: Last date for free cancellation. Example: <code>\"\"</code>.</p>\n</li>\n<li><p><strong>MealName</strong>: Description of the meal included. Example: <code>Free valet parking, Free WiFi</code>.</p>\n</li>\n<li><p><strong>RoomId</strong>: Unique identifier for the room with the meal option. Example: <code>33220101</code>.</p>\n</li>\n</ul>\n</li>\n<li><p><strong>Token</strong>: A unique token associated with the request. Example: <code>89ca1c5d-c653-4d0d-a3de-35e487674e89</code>.</p>\n</li>\n<li><p><strong>ChildAges</strong>: Details about the ages of children accommodated. Example: <code>\"\"</code>.</p>\n</li>\n</ul>\n<p><strong>RoomGUID :</strong> Unique Indentifier for Room Request</p>\n","urlObject":{"path":["api","APIHotel","GetRooms"],"host":["hotelapisandbox.wholesaletourism.com"],"query":[],"variable":[]}},"response":[{"id":"71c49513-0f77-4193-a1b7-20750ead1d9d","name":"Get Room List","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"CityId\": 41389,\n    \"Country\": 229,\n    \"Rooms\" : [{\n        \"Adult\": 1\n    }],\n    \"CheckInDate\" : \"01-Dec-2024\",\n    \"CheckOutDate\" : \"02-Dec-2024\",\n    \"Residency\":229,\n    \"HotelId\": 2005889,\n    \"GUID\": \"c3f7528c-15b1-469f-b632-fa0e6afaaa0a\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"hotelapisandbox.travelconvex.com/api/APIHotel/GetRooms"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Wed, 11 Sep 2024 11:17:58 GMT"},{"key":"Content-Length","value":"4672"}],"cookie":[],"responseTime":null,"body":"{\n    \"RoomGUID\": \"abc1a7c8-33aa-47d6-8167-165d60fb7290\",\n    \"Results\": [\n        {\n            \"MatrixId\": 2,\n            \"RoomName\": \"STANDARD ROOM TWIN\",\n            \"RoomType\": \"\",\n            \"Bathroom\": \"0\",\n            \"Bedding\": \"1\",\n            \"Capacity\": \"0\",\n            \"Sex\": \"0\",\n            \"Class\": \"0\",\n            \"Club\": \"0\",\n            \"Family\": \"0\",\n            \"Quality\": \"1\",\n            \"AmenitiesData\": null,\n            \"Images\": \"\",\n            \"Meals\": [\n                {\n                    \"Price\": 490.0,\n                    \"TaxData\": null,\n                    \"SupplierBookingCode\": \"c3f7528c-15b1-469f-b632-fa0e6afaaa0a~~~#efc86bef-7b8c-493d-84ed-2ac0531a8a17~~~#~~~#36900501~~~#2~~~#229_41389_01-Dec-2024_02-Dec-2024_229_Room1A~~~#0\",\n                    \"FreeCancellationBefore\": \"\",\n                    \"MealName\": \"ROOM ONLY\",\n                    \"RoomId\": \"36900501\",\n                    \"Token\": \"efc86bef-7b8c-493d-84ed-2ac0531a8a17~2326237\"\n                },\n                {\n                    \"Price\": 535.0,\n                    \"TaxData\": null,\n                    \"SupplierBookingCode\": \"c3f7528c-15b1-469f-b632-fa0e6afaaa0a~~~#efc86bef-7b8c-493d-84ed-2ac0531a8a17~~~#~~~#36820201~~~#2~~~#229_41389_01-Dec-2024_02-Dec-2024_229_Room1A~~~#0\",\n                    \"FreeCancellationBefore\": \"\",\n                    \"MealName\": \"Room Only\",\n                    \"RoomId\": \"36820201\",\n                    \"Token\": \"efc86bef-7b8c-493d-84ed-2ac0531a8a17~2326237\"\n                },\n                {\n                    \"Price\": 577.0,\n                    \"TaxData\": null,\n                    \"SupplierBookingCode\": \"c3f7528c-15b1-469f-b632-fa0e6afaaa0a~~~#efc86bef-7b8c-493d-84ed-2ac0531a8a17~~~#~~~#36820301~~~#2~~~#229_41389_01-Dec-2024_02-Dec-2024_229_Room1A~~~#0\",\n                    \"FreeCancellationBefore\": \"\",\n                    \"MealName\": \"Breakfast\",\n                    \"RoomId\": \"36820301\",\n                    \"Token\": \"efc86bef-7b8c-493d-84ed-2ac0531a8a17~2326237\"\n                }\n            ],\n            \"Token\": \"efc86bef-7b8c-493d-84ed-2ac0531a8a17~2326237\",\n            \"ChildAges\": \"\",\n            \"RoomIndex\": 0\n        },\n        {\n            \"MatrixId\": 2,\n            \"RoomName\": \"STANDARD ROOM KING\",\n            \"RoomType\": \"\",\n            \"Bathroom\": \"0\",\n            \"Bedding\": \"1\",\n            \"Capacity\": \"0\",\n            \"Sex\": \"0\",\n            \"Class\": \"0\",\n            \"Club\": \"0\",\n            \"Family\": \"0\",\n            \"Quality\": \"1\",\n            \"AmenitiesData\": null,\n            \"Images\": \"\",\n            \"Meals\": [\n                {\n                    \"Price\": 490.0,\n                    \"TaxData\": null,\n                    \"SupplierBookingCode\": \"c3f7528c-15b1-469f-b632-fa0e6afaaa0a~~~#efc86bef-7b8c-493d-84ed-2ac0531a8a17~~~#~~~#36900401~~~#2~~~#229_41389_01-Dec-2024_02-Dec-2024_229_Room1A~~~#0\",\n                    \"FreeCancellationBefore\": \"\",\n                    \"MealName\": \"ROOM ONLY\",\n                    \"RoomId\": \"36900401\",\n                    \"Token\": \"efc86bef-7b8c-493d-84ed-2ac0531a8a17~2326237\"\n                },\n                {\n                    \"Price\": 535.0,\n                    \"TaxData\": null,\n                    \"SupplierBookingCode\": \"c3f7528c-15b1-469f-b632-fa0e6afaaa0a~~~#efc86bef-7b8c-493d-84ed-2ac0531a8a17~~~#~~~#36820101~~~#2~~~#229_41389_01-Dec-2024_02-Dec-2024_229_Room1A~~~#0\",\n                    \"FreeCancellationBefore\": \"\",\n                    \"MealName\": \"Room Only\",\n                    \"RoomId\": \"36820101\",\n                    \"Token\": \"efc86bef-7b8c-493d-84ed-2ac0531a8a17~2326237\"\n                },\n                {\n                    \"Price\": 571.0,\n                    \"TaxData\": null,\n                    \"SupplierBookingCode\": \"c3f7528c-15b1-469f-b632-fa0e6afaaa0a~~~#efc86bef-7b8c-493d-84ed-2ac0531a8a17~~~#~~~#36900301~~~#2~~~#229_41389_01-Dec-2024_02-Dec-2024_229_Room1A~~~#0\",\n                    \"FreeCancellationBefore\": \"\",\n                    \"MealName\": \"BED AND BREAKFAST\",\n                    \"RoomId\": \"36900301\",\n                    \"Token\": \"efc86bef-7b8c-493d-84ed-2ac0531a8a17~2326237\"\n                }\n            ],\n            \"Token\": \"efc86bef-7b8c-493d-84ed-2ac0531a8a17~2326237\",\n            \"ChildAges\": \"\",\n            \"RoomIndex\": 0\n        },\n        {\n            \"MatrixId\": 2,\n            \"RoomName\": \"STANDARD ROOM\",\n            \"RoomType\": \"\",\n            \"Bathroom\": \"0\",\n            \"Bedding\": \"1\",\n            \"Capacity\": \"0\",\n            \"Sex\": \"0\",\n            \"Class\": \"0\",\n            \"Club\": \"0\",\n            \"Family\": \"0\",\n            \"Quality\": \"1\",\n            \"AmenitiesData\": null,\n            \"Images\": \"\",\n            \"Meals\": [\n                {\n                    \"Price\": 506.0,\n                    \"TaxData\": null,\n                    \"SupplierBookingCode\": \"c3f7528c-15b1-469f-b632-fa0e6afaaa0a~~~#efc86bef-7b8c-493d-84ed-2ac0531a8a17~~~#~~~#36900601~~~#2~~~#229_41389_01-Dec-2024_02-Dec-2024_229_Room1A~~~#0\",\n                    \"FreeCancellationBefore\": \"\",\n                    \"MealName\": \"Room only\",\n                    \"RoomId\": \"36900601\",\n                    \"Token\": \"efc86bef-7b8c-493d-84ed-2ac0531a8a17~2326237\"\n                }\n            ],\n            \"Token\": \"efc86bef-7b8c-493d-84ed-2ac0531a8a17~2326237\",\n            \"ChildAges\": \"\",\n            \"RoomIndex\": 0\n        },\n        {\n            \"MatrixId\": 2,\n            \"RoomName\": \"STANDARD ROOM KING NON REFUNDABLE\",\n            \"RoomType\": \"\",\n            \"Bathroom\": \"0\",\n            \"Bedding\": \"1\",\n            \"Capacity\": \"0\",\n            \"Sex\": \"0\",\n            \"Class\": \"0\",\n            \"Club\": \"0\",\n            \"Family\": \"0\",\n            \"Quality\": \"1\",\n            \"AmenitiesData\": null,\n            \"Images\": \"\",\n            \"Meals\": [\n                {\n                    \"Price\": 516.0,\n                    \"TaxData\": null,\n                    \"SupplierBookingCode\": \"c3f7528c-15b1-469f-b632-fa0e6afaaa0a~~~#a52ebcf9-b317-4d55-a243-bfb790a87cd5~~~#~~~#2140401~~~#2~~~#229_41389_01-Dec-2024_02-Dec-2024_229_Room1A~~~#0\",\n                    \"FreeCancellationBefore\": \"\",\n                    \"MealName\": \"Room Only\",\n                    \"RoomId\": \"2140401\",\n                    \"Token\": \"a52ebcf9-b317-4d55-a243-bfb790a87cd5~2341550\"\n                },\n                {\n                    \"Price\": 559.0,\n                    \"TaxData\": null,\n                    \"SupplierBookingCode\": \"c3f7528c-15b1-469f-b632-fa0e6afaaa0a~~~#a52ebcf9-b317-4d55-a243-bfb790a87cd5~~~#~~~#2140601~~~#2~~~#229_41389_01-Dec-2024_02-Dec-2024_229_Room1A~~~#0\",\n                    \"FreeCancellationBefore\": \"\",\n                    \"MealName\": \"Bed And Breakfast\",\n                    \"RoomId\": \"2140601\",\n                    \"Token\": \"a52ebcf9-b317-4d55-a243-bfb790a87cd5~2341550\"\n                }\n            ],\n            \"Token\": \"a52ebcf9-b317-4d55-a243-bfb790a87cd5~2341550\",\n            \"ChildAges\": \"\",\n            \"RoomIndex\": 0\n        },\n        {\n            \"MatrixId\": 2,\n            \"RoomName\": \"STANDARD ROOM TWIN NON REFUNDABLE\",\n            \"RoomType\": \"\",\n            \"Bathroom\": \"0\",\n            \"Bedding\": \"1\",\n            \"Capacity\": \"0\",\n            \"Sex\": \"0\",\n            \"Class\": \"0\",\n            \"Club\": \"0\",\n            \"Family\": \"0\",\n            \"Quality\": \"1\",\n            \"AmenitiesData\": null,\n            \"Images\": \"\",\n            \"Meals\": [\n                {\n                    \"Price\": 516.0,\n                    \"TaxData\": null,\n                    \"SupplierBookingCode\": \"c3f7528c-15b1-469f-b632-fa0e6afaaa0a~~~#a52ebcf9-b317-4d55-a243-bfb790a87cd5~~~#~~~#2140501~~~#2~~~#229_41389_01-Dec-2024_02-Dec-2024_229_Room1A~~~#0\",\n                    \"FreeCancellationBefore\": \"\",\n                    \"MealName\": \"Room Only\",\n                    \"RoomId\": \"2140501\",\n                    \"Token\": \"a52ebcf9-b317-4d55-a243-bfb790a87cd5~2341550\"\n                }\n            ],\n            \"Token\": \"a52ebcf9-b317-4d55-a243-bfb790a87cd5~2341550\",\n            \"ChildAges\": \"\",\n            \"RoomIndex\": 0\n        },\n        {\n            \"MatrixId\": 2,\n            \"RoomName\": \"STANDARD ROOM TWIN NON REFUNDABLE\",\n            \"RoomType\": \"\",\n            \"Bathroom\": \"0\",\n            \"Bedding\": \"1\",\n            \"Capacity\": \"0\",\n            \"Sex\": \"0\",\n            \"Class\": \"0\",\n            \"Club\": \"0\",\n            \"Family\": \"0\",\n            \"Quality\": \"1\",\n            \"AmenitiesData\": null,\n            \"Images\": \"\",\n            \"Meals\": [\n                {\n                    \"Price\": 523.0,\n                    \"TaxData\": null,\n                    \"SupplierBookingCode\": \"c3f7528c-15b1-469f-b632-fa0e6afaaa0a~~~#efc86bef-7b8c-493d-84ed-2ac0531a8a17~~~#~~~#36820401~~~#2~~~#229_41389_01-Dec-2024_02-Dec-2024_229_Room1A~~~#0\",\n                    \"FreeCancellationBefore\": \"\",\n                    \"MealName\": \"Room Only\",\n                    \"RoomId\": \"36820401\",\n                    \"Token\": \"efc86bef-7b8c-493d-84ed-2ac0531a8a17~2326237\"\n                },\n                {\n                    \"Price\": 566.0,\n                    \"TaxData\": null,\n                    \"SupplierBookingCode\": \"c3f7528c-15b1-469f-b632-fa0e6afaaa0a~~~#efc86bef-7b8c-493d-84ed-2ac0531a8a17~~~#~~~#36820601~~~#2~~~#229_41389_01-Dec-2024_02-Dec-2024_229_Room1A~~~#0\",\n                    \"FreeCancellationBefore\": \"\",\n                    \"MealName\": \"Breakfast\",\n                    \"RoomId\": \"36820601\",\n                    \"Token\": \"efc86bef-7b8c-493d-84ed-2ac0531a8a17~2326237\"\n                }\n            ],\n            \"Token\": \"efc86bef-7b8c-493d-84ed-2ac0531a8a17~2326237\",\n            \"ChildAges\": \"\",\n            \"RoomIndex\": 0\n        },\n        {\n            \"MatrixId\": 2,\n            \"RoomName\": \"STANDARD ROOM KING NON REFUNDABLE\",\n            \"RoomType\": \"\",\n            \"Bathroom\": \"0\",\n            \"Bedding\": \"1\",\n            \"Capacity\": \"0\",\n            \"Sex\": \"0\",\n            \"Class\": \"0\",\n            \"Club\": \"0\",\n            \"Family\": \"0\",\n            \"Quality\": \"1\",\n            \"AmenitiesData\": null,\n            \"Images\": \"\",\n            \"Meals\": [\n                {\n                    \"Price\": 523.0,\n                    \"TaxData\": null,\n                    \"SupplierBookingCode\": \"c3f7528c-15b1-469f-b632-fa0e6afaaa0a~~~#efc86bef-7b8c-493d-84ed-2ac0531a8a17~~~#~~~#36820501~~~#2~~~#229_41389_01-Dec-2024_02-Dec-2024_229_Room1A~~~#0\",\n                    \"FreeCancellationBefore\": \"\",\n                    \"MealName\": \"Room Only\",\n                    \"RoomId\": \"36820501\",\n                    \"Token\": \"efc86bef-7b8c-493d-84ed-2ac0531a8a17~2326237\"\n                }\n            ],\n            \"Token\": \"efc86bef-7b8c-493d-84ed-2ac0531a8a17~2326237\",\n            \"ChildAges\": \"\",\n            \"RoomIndex\": 0\n        },\n        {\n            \"MatrixId\": 2,\n            \"RoomName\": \"STANDARD ROOM TWIN\",\n            \"RoomType\": \"\",\n            \"Bathroom\": \"0\",\n            \"Bedding\": \"1\",\n            \"Capacity\": \"0\",\n            \"Sex\": \"0\",\n            \"Class\": \"0\",\n            \"Club\": \"0\",\n            \"Family\": \"0\",\n            \"Quality\": \"1\",\n            \"AmenitiesData\": null,\n            \"Images\": \"\",\n            \"Meals\": [\n                {\n                    \"Price\": 528.0,\n                    \"TaxData\": null,\n                    \"SupplierBookingCode\": \"c3f7528c-15b1-469f-b632-fa0e6afaaa0a~~~#a52ebcf9-b317-4d55-a243-bfb790a87cd5~~~#~~~#2140201~~~#2~~~#229_41389_01-Dec-2024_02-Dec-2024_229_Room1A~~~#0\",\n                    \"FreeCancellationBefore\": \"\",\n                    \"MealName\": \"Room Only\",\n                    \"RoomId\": \"2140201\",\n                    \"Token\": \"a52ebcf9-b317-4d55-a243-bfb790a87cd5~2341550\"\n                }\n            ],\n            \"Token\": \"a52ebcf9-b317-4d55-a243-bfb790a87cd5~2341550\",\n            \"ChildAges\": \"\",\n            \"RoomIndex\": 0\n        },\n        {\n            \"MatrixId\": 2,\n            \"RoomName\": \"STANDARD ROOM KING\",\n            \"RoomType\": \"\",\n            \"Bathroom\": \"0\",\n            \"Bedding\": \"1\",\n            \"Capacity\": \"0\",\n            \"Sex\": \"0\",\n            \"Class\": \"0\",\n            \"Club\": \"0\",\n            \"Family\": \"0\",\n            \"Quality\": \"1\",\n            \"AmenitiesData\": null,\n            \"Images\": \"\",\n            \"Meals\": [\n                {\n                    \"Price\": 528.0,\n                    \"TaxData\": null,\n                    \"SupplierBookingCode\": \"c3f7528c-15b1-469f-b632-fa0e6afaaa0a~~~#a52ebcf9-b317-4d55-a243-bfb790a87cd5~~~#~~~#2140101~~~#2~~~#229_41389_01-Dec-2024_02-Dec-2024_229_Room1A~~~#0\",\n                    \"FreeCancellationBefore\": \"\",\n                    \"MealName\": \"Room Only\",\n                    \"RoomId\": \"2140101\",\n                    \"Token\": \"a52ebcf9-b317-4d55-a243-bfb790a87cd5~2341550\"\n                },\n                {\n                    \"Price\": 569.0,\n                    \"TaxData\": null,\n                    \"SupplierBookingCode\": \"c3f7528c-15b1-469f-b632-fa0e6afaaa0a~~~#a52ebcf9-b317-4d55-a243-bfb790a87cd5~~~#~~~#2140301~~~#2~~~#229_41389_01-Dec-2024_02-Dec-2024_229_Room1A~~~#0\",\n                    \"FreeCancellationBefore\": \"\",\n                    \"MealName\": \"Bed And Breakfast\",\n                    \"RoomId\": \"2140301\",\n                    \"Token\": \"a52ebcf9-b317-4d55-a243-bfb790a87cd5~2341550\"\n                }\n            ],\n            \"Token\": \"a52ebcf9-b317-4d55-a243-bfb790a87cd5~2341550\",\n            \"ChildAges\": \"\",\n            \"RoomIndex\": 0\n        }\n    ]\n}"}],"_postman_id":"64f4b77e-2a2a-4361-bbdb-c83dd3952c54"},{"name":"Price Check","id":"9a010b1d-606c-4816-9412-f65b28f61f2e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"Type\": \"Hotel\",\n    \"ServiceName\":\"Ibis Styles Dubai Deira\",\n    \"ServiceId\":2005889,\n    \"data\":[{\n        \"SupplierBookingCode\":\"c3f7528c-15b1-469f-b632-fa0e6afaaa0a~~~#efc86bef-7b8c-493d-84ed-2ac0531a8a17~~~#~~~#36900501~~~#2~~~#229_41389_01-Dec-2024_02-Dec-2024_229_Room1A~~~#0\",\n        \"RoomGUID\":\"abc1a7c8-33aa-47d6-8167-165d60fb7290\"\n    }]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"hotelapisandbox.wholesaletourism.com/api/APIHotel/PriceRecheck","urlObject":{"path":["api","APIHotel","PriceRecheck"],"host":["hotelapisandbox.wholesaletourism.com"],"query":[],"variable":[]}},"response":[{"id":"2707c792-2c5e-4e0d-ae7a-27e062878fb4","name":"Price Check","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"Type\": \"Hotel\",\n    \"ServiceName\":\"Ibis Styles Dubai Deira\",\n    \"ServiceId\":2005889,\n    \"data\":[{\n        \"SupplierBookingCode\":\"c3f7528c-15b1-469f-b632-fa0e6afaaa0a~~~#efc86bef-7b8c-493d-84ed-2ac0531a8a17~~~#~~~#36900501~~~#2~~~#229_41389_01-Dec-2024_02-Dec-2024_229_Room1A~~~#0\",\n        \"RoomGUID\":\"abc1a7c8-33aa-47d6-8167-165d60fb7290\"\n    }]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"hotelapisandbox.travelconvex.com/api/APIHotel/PriceRecheck"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Wed, 11 Sep 2024 11:17:58 GMT"},{"key":"Content-Length","value":"4672"}],"cookie":[],"responseTime":null,"body":"{\n    \"Status\": 1,\n    \"Message\": \"Hotel is available for booking.\",\n    \"BookingGUID\": \"1AA85AB0-6DE8-493C-B498-9478FA15E48A\",\n    \"Price\": 490.0\n}"}],"_postman_id":"9a010b1d-606c-4816-9412-f65b28f61f2e"},{"name":"Create Booking","id":"17bd3d6b-12e7-4a01-a91c-0fbf30c033ac","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"BookingGUID\": \"1AA85AB0-6DE8-493C-B498-9478FA15E48A\",\n    \"Rooms\":\n    [\n        {\n          \"Passengers\":[\n               {\n                   \"FirstName\":\"Karan\",\n                   \"LastName\":\"Wadhwani\",\n                   \"is_child\":false,\n                   \"DOB\":\"\",\n                   \"Gender\":\"Mr.\"\n               }\n          ]       \n        }\n    ],\n    \"CountryCode\":\"91\",\n    \"MobileNumber\":\"8890556688\",\n    \"Email\":\"itskaranwadhwani@gmail.com\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"hotelapisandbox.wholesaletourism.com/api/APIHotel/ProcessBooking","urlObject":{"path":["api","APIHotel","ProcessBooking"],"host":["hotelapisandbox.wholesaletourism.com"],"query":[],"variable":[]}},"response":[{"id":"6e10053c-c13c-4f83-95a9-983e34ea5c74","name":"CreateBooking","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"BookingGUID\": \"1AA85AB0-6DE8-493C-B498-9478FA15E48A\",\n    \"Rooms\":\n    [\n        {\n          \"Passengers\":[\n               {\n                   \"FirstName\":\"Karan\",\n                   \"LastName\":\"Wadhwani\",\n                   \"is_child\":false,\n                   \"DOB\":\"\",\n                   \"Gender\":\"Mr.\"\n               }\n          ]       \n        }\n    ],\n    \"CountryCode\":\"91\",\n    \"MobileNumber\":\"8890556688\",\n    \"Email\":\"itskaranwadhwani@gmail.com\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"hotelapisandbox.travelconvex.com/api/APIHotel/ProcessBooking"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Wed, 11 Sep 2024 11:17:58 GMT"},{"key":"Content-Length","value":"4672"}],"cookie":[],"responseTime":null,"body":"{\n    \"Status\": 1,\n    \"Message\": \"Booking Created\",\n    \"RefrenceNo\": \"WST1120240000030\"\n}"}],"_postman_id":"17bd3d6b-12e7-4a01-a91c-0fbf30c033ac"},{"name":"Get Booking","id":"3113da18-b4bf-44c7-8496-3d44b9993007","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"RefrenceNo\": \"WST1120240000030\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"hotelapisandbox.wholesaletourism.com/api/APIHotel/GetBookingData","urlObject":{"path":["api","APIHotel","GetBookingData"],"host":["hotelapisandbox.wholesaletourism.com"],"query":[],"variable":[]}},"response":[{"id":"d01ca9a1-18d7-4cb6-9024-72b950d5b9e7","name":"Get Booking","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"RefrenceNo\": \"WST1120240000030\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"hotelapisandbox.travelconvex.com/api/APIHotel/GetBookingData"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Wed, 11 Sep 2024 11:17:58 GMT"},{"key":"Content-Length","value":"4672"}],"cookie":[],"responseTime":null,"body":"[\n    [\n        {\n            \"BookingRef\": \"WST1120240000030\",\n            \"AgentReference\": \"Direct Booking\",\n            \"Name\": \"Mr. Karan Wadhwani\",\n            \"Country\": \"United Arab Emirates\",\n            \"MobileNumber\": \"+918890556688\",\n            \"Email\": \"itskaranwadhwani@gmail.com\",\n            \"BookingTime\": \"27 Nov 2024\"\n        }\n    ],\n    [\n        {\n            \"ServiceName\": \"ibis Styles Dubai Deira\",\n            \"CountryName\": \"United Arab Emirates\",\n            \"CityName\": \"Dubai\",\n            \"CheckInDate\": \"01-Dec-2024\",\n            \"CheckOutDate\": \"02-Dec-2024\",\n            \"SupplierConfimrationTime\": \"27 Nov 2024\",\n            \"Address\": \"Maitha Plaza, Al Khaleej Road 110, Deira, Dubai 15472\",\n            \"FinalPrice\": 490.000000\n        }\n    ],\n    [\n        {\n            \"RoomName\": \"STANDARD ROOM TWIN\",\n            \"MealTypeName\": \"ROOM ONLY\",\n            \"NoOfAdult\": 1,\n            \"NoOfChild\": 0,\n            \"AdultExtraBed\": 0,\n            \"ChildExtraBed\": 0,\n            \"ChildNoBed\": 0,\n            \"SupplierRef\": \"A1232131.\",\n            \"ExtraDetails\": \"Compulsary to present in voucher.\",\n            \"BookingStatus\": \"Booked\"\n        }\n    ]\n]"}],"_postman_id":"3113da18-b4bf-44c7-8496-3d44b9993007"}],"variable":[{"key":"baseUrl","value":"hotelapisandbox.wholesaletourism.com"}]}