Skip to main content
GET
/
hotel
/
{sessionId}
/
{hotelId}
Error
A valid request URL is required to generate request examples
{
  "success": true,
  "message": "<string>",
  "data": {
    "hotel": {
      "id": 123,
      "name": "<string>",
      "stars": 3,
      "address": {
        "address": "<string>",
        "city": "<string>",
        "country": "<string>",
        "countryCode": "<string>"
      },
      "rating": 2.5,
      "reviews": 1,
      "pricePerNight": "<string>",
      "priceChargeable": "<string>",
      "pricePerRoom": "<string>",
      "pricePerRoomPerNight": "<string>",
      "priceBeforeFees": "<string>",
      "priceFees": "<string>",
      "priceDueAtHotel": "<string>",
      "priceInclusive": "<string>",
      "amenities": [
        "<string>"
      ],
      "location": "<string>",
      "images": [
        "<string>"
      ],
      "exclusive": true,
      "type": "<string>",
      "coordinates": [
        123
      ]
    },
    "rates": [
      {
        "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
        "roomType": "<string>",
        "board": "<string>",
        "pricePerNight": "<string>",
        "pricePerRoom": "<string>",
        "pricePerRoomPerNight": "<string>",
        "priceBeforeFees": "<string>",
        "priceFees": "<string>",
        "priceChargeable": "<string>",
        "priceDueAtHotel": "<string>",
        "priceInclusive": "<string>",
        "currency": "<string>",
        "cancellationPolicy": "<string>",
        "cancellationPolicyDate": "<string>"
      }
    ],
    "metadata": {
      "nights": 123
    }
  }
}

Authorizations

Authorization
string
header
required

API key for authentication

Path Parameters

sessionId
string<uuid>
required
hotelId
string
required

Response

200 - application/json

Hotel details

success
boolean

Indicates if the request was successful

message
string | null

Response message, null if successful

data
object