> ## Documentation Index
> Fetch the complete documentation index at: https://docs.dev.gojinko.com/llms.txt
> Use this file to discover all available pages before exploring further.

# jinko hotel-details

> Fetch rich metadata (gallery, facilities, policies, per-room details) for a single hotel

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.

## Usage

```bash theme={null}
jinko hotel-details [options]
```

## Options

| Flag                | Required | Description                                                                                        | Default |
| ------------------- | -------- | -------------------------------------------------------------------------------------------------- | ------- |
| `--hotel-id <id>`   | Yes      | hotel ID (from a prior hotel-search offer)                                                         |         |
| `--checkin <date>`  | No       | check-in date (YYYY-MM-DD) — accepted for future cache-key alignment, currently unused by the BFF  |         |
| `--checkout <date>` | No       | check-out date (YYYY-MM-DD) — accepted for future cache-key alignment, currently unused by the BFF |         |

## Examples

```bash theme={null}
# Minimal: just the hotel ID returned by hotel-search
jinko hotel-details --hotel-id lpe2264

# With dates for cache alignment
jinko hotel-details --hotel-id lpe2264 --checkin 2026-07-15 --checkout 2026-07-18
```
