# Retrieves a collection of unique recently visited hotels for a the current authorized guest, presenting essential details. **GET /api/Guests/recently-visited-hotels** The resulting collection provides essential information about the last N different hotels the guest visited, such as hotel name, city name, star rating, and price. Sample request: GET guests/{guestId}/recently-visited-hotels?count=3 ## Servers - http://api.example.com: http://api.example.com () ## Parameters ### Query parameters - **count** (integer(int32)) The maximum number of unique recently visited hotels to retrieve. Default is 5. ## Responses ### 200 Returns the last 5 different hotels the guest visited #### Body: application/json (array[object]) - **hotelName** (string | null) - **hotelImage** (object) - **cityName** (string | null) - **starRating** (integer(int32)) - **price** (number(double)) - **Additional properties are NOT allowed** () ### 401 User is not authenticated. ### 404 If the guest is not found [Powered by Bump.sh](https://bump.sh)