# Retrieves a collection of featured deals based on the specified count. **GET /api/rooms/featured-deals** This endpoint allows clients to retrieve a curated list of featured deals. The response includes essential details for each deal, such as its hotel name, room type, star rating, discount percentage, and discounted price. The number of featured deals to be retrieved can be specified using the deals parameter. If no count is provided, the default is set to 5. Sample request: GET /featured-deals?deals=3 ## Servers - http://api.example.com: http://api.example.com () ## Parameters ### Query parameters - **deals** (integer(int32)) The number of featured deals to retrieve. Default is 5. ## Responses ### 200 Returns the collection of featured deals. #### Body: application/json (array[object]) - **hotelId** (string(uuid)) - **hotelName** (string | null) - **hotelImage** (object) - **starRate** (integer(int32)) - **street** (string | null) - **latitude** (number(double)) - **longitude** (number(double)) - **roomId** (string(uuid)) - **roomNumber** (integer(int32)) - **roomType** (string) - **originalPrice** (number(double)) - **discountedPrice** (number(double)) - **discountPercentage** (number(double)) - **cityName** (string | null) - **country** (string | null) - **Additional properties are NOT allowed** () [Powered by Bump.sh](https://bump.sh)