> For the complete documentation index, see [llms.txt](https://apidocs.mytravellerschoice.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://apidocs.mytravellerschoice.com/hotel-content-api/content-api/hotels-master/hotel-detail-api.md).

# Hotel detail API

Returns all the details associated to a single Hotel or a group of Hotels.

## hotels API

<mark style="color:green;">`GET`</mark> `/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**

{% tabs %}
{% tab title="200" %}

```json
{
    "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": "reservations@samplehotel.com",
                            "phone": "+971424561130"
                        }
                    ]
                },
                "isAvailable": true
            }
        ]
    }
}
```

{% endtab %}
{% endtabs %}
