# Retrieves a collection of unique recently visited hotels for a guest, presenting essential details. **GET /api/Guests/{guestId}/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 ### Path parameters - **guestId** (string(uuid)) The id of the guest for whom recently visited hotels are to be retrieved. ### 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** () ### 404 If the guest is not found [Powered by Bump.sh](https://bump.sh)