Base URL
https://api.sandbox.cornleth.com/api

All API requests require authentication using X-API-Key and X-API-Secret headers.

API Flow

Search Hotels
(POST /search/hotels)
➡️
Check Availability
(POST /availability)
➡️
Validate Offer
(POST /validate-offer)
➡️
Booking Confirmation
(POST /booking-confirm)
➡️
Booking Management
(List/Cancel)

Endpoints

Search hotels within a geolocation radius.

Headers
{
  "X-API-Key": "your-key",
  "X-API-Secret": "your-secret"
}
Request Body

Example 1: With Children (includes paxes)

{
  "geolocation": {
    "latitude": 41.01091112,
    "longitude": 28.9634068,
    "radius": 10
  },
  "checkIn": "2025-06-15",
  "checkOut": "2025-06-20",
  "occupancies": [
    {
      "rooms": 1,
      "adults": 2,
      "children": 1,
      "paxes": [
        {
          "type": "CH",
          "age": 8
        }
      ]
    }
  ],
  "page": 1,
  "perPage": 10,
  "sourceMarket": "DE"
}

Example 2: Without Children (no paxes)

{
  "geolocation": {
    "latitude": 41.01091112,
    "longitude": 28.9634068,
    "radius": 10
  },
  "checkIn": "2025-06-15",
  "checkOut": "2025-06-20",
  "occupancies": [
    {
      "rooms": 1,
      "adults": 2,
      "children": 0
    }
  ],
  "page": 1,
  "perPage": 10,
  "sourceMarket": "DE"
}
Parameters
Parameter Type Required Description
geolocation.latitude float Yes Latitude coordinate (-90 to 90)
geolocation.longitude float Yes Longitude coordinate (-180 to 180)
geolocation.radius integer Yes Search radius in kilometers (1-10)
checkIn string Yes Check-in date (YYYY-MM-DD)
checkOut string Yes Check-out date (YYYY-MM-DD), must be after checkIn
occupancies array Yes Detailed occupancy structure
occupancies[].rooms integer Yes Number of rooms for this occupancy
occupancies[].adults integer Yes Number of adults for this occupancy
occupancies[].children integer Yes Number of children for this occupancy
occupancies[].paxes array No Required only if children > 0. Contains child details
occupancies[].paxes[].type string Yes Must be "CH" for children
occupancies[].paxes[].age integer Yes Age of the child (0-17)
adults integer Yes Number of adults
children integer No Number of children (alternative to occupancies)
page integer No Page number for pagination (default: 1)
perPage integer No Number of items per page (1-100, default: 15)
sourceMarket string No Source market code (e.g., "DE", "TR", "ES")

Note: You can use either the occupancies format (recommended) or the simple adults/children/rooms format. When using occupancies, the paxes array is only required when children > 0.

Response
{
  "searchParameters": {
    "latitude": 41.01091112,
    "longitude": 28.9634068,
    "radius": 10
  },
  "pagination": {
    "total": 1,
    "count": 10,
    "perPage": 10,
    "currentPage": 1,
    "totalPages": 1,
    "hasMore": false
  },
  "data": [
    {
      "id": 163188,
      "name": "Edition Old City Hotel",
      "slug": "edition-old-city-hotel",
      "address": "Darphane Sk, 1",
      "coordinates": {
        "latitude": 41.00912905,
        "longitude": 28.96281863
      },
      "distance": 0.2,
      "check_in": "2025-06-15",
      "check_out": "2025-06-20",
      "rooms": [
        {
          "code": "DBL.KG",
          "name": "ECONOMY KİNG ROOM",
          "rates": [
            {
              "net": 334,
              "allotment": 1,
              "boardCode": "BB",
              "boardName": "BED AND BREAKFAST",
              "cancellationPolicies": [
                {
                  "amount": 66.8,
                  "from": "2025-06-12T23:59:00+03:00"
                },
                {
                  "amount": 334,
                  "from": "2025-06-13T23:59:00+03:00"
                }
              ],
              "rateClass": "NOR",
              "rooms": 1,
              "adults": 2,
              "children": 0,
              "childrenAges": "",
              "taxes": [],
              "nights": 5,
              "offers": [],
              "currency": "EUR",
              "offerKey": "MjAyNTA2MTV8MjAyNTA2MjB8V3wxfDE2MzE4OHxEQkwuS0d8QkJ8TlJGfDJ+MH58MTAyMTExN3xFVVJ+MzM0fEh4VTRMNG9FfERF"
            }
          ]
        },
        {
          "code": "TWN.DX",
          "name": "Deluxe Twin Room",
          "rates": [
            {
              "net": 445.3,
              "allotment": 1,
              "boardCode": "BB",
              "boardName": "BED AND BREAKFAST",
              "cancellationPolicies": [
                {
                  "amount": 89.06,
                  "from": "2025-06-12T23:59:00+03:00"
                },
                {
                  "amount": 445.3,
                  "from": "2025-06-13T23:59:00+03:00"
                }
              ],
              "rateClass": "NOR",
              "rooms": 1,
              "adults": 2,
              "children": 0,
              "childrenAges": "",
              "taxes": [],
              "nights": 5,
              "offers": [],
              "currency": "EUR",
              "offerKey": "MjAyNTA2MTV8MjAyNTA2MjB8V3wxfDE2MzE4OHxUV04uRFh8QkJ8TlJGfDJ+MH58MTAyMTExN3xFVVJ+NDQ1LjN8MjNPNWE2aGd8REU="
            }
          ]
        }
      ],
      "minRate": "334.00",
      "maxRate": "890.60"
    }
  ]
}

Check room availability for a hotel.

Request Body
{
  "hotelIds": [
    163188
  ],
  "sourceMarket": "DE",
  "checkIn": "2025-06-15",
  "checkOut": "2025-06-20",
  "occupancies": [
    {
      "rooms": 1,
      "adults": 2,
      "children": 0
    }
  ]
}
Parameters
Parameter Type Required Description
hotelIds array Yes Array of hotel IDs to check availability for
checkIn string Yes Check-in date (YYYY-MM-DD)
checkOut string Yes Check-out date (YYYY-MM-DD), must be after checkIn
occupancies array Yes Detailed occupancy structure for room requirements
occupancies[].rooms integer Yes Number of rooms for this occupancy
occupancies[].adults integer Yes Number of adults for this occupancy
occupancies[].children integer Yes Number of children for this occupancy
occupancies[].paxes array No Required only if children > 0. Contains child details
sourceMarket string No Source market code (e.g., "DE", "TR", "ES")
Response
{
  "hotel": [
    {
      "id": 163188,
      "name": "Edition Old City Hotel",
      "slug": "edition-old-city-hotel",
      "address": "Darphane Sk, 1",
      "coordinates": {
        "latitude": 41.00912905,
        "longitude": 28.96281863
      },
      "description": "Welcome to Edition Old City Hotel, your 4-star haven in the heart of historic Istanbul! Nestled just a 5-minute walk from the iconic Grand Bazaar, our hotel offers a unique blend of modern comfort and timeless charm. Imagine waking up to stunning views of the Grand Bazaar from your balcony – a truly enchanting experience!\n\nOur well-appointed rooms are designed to provide you with a luxurious and relaxing stay. Choose from a variety of room options, some featuring private balconies overlooking the bustling Grand Bazaar. Immerse yourself in the rich history of Istanbul while enjoying the convenience of modern amenities. \n\nIndulge in a delightful culinary experience at our Starbucks located in the lobby, offering a range of signature coffees and delectable treats. After a day of exploring the city, unwind and rejuvenate at our spa, where skilled therapists are ready to pamper you. \n\nConveniently situated, our hotel is just a 15-minute walk from the awe-inspiring Blue Mosque and within easy reach of many other tourist attractions and historic sites. Immerse yourself in the vibrant culture of Istanbul, and let our hotel be your comfortable haven in this enchanting city.",
      "check_in": "2025-06-15",
      "check_out": "2025-06-20",
      "nights": 5,
      "rooms": [
        {
          "code": "DBL.KG",
          "name": "ECONOMY KİNG ROOM",
          "rates": [
            {
              "net": 334,
              "allotment": 1,
              "boardCode": "BB",
              "boardName": "BED AND BREAKFAST",
              "cancellationPolicies": [
                {
                  "amount": 66.8,
                  "from": "2025-06-12T23:59:00+03:00"
                },
                {
                  "amount": 334,
                  "from": "2025-06-13T23:59:00+03:00"
                }
              ],
              "rateClass": "NOR",
              "rooms": 1,
              "adults": 2,
              "children": 0,
              "childrenAges": "",
              "taxes": [],
              "nights": 5,
              "offers": [],
              "currency": "EUR",
              "offerKey": "MjAyNTA2MTV8MjAyNTA2MjB8V3wxfDE2MzE4OHxEQkwuS0d8QkJ8TlJGfDJ+MH58MTAyMTExN3xFVVJ+MzM0fEh4VTRMNG9FfERF"
            }
          ]
        },
        {
          "code": "TWN.DX",
          "name": "Deluxe Twin Room",
          "rates": [
            {
              "net": 445.3,
              "allotment": 1,
              "boardCode": "BB",
              "boardName": "BED AND BREAKFAST",
              "cancellationPolicies": [
                {
                  "amount": 89.06,
                  "from": "2025-06-12T23:59:00+03:00"
                },
                {
                  "amount": 445.3,
                  "from": "2025-06-13T23:59:00+03:00"
                }
              ],
              "rateClass": "NOR",
              "rooms": 1,
              "adults": 2,
              "children": 0,
              "childrenAges": "",
              "taxes": [],
              "nights": 5,
              "offers": [],
              "currency": "EUR",
              "offerKey": "MjAyNTA2MTV8MjAyNTA2MjB8V3wxfDE2MzE4OHxUV04uRFh8QkJ8TlJGfDJ+MH58MTAyMTExN3xFVVJ+NDQ1LjN8MjNPNWE2aGd8REU="
            }
          ]
        }
      ]
    }
  ]
}

Validate a specific offer before booking.

Request Body
{
  "offerKey": "..."
}
Parameters
Parameter Type Required Description
offerKey string Yes Offer key received from availability check
Response
{
  "status": "success",
  "message": "Room availability successfully queried",
  "code": 200,
  "data": {
    "hotel": {
      "id": 126021,
      "name": "Ramada Plaza By Wyndham Istanbul City Center",
      "address": "Sisli, 63",
      "coordinates": {
        "latitude": "41.05118100",
        "longitude": "28.98736300"
      },
      "description": "..."
    },
    "check_in": "2025-04-22",
    "check_out": "2025-04-23",
    "nights": 1,
    "rooms": [
      {
        "code": "DBL.EJ",
        "name": "PREMIUM ROOM (NON SMOKING)",
        "rates": [
          {
            "net": "183.76",
            "allotment": 7,
            "boardCode": "RO",
            "boardName": "ROOM ONLY",
            "cancellationPolicies": [
              {
                "amount": "183.76",
                "from": "2025-04-19T23:59:00+03:00"
              }
            ],
            "adults": 1,
            "children": 0,
            "taxes": [],
            "nights": 1,
            "currency": "EUR",
            "offerKey": "..."
          }
        ]
      }
    ]
  }
}

Confirm a booking with guest and offer details.

Request Body
{
  "holder": {
    "name": "Demo",
    "surname": "User",
    "email": "demo@example.com",
    "phone": "1234567890"
  },
  "rooms": [
    {
      "offerKey": "MjAyNTA2MTV8MjAyNTA2MjB8V3wxfDE2MzE4OHxEQkwuS0d8QkJ8TlJGfDJ+MH58MTAyMTExN3xFVVJ+MzM0fERFTU9ERU1P",
      "paxes": [
        {
          "type": "AD",
          "name": "Demo",
          "surname": "Guest1",
          "phone": "1234567890",
          "email": "demo@example.com"
        },
        {
          "type": "AD",
          "name": "Demo",
          "surname": "Guest2",
          "phone": "1234567890",
          "email": "demo@example.com"
        }
      ],
      "notes": "Demo booking for testing purposes"
    }
  ],
  "client": "DEMO123"
}
Parameters
Parameter Type Required Description
holder object Yes Booking holder information
holder.name string Yes Holder's first name
holder.surname string Yes Holder's last name
holder.email string Yes Holder's email address
holder.phone string Yes Holder's phone number
rooms array Yes Array of room bookings
rooms[].offerKey string Yes Validated offer key from availability check
rooms[].paxes array Yes Array of guest information for this room
rooms[].paxes[].type string Yes Guest type: "AD" for adult, "CH" for child
rooms[].paxes[].name string Yes Guest's first name
rooms[].paxes[].surname string No Guest's last name
rooms[].paxes[].phone string No Guest's phone number
rooms[].paxes[].email string No Guest's email address
rooms[].notes string No Optional booking notes for this room
client string Yes Agency code/client identifier
Response
{
  "orderNumber": "BOOK-DEMO",
  "orderDatetime": "2025-06-02T08:48:14.032387Z",
  "notes": "Demo booking for testing purposes",
  "orderItems": [
    {
      "offerKey": "MjAyNTA2MTV8MjAyNTA2MjB8V3wxfDE2MzE4OHxEQkwuS0d8QkJ8TlJGfDJ+MH58MTAyMTExN3xFVVJ+MzM0fERFTU9ERU1P",
      "adultsInfo": [
        {
          "name": "Demo",
          "surname": "Guest1",
          "phone": "1234567890",
          "email": "demo@example.com",
          "type": "AD"
        },
        {
          "name": "Demo",
          "surname": "Guest2",
          "phone": "1234567890",
          "email": "demo@example.com",
          "type": "AD"
        }
      ],
      "childrenInfo": [],
      "checkInDate": "2025-06-15",
      "checkOutDate": "2025-06-20",
      "taxes": [],
      "discounts": [],
      "price": "337.34",
      "currency": "EUR",
      "status": "pending",
      "hotel": {
        "id": 163188,
        "name": "Edition Old City Hotel",
        "address": "Darphane Sk, 1",
        "description": "Welcome to Edition Old City Hotel, your 4-star haven in the heart of historic Istanbul! Nestled just a 5-minute walk from the iconic Grand Bazaar, our hotel offers a unique blend of modern comfort and timeless charm. Imagine waking up to stunning views of the Grand Bazaar from your balcony – a truly enchanting experience!\n\nOur well-appointed rooms are designed to provide you with a luxurious and relaxing stay. Choose from a variety of room options, some featuring private balconies overlooking the bustling Grand Bazaar. Immerse yourself in the rich history of Istanbul while enjoying the convenience of modern amenities. \n\nIndulge in a delightful culinary experience at our Starbucks located in the lobby, offering a range of signature coffees and delectable treats. After a day of exploring the city, unwind and rejuvenate at our spa, where skilled therapists are ready to pamper you. \n\nConveniently situated, our hotel is just a 15-minute walk from the awe-inspiring Blue Mosque and within easy reach of many other tourist attractions and historic sites. Immerse yourself in the vibrant culture of Istanbul, and let our hotel be your comfortable haven in this enchanting city.",
        "email": "demo@editionhotel.com",
        "phones": [
          {
            "phoneType": "PHONEBOOKING",
            "phoneNumber": "+901234567890"
          },
          {
            "phoneType": "PHONEHOTEL",
            "phoneNumber": "+901234567891"
          },
          {
            "phoneType": "FAXNUMBER",
            "phoneNumber": "+901234567892"
          }
        ],
        "coordinates": {
          "latitude": "41.00912905",
          "longitude": "28.96281863"
        }
      }
    }
  ]
}

Get list of bookings with filters.

Request Body
{
  "page": 1,
  "perPage": 25,
  "status": "all",
  "startDate": "2025-06-01",
  "endDate": "2025-06-30",
  "hotelId": "163188"
}
Parameters
Parameter Type Required Description
page integer Yes Page number for pagination
perPage integer Yes Number of items per page
status string No Filter by status (all, pending, confirmed, canceled, failed)
startDate string No Start date for filtering (YYYY-MM-DD)
endDate string No End date for filtering (YYYY-MM-DD)
hotelId string No Filter by hotel ID
Response
[
  {
    "orderNumber": "BOOK-DEMO",
    "orderDatetime": "2025-06-02 11:48:14",
    "notes": "Demo booking for testing purposes",
    "orderItems": [
      {
        "offerKey": "MjAyNTA2MTV8MjAyNTA2MjB8V3wxfDE2MzE4OHxEQkwuS0d8QkJ8TlJGfDJ+MH58MTAyMTExN3xFVVJ+MzM0fERFTU9ERU1P",
        "adultsInfo": [
          {
            "name": "Demo",
            "surname": "Guest1",
            "phone": "1234567890",
            "email": "demo@example.com",
            "type": "AD"
          },
          {
            "name": "Demo",
            "surname": "Guest2",
            "phone": "1234567890",
            "email": "demo@example.com",
            "type": "AD"
          }
        ],
        "childrenInfo": [],
        "checkInDate": "2025-06-15",
        "checkOutDate": "2025-06-20",
        "taxes": [],
        "discounts": [],
        "price": "337.34",
        "currency": "EUR",
        "status": "pending",
        "hotel": {
          "id": 163188,
          "name": "Edition Old City Hotel",
          "address": "Darphane Sk, 1",
          "description": "Welcome to Edition Old City Hotel, your 4-star haven in the heart of historic Istanbul! Nestled just a 5-minute walk from the iconic Grand Bazaar, our hotel offers a unique blend of modern comfort and timeless charm. Imagine waking up to stunning views of the Grand Bazaar from your balcony – a truly enchanting experience!\n\nOur well-appointed rooms are designed to provide you with a luxurious and relaxing stay. Choose from a variety of room options, some featuring private balconies overlooking the bustling Grand Bazaar. Immerse yourself in the rich history of Istanbul while enjoying the convenience of modern amenities. \n\nIndulge in a delightful culinary experience at our Starbucks located in the lobby, offering a range of signature coffees and delectable treats. After a day of exploring the city, unwind and rejuvenate at our spa, where skilled therapists are ready to pamper you. \n\nConveniently situated, our hotel is just a 15-minute walk from the awe-inspiring Blue Mosque and within easy reach of many other tourist attractions and historic sites. Immerse yourself in the vibrant culture of Istanbul, and let our hotel be your comfortable haven in this enchanting city.",
          "email": "demo@editionhotel.com",
          "phones": [
            {
              "phoneType": "PHONEBOOKING",
              "phoneNumber": "+901234567890"
            },
            {
              "phoneType": "PHONEHOTEL",
              "phoneNumber": "+901234567891"
            },
            {
              "phoneType": "FAXNUMBER",
              "phoneNumber": "+901234567892"
            }
          ],
          "coordinates": {
            "latitude": "41.00912905",
            "longitude": "28.96281863"
          }
        }
      }
    ]
  }
]

Cancel a booking using booking code.

URL Parameters
Parameter Type Required Description
bookingId string Yes Booking reference number
Response
{
  "message": "Booking canceled successfully",
  "order": {
    "orderNumber": "BOOK-CIRY",
    "orderDatetime": "2025-06-02 09:57:26",
    "notes": "Demo",
    "orderItems": [
      {
        "offerKey": "MjAyNTA2MTV8MjAyNTA2MjB8V3wxfDE2MzE4OHxEQkwuS0d8QkJ8TlJGfDJ+MH58MTAyMTExN3xFVVJ+MzM0fFBJRmpOeE5zfERF",
        "adultsInfo": [
          {
            "name": "Samet",
            "surname": "Goktepe",
            "phone": "555666778899",
            "email": "samet@mail.com",
            "type": "AD"
          },
          {
            "name": "Samet",
            "surname": "Goktepe",
            "phone": "555666778899",
            "email": "samet@mail.com",
            "type": "AD"
          }
        ],
        "childrenInfo": [],
        "checkInDate": "2025-06-15",
        "checkOutDate": "2025-06-20",
        "taxes": [],
        "discounts": [],
        "price": "337.34",
        "currency": "EUR",
        "status": "cancelled",
        "hotel": {
          "id": 163188,
          "name": "Edition Old City Hotel",
          "address": "Darphane Sk, 1",
          "description": "Welcome to Edition Old City Hotel, your 4-star haven in the heart of historic Istanbul! Nestled just a 5-minute walk from the iconic Grand Bazaar, our hotel offers a unique blend of modern comfort and timeless charm. Imagine waking up to stunning views of the Grand Bazaar from your balcony – a truly enchanting experience!\\n\\nOur well-appointed rooms are designed to provide you with a luxurious and relaxing stay. Choose from a variety of room options, some featuring private balconies overlooking the bustling Grand Bazaar. Immerse yourself in the rich history of Istanbul while enjoying the convenience of modern amenities. \\n\\nIndulge in a delightful culinary experience at our Starbucks located in the lobby, offering a range of signature coffees and delectable treats. After a day of exploring the city, unwind and rejuvenate at our spa, where skilled therapists are ready to pamper you. \\n\\nConveniently situated, our hotel is just a 15-minute walk from the awe-inspiring Blue Mosque and within easy reach of many other tourist attractions and historic sites. Immerse yourself in the vibrant culture of Istanbul, and let our hotel be your comfortable haven in this enchanting city.",
          "email": "reservation@editionoldcityhotel.com",
          "phones": [
            {
              "phoneType": "PHONEBOOKING",
              "phoneNumber": "+905336797747"
            },
            {
              "phoneType": "PHONEHOTEL",
              "phoneNumber": "+902125171700"
            },
            {
              "phoneType": "FAXNUMBER",
              "phoneNumber": "+902125171700"
            }
          ],
          "coordinates": {
            "latitude": "41.00912905",
            "longitude": "28.96281863"
          }
        }
      }
    ]
  }
}

Static Data

Get paginated list of all hotels with detailed information.

Headers
{
  "X-API-Key": "your-key",
  "X-API-Secret": "your-secret"
}
Request Body
{
  "page": 1,
  "perPage": 10
}
Parameters
Parameter Type Required Description
page integer Yes Page number for pagination (default: 1)
perPage integer Yes Number of items per page (1-100, default: 10)
Response
{
  "searchParameters": {
    "page": 1,
    "perPage": 10
  },
  "pagination": {
    "total": 228157,
    "count": 10,
    "perPage": 10,
    "currentPage": 1,
    "totalPages": 22816,
    "hasMore": true
  },
  "data": [
    {
      "id": 1,
      "name": "Himalaia Soldeu",
      "address": "Crta.Canillo s.n, Ctra. de la Vall d'Incles, S/N",
      "coordinates": {
        "latitude": "42.57697200",
        "longitude": "1.66705400"
      },
      "phones": [
        {
          "phoneType": "PHONEBOOKING",
          "phoneNumber": "00376878515"
        },
        {
          "phoneType": "PHONEHOTEL",
          "phoneNumber": "00376878515"
        },
        {
          "phoneType": "FAXNUMBER",
          "phoneNumber": "00376878525"
        }
      ],
      "email": "hotelhimalaiasoldeu@andorra.ad",
      "website": "http://www.hotelhimalaiasoldeu.com/",
      "accomodationType": "H",
      "description": "Enjoy the convenience of ski-in/ski-out access at this hotel, which also features a spa tub and a sauna. Additional amenities at this hotel include complimentary wireless internet access, an arcade/game room, and ski storage. Satisfy your appetite for dinner at Buffet, a restaurant which specializes in international cuisine, or stay in and take advantage of the room service (during limited hours). Quench your thirst with your favorite drink at the bar/lounge. Buffet breakfasts are available daily from 7:30 AM to 10:30 AM for a fee. Featured amenities include complimentary newspapers in the lobby, dry cleaning/laundry services, and a 24-hour front desk. Self parking (subject to charges) is available onsite. Make yourself at home in one of the 106 guestrooms featuring minibars and espresso makers. Complimentary wireless internet access keeps you connected, and satellite programming is available for your entertainment. Private bathrooms have deep soaking bathtubs and designer toiletries.",
      "categoryId": 7,
      "category": {
        "id": 7,
        "code": "4EST",
        "description": "4 STARS"
      },
      "chainId": 1334,
      "chain": {
        "id": 1334,
        "code": "HOTAN",
        "name": "HOTANSA"
      },
      "boardCodes": [
        "BB",
        "HB",
        "RO",
        "CB"
      ]
    },
    {
      "id": 2,
      "name": "Sant Jordi",
      "address": "Princep Benlloch, 45",
      "coordinates": {
        "latitude": "42.50640000",
        "longitude": "1.51841000"
      },
      "phones": [
        {
          "phoneType": "PHONEBOOKING",
          "phoneNumber": "00376876202"
        },
        {
          "phoneType": "PHONEHOTEL",
          "phoneNumber": "00376876201"
        },
        {
          "phoneType": "FAXNUMBER",
          "phoneNumber": "00376876222"
        }
      ],
      "email": "JANHOTELS@ANDORNET.AD",
      "website": "http://www.hotelsantjordi-andorra.com/contacto/",
      "accomodationType": "H",
      "description": "This hotel is located centrally on the main street of Andorra la Vella, in the tourist friendly district. A shopping centre is situated close by the hotel and offers shops, bars and restaurants. The outstanding location of this hotel makes it popular with ski fans in winter- it is in 6 km from the Grandvalira ski resort and Vall Nord. Links to the public transport system are only 100 m from the hotel. This welcoming hotel offers access to various facilities including a foyer, a safe and a lift. All rooms are exterior, some of them with balcony offering views of the centre of Andorra La Vella. In addition to this there is a cosy bar and a restaurant which offers continental breakfast and a rich menu.",
      "categoryId": 3,
      "category": {
        "id": 3,
        "code": "2EST",
        "description": "2 STARS"
      },
      "chainId": 1477,
      "chain": {
        "id": 1477,
        "code": "JAN",
        "name": "JAN HOTELS"
      },
      "boardCodes": [
        "BB",
        "HB",
        "RO"
      ]
    },
    {
      "id": 3,
      "name": "Novotel Andorra",
      "address": "Calle Prat De La Creu 14, 14",
      "coordinates": {
        "latitude": "42.50750000",
        "longitude": "1.52738000"
      },
      "phones": [
        {
          "phoneType": "PHONEBOOKING",
          "phoneNumber": "+00376873603"
        },
        {
          "phoneType": "PHONEHOTEL",
          "phoneNumber": "+00376873603"
        },
        {
          "phoneType": "FAXNUMBER",
          "phoneNumber": "+00376873653"
        }
      ],
      "email": "booking1@prestigi.ad",
      "website": null,
      "accomodationType": "H",
      "description": "Novotel Andorra is the site and modernity in the heart of Andorra la Vella. Different rooms adapting to the needs of a family, romantic or business stay. Enjoy the food at Gran Bufet Restaurant, Bufets Prestigi, during the week or the Special Themed Buffets weekends and holidays. It has the WIFI BAR, breakfast, bar, cocktail bar and terrace. It also has 3 meeting rooms, and its own 24h parking.",
      "categoryId": 7,
      "category": {
        "id": 7,
        "code": "4EST",
        "description": "4 STARS"
      },
      "chainId": 39,
      "chain": {
        "id": 39,
        "code": "ACCOR",
        "name": "ACCOR HOTELS"
      },
      "boardCodes": [
        "BB",
        "HB",
        "RO"
      ]
    }
  ]
}

Note: This endpoint returns static hotel data with detailed information including coordinates, contact details, categories, chains, and available board codes. Response includes pagination information and shows first 3 hotels as example.

Get detailed hotel content and information.

Headers
{
  "X-API-Key": "your-key",
  "X-API-Secret": "your-secret"
}
URL Parameters
Parameter Type Required Description
hotelId integer Yes Hotel ID
Query Parameters
Parameter Type Required Description
language string No Language code (default: ENG)
Response
{
  "status": "success",
  "message": "Hotel content retrieved successfully",
  "code": 200,
  "data": {
    "hotel": {
      "code": 126021,
      "name": "Ramada Plaza By Wyndham Istanbul City Center",
      "description": "...",
      "categoryCode": "4",
      "categoryName": "4 Stars",
      "destinationCode": "IST",
      "destinationName": "Istanbul",
      "zoneCode": "1",
      "zoneName": "City Center",
      "latitude": "41.05118100",
      "longitude": "28.98736300",
      "rooms": [
        {
          "code": "DBL.ST",
          "name": "DOUBLE STANDARD",
          "description": "...",
          "roomType": "Standard",
          "roomCategory": "Double",
          "amenities": [...],
          "images": [...]
        }
      ],
      "facilities": [...],
      "images": [...],
      "chain": {
        "code": "WY",
        "name": "Wyndham Hotels & Resorts"
      }
    }
  }
}

Note: This endpoint returns detailed static content for a specific hotel including room types, facilities, images, and amenities. Use the hotel ID from the hotels list endpoint.