Hotel detail API
Returns all the details associated to a single Hotel or a group of Hotels.
hotels API
GET
/api/v1/hotel/content-api/hotels/details
Headers
Name
Value
Content-Type
application/json
Authorization
Bearer <Access token>
Accept-Encoding
gzip
Query Params
Name
Type
Sample
hotelIds
string
[101972, 164507]
Response
{
"success": true,
"data": {
"hotels": [
{
"hotelId": 101972,
"hotelName": "Hayth Plaza",
"address": {
"addressDetail": "Dubai"
},
"country": {
"countryId": 124,
"isoCode": "AE"
},
"stateId": 10012,
"cityId": 10152,
"areaId": 10133,
"coordinates": {
"latitude": "534432534534",
"longitude": "34534563465"
},
"hotelChainId": 10113,
"accommodationTypeId": 10229,
"starCategory": "5",
"description": "sample description of the hotel",
"website": "hayathplaz.com",
"roomsCount": 56,
"floorsCount": 79,
"carParkingSlots": 56,
"vervotechId": 41516489,
"images": [
{
"path": "https://sample.com/public/images/hotels/images-1682344449796-852326978.jpg"
},
{
"path": "https://sample.com/public/images/hotels/images-1682344449798-644810702.jpg"
}
],
"boardTypes": [
{
"boardTypeId": 100023
},
{
"boardTypeId": 100035
},
{
"boardTypeId": 100007
},
{
"boardTypeId": 100021
}
],
"checkInTime": "01:04",
"checkOutTime": "02:01",
"amenities": [
{
"amenityId": 100288,
"amenityGroupId": 100015,
"isPaid": false
},
{
"amenityId": 100043,
"amenityGroupId": 100015,
"isPaid": false
},
{
"amenityId": 100321,
"amenityGroupId": 100015,
"isPaid": true
}
],
"bars": [
{
"name":"Bar name",
"barType": "Indoor",
"fromTime":"02:00",
"toTime": "17:00"
}
],
"restaurants": [
{
"name":"restuarant name",
"cuisine":"International, Arabic",
"fromTime":"02:00",
"toTime":"23:00"
}
],
"faqs": [
{
"question":"",
"answer":""
}
],
"contacts": {
"hotelContacts": [
{
"email": "[email protected]",
"phone": "+971424561130"
}
]
},
"isAvailable": true
}
]
}
}
Last updated