Skip to main content
GET
/
v1
/
hotel_details
/
{hotel_id}
Fetch rich metadata (gallery, facilities, policies, per-room details) for a single hotel
curl --request GET \
  --url https://api.example.com/v1/hotel_details/{hotel_id} \
  --header 'X-API-Key: <api-key>'
{
  "hotel": {
    "id": "htl_8f21a9c0",
    "name": "Hôtel Le Marais",
    "description": "A boutique 4-star hotel in the heart of the Marais district.",
    "star_rating": 4,
    "address": "12 Rue de Rivoli",
    "city": "Paris",
    "country_code": "FR",
    "coordinates": {
      "latitude": 48.8566,
      "longitude": 2.3522
    },
    "images": [
      "https://images.gojinko.com/hotels/htl_8f21a9c0/1.jpg"
    ],
    "facilities": [
      "Free WiFi",
      "Air conditioning",
      "24-hour front desk"
    ],
    "policies": [
      null
    ],
    "checkin_time": "15:00",
    "checkout_time": "11:00"
  },
  "rooms": [
    null
  ]
}
Pull the full marketing and operational profile of a single property after a search result catches the user’s attention. Useful for questions like “what amenities does this hotel have”, “is there a pool on site”, or “what is the cancellation policy on the deluxe room”. Returns the gallery, facilities, room metadata, and policies in one payload.

Authorizations

X-API-Key
string
header
required

Path Parameters

hotel_id
string
required

Query Parameters

checkin
string
checkout
string

Response

Hotel detail

hotel
object
rooms
null[]