# Retrieve features and facilities for a development Fetch a list of features and facilities associated with a specific development using its unique ID. This endpoint returns detailed information about amenities, facilities, and special features available within the development. The response is paginated and includes both standard and custom features that characterize the development. If the specified development ID does not exist, a error will be returned. In case of system errors during retrieval, a will be triggered. Endpoint: GET /api/v3/developments/{id}/featuresFacilities Version: 3.0.4 Security: OAuth2 ## Path parameters: - `id` (integer, required) The unique identifier of the development ## Response 200 fields (application/json): - `content` (array) - `content.id` (integer) Unique identifier for the feature/facility Example: 1 - `content.category` (string) Category of the feature/facility Example: "Amenity" - `content.iconClass` (string) CSS class name for the feature/facility icon Example: "icon-wifi" - `content.name` (string) Name of the feature/facility in primary language Example: "Wi-Fi" - `content.nameLang2` (string) Name of the feature/facility in secondary language Example: "Wi-Fi" - `content.nameLang3` (string) Name of the feature/facility in tertiary language Example: "WLAN" - `content.nameLang4` (string) Name of the feature/facility in quaternary language Example: "Wi-Fi" - `content.nameLang5` (string) Name of the feature/facility in quinary language Example: "Wi-Fi" - `page` (object) - `page.size` (integer) - `page.totalElements` (integer) - `page.totalPages` (integer) - `page.number` (integer)