Hotels API

Provides details on the hotels currently available in the TCTT portfolio. This information includes key data for all existing hotels in the system.

hotels API

GET /api/v1/hotel/content-api/hotels

Headers

Name
Value

Content-Type

application/json

Authorization

Bearer <Access token>

Accept-Encoding

gzip

Query Params

Name
Type
Description

syncId

string

<syncId>

Response

{
    "success": true,
    "data": {
        "syncId": "7074ef8d24239be075d1ff012ad64aa28c",
        "total": 1500000,
        "from": 1,
        "to": 1000,
        "hotels": [
            {
                "hotelId": 101972,
                "hotelName": "Hayth Plaza",
                "address": {
                    "addressDetail": "Dubai"
                },
                "country": {
                    "countryId": 124,
                    "isoCode": "AE"
                },
                "stateId": 10021,
                "cityId": 10053,
                "areaId": 10432,
                "coordinates": {
                    "latitude": "534432534534",
                    "longitude": "34534563465"
                },
                "hotelChainId": 1071,
                "accommodationTypeId": 10049,
                "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": "+9714209130"
                        }
                    ]
                },
                "isAvailable": true
            }
        ]
    }
}

Last updated