Skip to main content

Hotel

Hotel information with flattened structure

codestring

Unique hotel identifier

hotelNamestring

Name of the hotel

descriptions object[]

Hotel descriptions in different languages

  • Array [
  • textstring

    Description text content

    languagestring

    ISO 639-1 language code

  • ]
  • categorystring

    Hotel category code

    propertyTypestring

    Type of property (e.g., hotel, apartment, resort)

    chainCodestring

    Hotel chain identifier

    boardCodesstring[]

    Available meal plan codes

    mandatoryFee object[]

    Mandatory fees or charges

  • Array [
  • namestring

    Fee name

    textstring

    Fee description

    pricenumber<float>

    Fee amount

    includedboolean

    Whether the fee is included in the price

  • ]
  • rooms object[]

    Available room types

  • Array [
  • codestring

    Room code

    roomCodestring

    Provider-specific room code

    namestring

    Room name

    maxOccupancyinteger

    Maximum occupancy

  • ]
  • amenities object[]

    Amenities available at the hotel

  • Array [
  • codestringrequired

    Amenity code identifier

    namestringnullable

    Amenity name

    typestringnullable

    Amenity type/category

    descriptionstringnullable

    Amenity description

  • ]
  • media object[]

    Hotel media (images, videos)

  • Array [
  • urlstringrequired

    Media URL

    mediaTypestringnullable

    Type of media (image, video)

    captionstringnullable

    Media caption

    widthintegernullable

    Media width in pixels

    heightintegernullable

    Media height in pixels

    orderIndexintegernullable

    Display order

    isPrimarybooleannullable

    Whether this is the primary media

  • ]
  • location object

    Hotel location and address

    addressstringnullable

    Primary address line

    line2stringnullable

    Secondary address line (for backward compatibility)

    citystringnullable

    City name

    statestringnullable

    State or province

    countryCodestringnullable

    ISO 3166-1 alpha-2 country code

    postalCodestringnullable

    Postal or ZIP code

    latitudenumber<float>nullable

    Latitude coordinate

    longitudenumber<float>nullable

    Longitude coordinate

    contact object

    Hotel contact information

    phonestringnullable

    Phone number

    emailstringnullable

    Email address

    websitestringnullable

    Website URL

    faxstringnullable

    Fax number

    providerCodestring

    Provider identifier

    connectionCodesstring[]

    List of connection codes where this hotel is available

    providerHotelCodestring

    Provider-specific hotel code

    exclusiveDealboolean

    Whether this hotel has exclusive deals

    starRatinginteger

    Hotel star rating (1-5)

    destinationCodestring

    Destination code where the hotel is located

    rankingnumber<float>

    Hotel ranking or rating score

    createdAtstring<date-time>

    Record creation timestamp

    updatedAtstring<date-time>

    Record last update timestamp

    Hotel
    {
    "code": "string",
    "hotelName": "string",
    "descriptions": [
    {
    "text": "string",
    "language": "string"
    }
    ],
    "category": "string",
    "propertyType": "string",
    "chainCode": "string",
    "boardCodes": [
    "string"
    ],
    "mandatoryFee": [
    {
    "name": "string",
    "text": "string",
    "price": 0,
    "included": true
    }
    ],
    "rooms": [
    {
    "code": "string",
    "roomCode": "string",
    "name": "string",
    "maxOccupancy": 0
    }
    ],
    "amenities": [
    {
    "code": "string",
    "name": "string",
    "type": "string",
    "description": "string"
    }
    ],
    "media": [
    {
    "url": "string",
    "mediaType": "string",
    "caption": "string",
    "width": 0,
    "height": 0,
    "orderIndex": 0,
    "isPrimary": true
    }
    ],
    "location": {
    "address": "string",
    "line2": "string",
    "city": "string",
    "state": "string",
    "countryCode": "string",
    "postalCode": "string",
    "latitude": 0,
    "longitude": 0
    },
    "contact": {
    "phone": "string",
    "email": "string",
    "website": "string",
    "fax": "string"
    },
    "providerCode": "string",
    "connectionCodes": [
    "string"
    ],
    "providerHotelCode": "string",
    "exclusiveDeal": true,
    "starRating": 0,
    "destinationCode": "string",
    "ranking": 0,
    "createdAt": "2024-07-29T15:51:28.071Z",
    "updatedAt": "2024-07-29T15:51:28.071Z"
    }