All content was accurate at the time of publication. Check issuer’s site for most up to date information. 

Katiestraveltricks.com has partnered with CardRatings for our coverage of credit card products. Katiestraveltricks.com and CardRatings may receive a commission from our partners. American Express is a Katiestraveltricks.com advertiser. This compensation may impact how and where links appear on this site. This site does not include all financial companies or all available financial offers. Terms apply to American Express benefits and offers. Enrollment may be required for select American Express benefits and offers. Visit americanexpress.com to learn more. For Capital One products listed on this page, some of the above benefits are provided by Visa® or Mastercard® and may vary by product. See the respective Guide to Benefits for details, as terms and exclusions apply.

 

Map: Wyndham Properties that Sleep 5+ with Points

Categories: Maps, Where to Stay with PointsBy Last Updated: April 28, 2026

Finding affordable accommodation for a family of five or more can be a real challenge – so we’ve created a map of Wyndham properties that sleep 5 or more to give you all the details here for how to book with points. Tthe Wyndham Rewards program offers an a way to book Wyndham properties that can make your next family getaway truly comfortable and budget-friendly.

Condos that Sleep 5+ Bookable with Wyndham points

The Wyndham hotel chain is mostly known for low to mid range hotels – especially here in the USA. But it also has a number of properties and resorts with condos that sleep bigger families and groups.

Cost to Book 2+ Bedroom Condos with Wyndham

Wyndham operates a number of timeshares with brands like WorldMark and Club Wyndham — and these are often bookable with points. You can often find one and two bedroom condos available to book at these properties

One bedroom condos will typically be 15,000 points per night.

Two bedroom condos will typically run 30,000 per night. Taxes and fees are included in these stays so expect that your points stay will truly be free!

If you have a Wyndham credit card you’ll also get an automatic 10% discount on points needed for your stay.

Map: Wyndham Properties Bookable for 5+

It may be easiest to view from a computer rather than a phone. Don’t forget to zoom out to see all properties! From a phone, it may be easier to view it horizontally. 

Wyndham Locations Map /* Basic body styling */ body { font-family: 'Inter', sans-serif; margin: 0; padding: 0; background-color: #f7fafc; } /* Container to hold the map and ensure proper layout */ #map-container { position: relative; width: 100%; height: 80vh; /* Responsive height, reduced from 90vh */ } /* The map element itself */ #map { height: 100%; width: 100%; } /* --- Popup Styling --- */ .leaflet-popup .leaflet-popup-content-wrapper { background-color: #ffffff; border-radius: 8px; box-shadow: 0 4px 12px rgba(0,0,0,0.15); border: 1px solid #e2e8f0; max-width: 280px; /* Constrains popup width for better mobile view */ } .leaflet-popup .leaflet-popup-content { font-size: 14px; line-height: 1.6; color: #4a5568; margin: 12px 18px; } .leaflet-popup .leaflet-popup-content h3 { font-weight: 700; font-size: 16px; margin-bottom: 8px; color: #1a202c; word-wrap: break-word; /* Ensures long words break and wrap */ white-space: normal; /* Explicitly allows wrapping */ } .leaflet-popup .leaflet-popup-content p { margin: 4px 0; } .leaflet-popup .leaflet-popup-content strong { color: #1f7f95; font-weight: 600; } .leaflet-popup .leaflet-popup-tip { background: #ffffff; } /* Style for the zoom controls */ .leaflet-control-zoom-in, .leaflet-control-zoom-out { background-color: #1f7f95 !important; color: white !important; border-radius: 8px !important; border: 1px solid rgba(0,0,0,0.1) !important; } /* Container for filter and legend controls, positioned over the map */ #controls-container { position: absolute; top: 15px; left: 15px; z-index: 1000; display: flex; flex-direction: column; gap: 10px; } /* Styling for the filter dropdown container */ #filter-container { background-color: white; padding: 12px; border-radius: 8px; box-shadow: 0 2px 10px rgba(0,0,0,0.1); display: flex; flex-direction: column; gap: 8px; } #points-filter { padding: 8px 12px; border-radius: 6px; border: 1px solid #cbd5e0; font-family: 'Inter', sans-serif; background-color: #f8fafc; } /* Styling for the legend */ .legend { padding: 12px; background: white; border-radius: 8px; box-shadow: 0 2px 10px rgba(0,0,0,0.1); line-height: 24px; color: #4a5568; } .legend i { width: 18px; height: 18px; float: left; margin-right: 8px; opacity: 0.95; border-radius: 50%; border: 1px solid rgba(0,0,0,0.1); } /* Custom marker icon styling */ .custom-div-icon { transition: transform 0.2s ease-in-out; } .custom-div-icon:hover { transform: scale(1.2); }
Show All 15K 30K 45K 60K Points + Cash
// --- Map Initialization --- // Initialize the map and set its view to the center of the US const map = L.map('map', { zoomControl: false // Disable default zoom control to add it back in a different position }).setView([39.8283, -98.5795], 4); const controlsContainer = document.getElementById('controls-container'); L.control.zoom({ position: 'topright' }).addTo(map); // --- Popup Interaction Logic --- // When a popup opens, hide the controls and center the popup on the screen. // This prevents the controls from overlapping the popup on small mobile screens. map.on('popupopen', function(e) { // Hide controls if (controlsContainer) { controlsContainer.style.display = 'none'; } // Center popup const popup = e.popup; const markerLatLng = popup.getLatLng(); const markerPoint = map.project(markerLatLng); const popupHeight = popup.getElement().clientHeight; const yOffset = popupHeight / 2; const targetPoint = L.point(markerPoint.x, markerPoint.y - yOffset); const targetLatLng = map.unproject(targetPoint); map.panTo(targetLatLng, { animate: true }); }); // When a popup closes, show the controls again. map.on('popupclose', function(e) { if (controlsContainer) { controlsContainer.style.display = 'flex'; } }); // --- Tile Layer --- // Add a base map tile layer from CARTO for a clean, light look L.tileLayer('https://{s}.basemaps.cartocdn.com/light_all/{z}/{x}/{y}{r}.png', { attribution: '© OpenStreetMap contributors © CARTO', subdomains: 'abcd', maxZoom: 19 }).addTo(map); // --- Wyndham Location Data --- // Array of location objects with coordinates and details // UPDATED: Standardized 'k' to 'K' and updated Park City const wyndhamLocations = [ { lat: 32.42, lng: -110.92, details: { name: "World Mark Rancho Vistoso", location: "Oro Valley, Arizona", points: "30K", accommodation: "2 Br Condo", occupancy: 6, kitchen: "Y", wd: "Y", patio: "Y", sqft: "", notes: "" } }, { lat: 34.47, lng: -114.33, details: { name: "WorldMark Havasu Dunes", location: "Lake Havasu, Arizona", points: "30K", accommodation: "2 Br Condo", occupancy: 6, kitchen: "Y", wd: "N", patio: "Y", sqft: "", notes: "" } }, { lat: 34.14, lng: -109.96, details: { name: "World Mark Pinetop", location: "Pinetop, Arizona", points: "30K", accommodation: "2 Br condo", occupancy: 6, kitchen: "Y", wd: "Y", patio: "Y", sqft: "", notes: "" } }, { lat: 35.59, lng: -92.27, details: { name: "Club Wyndham Resort @ Fairfield bay", location: "Fairfield bay, Arkansas", points: "30K", accommodation: "2 Br 2 Ba condo", occupancy: 6, kitchen: "Y", wd: "Y", patio: "Y", sqft: "953-1270", notes: "" } }, { lat: 38.07, lng: -120.54, details: { name: "WorldMark Angels Camp", location: "Angels Camp, California", points: "30K", accommodation: "2Br", occupancy: 6, kitchen: "Y", wd: "Y", patio: "Y", sqft: "1081-1356", notes: "Fireplace" } }, { lat: 37.32, lng: -119.57, details: { name: "WorldMark Bass Lake", location: "Bass Lake, California", points: "30K", accommodation: "2 Br 2.5 Ba", occupancy: 6, kitchen: "Y", wd: "Y", patio: "Y", sqft: "", notes: "Fireplace, gas grill" } }, { lat: 34.24, lng: -116.91, details: { name: "WorldMark Big Bear Lake", location: "Big Bear Lake, California", points: "30K", accommodation: "2 Br", occupancy: 6, kitchen: "Y", wd: "Y", patio: "Y", sqft: "1047", notes: "Gas fireplace" } }, { lat: 39.13, lng: -122.84, details: { name: "WorldMark Clear Lake", location: "Nice, California", points: "30K", accommodation: "2 Br", occupancy: 6, kitchen: "Y", wd: "Y", patio: "Y", sqft: "1186-1308", notes: "Fireplace" } }, { lat: 33.20, lng: -117.38, details: { name: "WorldMark Oceanside", location: "Oceanside, California", points: "30K", accommodation: "2 Br", occupancy: 6, kitchen: "Y", wd: "Y", patio: "Y", sqft: "1062", notes: "" } }, { lat: 33.83, lng: -116.54, details: { name: "WorldMark Palm Springs", location: "Palm Springs, California", points: "30K", accommodation: "2 Br", occupancy: 6, kitchen: "Y", wd: "Y", patio: "Y", sqft: "735", notes: "Shared W/D" } }, { lat: 37.27, lng: -107.01, details: { name: "Club Wyndham Pagosa", location: "Pagosa Springs, Colorado", points: "15K", accommodation: "2 Br Loft", occupancy: 6, kitchen: "Y", wd: "Y", patio: "Y", sqft: "1210-1295", notes: "" } }, { lat: 28.32, lng: -81.49, details: { name: "Club Wyndham Star Island", location: "Kissimmee, Florida", points: "15K", accommodation: "2 Br 2 Ba", occupancy: 6, kitchen: "Y", wd: "Y", patio: "Y", sqft: "", notes: "Whirlpool tub in master" } }, { lat: 28.36, lng: -81.53, details: { name: "Club Wyndham Bonnet Creek", location: "Lake Buena Vista, Florida", points: "60K", accommodation: "2 Br 2 Ba", occupancy: 8, kitchen: "Y", wd: "Y", patio: "Y", sqft: "1257", notes: "Private sleeping for 6" } }, { lat: 28.28, lng: -81.58, details: { name: "WorldMark Reunion", location: "Reunion, Florida", points: "45K", accommodation: "3 Br 3 Ba", occupancy: 8, kitchen: "Y", wd: "Y", patio: "Y", sqft: "1530", notes: "" } }, { lat: 28.46, lng: -81.46, details: { name: "Club Wyndham Orlando Int'l", location: "Orlando, Florida", points: "30K", accommodation: "2 Br 2 Ba", occupancy: 6, kitchen: "Y", wd: "Y", patio: "Y", sqft: "1150", notes: "Screened in balcony" },}, { lat: 22.22, lng: -159.48, details: { name: "Club Wyndham Ka Eo Kai", location: "Princeville, Kauai, Hawaii", points: "30K", accommodation: "2 Br 2 Ba", occupancy: 6, kitchen: "Y", wd: "Y", patio: "Y", sqft: "1380-1503", notes: "No AC but ceiling fans" } }, { lat: 22.22, lng: -159.49, details: { name: "Club Wyndham Shearwater", location: "Princeville, Kauai, Hawaii", points: "30K", accommodation: "2 Br 2 Ba", occupancy: 6, kitchen: "Y", wd: "Y", patio: "Y", sqft: "1260", notes: "No AC, towel/linen exchange for fee" } }, { lat: 22.22, lng: -159.47, details: { name: "Club Wyndham Bali Hai Villas", location: "Princeville, Kauai, Hawaii", points: "30K", accommodation: "2 br", occupancy: 6, kitchen: "Y", wd: "Y", patio: "Y", sqft: "1149", notes: "AC not available" } }, { lat: 19.57, lng: -155.96, details: { name: "Shell Vacations Club Holua Resort at Mauna Loa Village", location: "Kona, Big Island, Hawaii", points: "30K", accommodation: "2 BR 2 Ba", occupancy: 6, kitchen: "Y", wd: "Y", patio: "Y", sqft: "2000", notes: "" } }, { lat: 19.724112, lng: -155.086823, details: { name: "Hilo Hawaiian Hotel, Trademark Collection by Wyndham", location: "Hilo, Hawaii", points: "15K", accommodation: "Studio / 1 Br", occupancy: 5, kitchen: "K", wd: "N", patio: "Y", sqft: "770", notes: "Website says 'sleeps 4' but will allow you to book 5" } }, { lat: 44.91, lng: -116.10, details: { name: "WorldMark McCall", location: "McCall, Idaho", points: "30K", accommodation: "2 Br", occupancy: 6, kitchen: "Y", wd: "Y", patio: "Y", sqft: "1092", notes: "Gas BBQ grill" } }, { lat: 38.78, lng: -77.01, details: { name: "Club Wyndham National Harbor", location: "National Harbor, Maryland", points: "30K", accommodation: "2 Br 2 Ba", occupancy: 5, kitchen: "Y", wd: "Y", patio: "Y", sqft: "1052-1108", notes: "Whirlpool in master bath" } }, { lat: 36.62, lng: -93.28, details: { name: "Club Wyndham Branson at the Meadows", location: "Branson, Missouri", points: "30K", accommodation: "2Br 2 BA", occupancy: 6, kitchen: "Y", wd: "Y", patio: "Y", sqft: "1180", notes: "" } }, { lat: 36.63, lng: -93.29, details: { name: "Club Wyndham Mountain Vista", location: "Branson, Missouri", points: "30K", accommodation: "2 Br 2 Ba", occupancy: 8, kitchen: "Y", wd: "Y", patio: "Y", sqft: "1252", notes: "Spacious balcony" } }, { lat: 38.14, lng: -92.63, details: { name: "WorldMark Lake of the Ozarks", location: "Osage Beach, Missouri", points: "30K", accommodation: "2 Br", occupancy: 6, kitchen: "Y", wd: "Y", patio: "Y", sqft: "1036", notes: "Fireplace" } }, { lat: 36.10, lng: -115.17, details: { name: "Club Wyndham Desert Rose Resort", location: "Las Vegas, Nevada", points: "15K", accommodation: "2 BR", occupancy: 6, kitchen: "Y", wd: "Y", patio: "Y", sqft: "900", notes: "" } }, { lat: 39.52, lng: -119.81, details: { name: "WorldMark Reno", location: "Reno, Nevada", points: "30K", accommodation: "2 Br", occupancy: 6, kitchen: "Y", wd: "Y", patio: "Y", sqft: "884", notes: "Electric fireplace" } }, { lat: 36.70, lng: -105.40, details: { name: "WorldMark Red River", location: "Red River, New Mexico", points: "30K", accommodation: "2 Br", occupancy: 6, kitchen: "Y", wd: "Y", patio: "Y", sqft: "875", notes: "" } }, { lat: 44.87, lng: -124.04, details: { name: "WorldMark Gleneden", location: "Gleneden Beach, Oregon", points: "30K", accommodation: "2 Br", occupancy: 6, kitchen: "Y", wd: "Y", patio: "Y", sqft: "", notes: "BBQ Grill, Fireplace" } }, { lat: 41.03, lng: -75.09, details: { name: "Club Wyndham Shawnee Village", location: "Shawnee-on-Delaware, Pennsylvania", points: "15K", accommodation: "2 Br 2 Bath", occupancy: 6, kitchen: "Y", wd: "Y", patio: "Y", sqft: "", notes: "2 story villa" } }, { lat: 41.49, lng: -71.37, details: { name: "Club Wyndham Newport Overlook", location: "Jamestown, Rhode Island", points: "30K", accommodation: "2 Br 2 Bath", occupancy: 6, kitchen: "Y", wd: "Y", patio: "Y", sqft: "1500", notes: "Private sundeck" } }, { lat: 32.48, lng: -80.32, details: { name: "Club Wyndham Ocean Ridge", location: "Edisto Island, South Carolina", points: "30K", accommodation: "2 Br 2 Bath", occupancy: 6, kitchen: "Y", wd: "Y", patio: "Y", sqft: "1000", notes: "" } }, { lat: 33.75, lng: -78.79, details: { name: "Club Wyndham SeaWatch Resort", location: "Myrtle Beach, South Carolina", points: "30K", accommodation: "2 Br 2 Bath", occupancy: 8, kitchen: "Y", wd: "Y", patio: "Y", sqft: "912", notes: "Sleeps 6-8" } }, { lat: 33.82, lng: -78.66, details: { name: "Club Wyndham Westwinds", location: "North Myrtle Beach, South Carolina", points: "30K", accommodation: "2 Br 2 Bath", occupancy: 6, kitchen: "Y", wd: "Y", patio: "Y", sqft: "883-906", notes: "" } }, { lat: 33.84, lng: -78.62, details: { name: "Club Wyndham Towers on the Grove", location: "North Myrtle Beach, South Carolina", points: "30K", accommodation: "2 Br 2 Bath", occupancy: 6, kitchen: "Y", wd: "Y", patio: "Y", sqft: "673", notes: "Floor plans may vary" } }, { lat: 35.89, lng: -83.59, details: { name: "Club Wyndham Great Smokies Lodge", location: "Sevierville, Tennessee", points: "30K", accommodation: "2 Br 2 Ba", occupancy: 6, kitchen: "Y", wd: "Y", patio: "Y", sqft: "1090", notes: "Whirlpool tub" } }, { lat: 41.94, lng: -111.39, details: { name: "WorldMark Bear Lake", location: "Garden City, Utah", points: "30K", accommodation: "2Br 2 Ba", occupancy: 6, kitchen: "Y", wd: "Y", patio: "Y", sqft: "1043-1227", notes: "Murphy bed in living room" } }, { lat: 38.57, lng: -109.55, details: { name: "WorldMark Moab", location: "Moab, Utah", points: "30K", accommodation: "2 Br", occupancy: 6, kitchen: "Y", wd: "Y", patio: "Y", sqft: "1070", notes: "" } }, // UPDATED: Changed points from "points + cash" to "30K" and updated notes { lat: 40.64, lng: -111.49, details: { name: "Club Wyndham Park City", location: "Park City, Utah", points: "30K", accommodation: "2 Br 2 BA", occupancy: 8, kitchen: "Y", wd: "Y", patio: "Y", sqft: "936", notes: "Updated to 30K points." } }, { lat: 40.51, lng: -111.47, details: { name: "WorldMark Midway", location: "Midway, Utah", points: "30K", accommodation: "2 BR", occupancy: 6, kitchen: "Y", wd: "Y", patio: "Y", sqft: "1134", notes: "Murphy bed in living room" } }, // UPDATED: Standardized "15k" to "15K" { lat: 37.28, lng: -76.72, details: { name: "Club Wyndham Kingsgate", location: "Williamsburg, Virginia", points: "15K", accommodation: "2Br 2 Ba", occupancy: 6, kitchen: "Y", wd: "Y", patio: "Y", sqft: "1016", notes: "" } }, { lat: 46.35, lng: -124.05, details: { name: "WorldMark Long Beach", location: "Long Beach, Washington", points: "30K", accommodation: "2 br", occupancy: 6, kitchen: "Y", wd: "Y", patio: "Y", sqft: "1052-1094", notes: "" } }, { lat: 48.03, lng: -122.87, details: { name: "WorldMark Discovery Bay", location: "Port Townsend, Washington", points: "30K", accommodation: "2 Br", occupancy: 6, kitchen: "Y", wd: "Y", patio: "Y", sqft: "1208", notes: "" } }, { lat: 43.59, lng: -89.78, details: { name: "Club Wyndham Glacier Canyon", location: "Baraboo, Wisconsin", points: "30K", accommodation: "2 Br 2 Ba", occupancy: 8, kitchen: "Y", wd: "Y", patio: "Y", sqft: "1226", notes: "Whirlpool in master" } }, // UPDATED: StandardMized "30k" to "30K" { lat: 48.42, lng: -123.36, details: { name: "WorldMark Victoria", location: "Victoria, British Colombia", points: "30K", accommodation: "2 br", occupancy: 6, kitchen: "Y", wd: "Y", patio: "Y", sqft: "915", notes: "" } }, { lat: 56.29, lng: -3.73, details: { name: "Wyndham Duchally Country Estate", location: "Aucheterarder, Kinross, United Kingdom", points: "30K", accommodation: "2BR", occupancy: 6, kitchen: "Y", wd: "N", patio: "A", sqft: "90 sq m", notes: "Maid service, unique scottish lodge" } }, { lat: -28.16, lng: 153.53, details: { name: "Club Wyndham Kirra Beach", location: "Coolangatta, QLD, Australia", points: "30K", accommodation: "2 BR", occupancy: 6, kitchen: "Y", wd: "Not specified", patio: "Y", sqft: "", notes: "" } }, { lat: 36.50, lng: -4.62, details: { name: "Wyndham Grand Costa Del Sol", location: "Costa Del Sol, Spain", points: "15K", accommodation: "2 Br", occupancy: 6, kitchen: "Y", wd: "Not Specified", patio: "Y", sqft: "78 sq m", notes: "" } } ]; // --- Color & Icon Logic --- // Define colors for different occupancy levels const occupancyColors = { 5: '#ff6d4d', // Coral 6: '#1f7f95', // Teal 8: '#feb06a', // Orange 'default': '#17a8ae' // Default Teal }; // Function to create a custom SVG icon for markers const createHotelIcon = (color) => L.divIcon({ className: 'custom-div-icon', html: ``, iconSize: [32, 32], iconAnchor: [16, 32], // Point of the icon which will correspond to marker's location popupAnchor: [0, -32] // Point from which the popup should open relative to the iconAnchor }); // Create a layer group to hold all markers for easy filtering const markerLayer = L.layerGroup().addTo(map); // --- Filtering and Marker Logic --- function updateMarkers(filterValue) { markerLayer.clearLayers(); // Clear existing markers before adding new ones // Filter locations based on the dropdown selection const filteredLocations = (filterValue === 'all') ? wyndhamLocations : wyndhamLocations.filter(loc => loc.details.points === filterValue); // Loop through the filtered locations and create markers filteredLocations.forEach(loc => { const d = loc.details; const color = occupancyColors[d.occupancy] || occupancyColors['default']; const icon = createHotelIcon(color); // Build the HTML content for the popup let popupContent = `

${d.name}

${d.location}


`; if (d.points) popupContent += `

Points: ${d.points}

`; if (d.accommodation) popupContent += `

Unit: ${d.accommodation}

`; if (d.occupancy) popupContent += `

Sleeps: ${d.occupancy}

`; if (d.sqft) popupContent += `

Sq Ft: ${d.sqft}

`; if (d.kitchen) { if (d.kitchen === 'Y') { popupContent += `

Full Kitchen: Y

`; } else if (d.kitchen === 'K') { popupContent += `

Kitchenette: Y

`; } } if (d.wd) popupContent += `

W/D: ${d.wd}

`; if (d.patio) popupContent += `

Patio/Balcony: ${d.patio}

`; if (d.notes) popupContent += `

Notes: ${d.notes}

`; const marker = L.marker([loc.lat, loc.lng], { icon: icon }); // Bind a popup to each marker marker.bindPopup(popupContent); markerLayer.addLayer(marker); }); } // --- Event Listener for Filter --- document.getElementById('points-filter').addEventListener('change', function(e) { updateMarkers(e.target.value); }); // --- Custom Legend Creation --- function createCustomLegend() { const legendContainer = document.getElementById('custom-legend'); // Changed font-bold to font-semibold to match the filter label let legendHTML = '

Sleeps

'; // Create a legend entry for each color in our occupancyColors object for (let occupancy in occupancyColors) { if (occupancy !== 'default') { legendHTML += `
${occupancy} people
`; } } legendHTML += `
Other
`; legendContainer.innerHTML = legendHTML; } // --- Initial Load --- updateMarkers('all'); // Load all markers initially createCustomLegend(); // Create the custom legend // It's good practice to invalidate the map's size on window load or resize // to ensure it renders correctly, especially in flexible layouts. window.onload = function() { map.invalidateSize(); }; window.onresize = function() { map.invalidateSize(); }

Booking Tips

To book, you’ll go to https://www.wyndhamhotels.com/ and search for the property you’re interested in by name. 

You can choose the option “Use Wyndham Rewards Points” from the drop down menu. 

Some properties may have minimum stay restrictions — you might have more luck finding availability when you look for stays of 3+ nights. 

There is no set date when these properties will have availability for these rooms released. Almost all of these are timeshare properties that give precedence to owners. Some anecdotal reports are that properties in Hawaii may release rooms about 6 months out. 

This map includes two bedroom properties that showed availability to book with points. There are additional properties in Wyndham’s portfolio that didn’t show any availability for a full year to book with points and these were omitted from this list.

Wyndham Hotels for families

Some Wyndham properties show no availability throughout the entire calendar such as seen in this picture.

One thing to note- sometimes the cash prices for these properties are really low relative to the points cost.  A two bedroom condo in Hawaii may cost $400 while a two bedroom condo in Missouri might cost $150. It might not make sense to pay 30,000 points per night for a condo that costs just $150 per night. In those cases, you might look to book your stay using another method like Venture miles (booked directly and using points for a statement credit) or Pay Yourself Back

Example Properties

Shell Vacations Club Holua Resort at Mauna Loa Village, Kona, HI

Wyndham properties for families

Shell Vacations Club Holua Resort at Mauna Loa Village

Shell Vacations Club Holua Resort at Mauna Loa Village has a 2000 sq ft two bedroom fully-equipped townhouse available for 30K per night. Dates in October price out at $400-$500 per night. This resort features several pools, hot tub, fitness center and a central location in South Kona.

Wyndham properties for families

Club Wyndham Bali Hai Villas, Princeville, HI

Wyndham properties for families

Club Wyndham Bali Hai Villas

This 1150 sq ft two bedroom two bath condo is fully equipped. It has a whirlpool tub in the master bath and a large balcony. Cash rates vary from $250 – $500+ per night, making the 30K points a viable option. The property has mountain views, a pool and hot tub, children’s play area and more.

Wyndham family properties

WorldMark Moab, Moab, Utah

WorldMark Moab - Wyndham Family properties

WorldMark Moab

Two bedroom two bath condos can range from high $100’s to $450+ depending on the time of year. These 1000+ sq foot condos feature full kitchens, patios and a fireplace and balcony. Conveniently located near national and state parks, this resort has a pool, hot tub, fitness center, convenience store and children’s play area.

Wyndham Duchally Country Estate, Kinross, United Kingdom

Wyndham properties for large family

Wyndham Duchally Country Estate

This two bedroom, two bath lodge is 90 sq meters and fully equipped. Sometimes you can even book a Three Bedroom for the same price Each lodge boasts a private terrace as well. The estate has a distillery onsite. It also has children’s activities, spa, fitness center and more. Cash rates seemed to range from £250-£350.

Wyndham Family condos

Wyndham Grand Costa Del Sol, Costa Del Sol, Spain

Wyndham Grand Costa Del Sol for Family

Wyndham Grand Costa Del Sol

This two bedroom two bath suite is only 15K points per night! Your suite features sea views and a fully equipped kitchen. The property features heated pools, fitness center, children’s activities and a teen zone along with live entertainment. A spacious suite and prime location on the Spain’s sunshine coast make this a steal!

Wyndham family properties

How to Earn Wyndham Points

Wyndham points can be earned through Wyndham credit cards — or by transferring points to Wyndham from other programs. 

Wyndham Credit Card Options

If you’re earning your points with good old fashioned Wyndham cards, you have three options listed below.

None of these offer affiliate links, so you can google these cards for the best offers. Look for offers of at least 90,000 points. 

  • Wyndham Earner Card
  • Wyndham Earner Plus Card
  • Wyndham Earner Business Card

The Wyndham cards all come with a benefit that gives you a 10% discount on all Wyndham Rewards points bookings. So all these spacious condos that sleep 5+ people will automatically be 10% cheaper if you hold one of the two above mentioned cards. A two bedroom property that costs 30,000 per night will automatically reduce to 27,000 instead.

Transfer points from flexible points currencies

Bilt

You can transfer points from Bilt to Wyndham at a 1:1 ratio.

Capital One

Capital One miles-earning credit cards all give you the ability to transfer to Wyndham at a 1:1 ratio. Transfers to Wyndham are instant – and I can confirm that this was, in fact true, at least in my case. Some of my favorite Capital One Miles earning cards include:

Chase

Chase Ultimate Rewards® points can be transferred to Wyndham at a 1:1 ratio. You’ll need one of these cards to have the ability to transfer to partners:

If you have another card from Chase that earns Ultimate Rewards points (such as a Freedom card or a no annual fee business card like the Ink Business Cash℠ Credit Card), you can combine those points with one of the above cards and then transfer to Wyndham from there.

Citi

Any Citi ThankYou point-earning card has the ability to transfer points to Wyndham. However, transferring them out is a little more nuanced. You can transfer ThankYou points to Wyndham at a 1:1 ratio from a Citi Strata Premier® Card or Citi Strata Elite℠ Card.

Other ThankYou point earning cards, such as the Citi Double Cash® Card or Citi Rewards® Card (no longer accepting applications), allow you to transfer points to Wyndham at a rate of 1000:700. That means 5000 Citi ThankYou points are only worth 3500 Wyndham Rewards. Do note that this reduced value only applies if you don’t have a Citi Prestige, Premier, or Elite card and you’re transferring directly from one of these above mentioned no annual fee cards to partners. I wouldn’t recommend this avenue, considering the other uses that are available for ThankYou points.

Citi transfers to Wyndham typically happen within 24 hours but Citi’s website does note that it may take up to 5 days, so plan accordingly.

Wells Fargo

If you hold the Wells Fargo Autograph® Card or Wells Fargo Autograph Journey℠ Card, you can transfer to Wyndham at a 1:2 ratio.

That means for every 1,000 Wells Fargo Rewards points you transfer, you’ll get 2,000 Wyndham points.

This is the best ratio out there for transferring points to Wyndham. Another plus is that, unlike most other programs, you don’t have to transfer in increments of 100 or 1,000; you can transfer any number of points. This gives you the ability to transfer exactly what you need without rounding up to the next 1,000.

Buy Wyndham Points

A final option for earning Wyndham points is to simply buy them. You can typically buy Wyndham points for 1.3 cents each. However, Wyndham often puts points on sales where they may be as little as 0.7 cents per point. Depending on the cash value of your stay, this might be a lucrative way to book a stay at a significantly reduced rate.

Now that you’re armed with great locations to book and the knowledge to do it, take a look at the map and plan out your next vacation! Let me know if you find another great property for 5 or more people that you can book on points. I’ll add it to the map!

$MMT = window.$MMT || {}; $MMT.cmd = $MMT.cmd || [];$MMT.cmd.push(function(){ $MMT.display.slots.push(["525ae3c8-0ff0-4085-87ef-25d5ef612a1c"]); })

Advertiser Disclosure

Table of Contents
$MMT = window.$MMT || {}; $MMT.cmd = $MMT.cmd || [];$MMT.cmd.push(function(){ $MMT.display.slots.push(["25874acd-1ea9-4f38-8e12-3cc9408d2f6d"]); })
Table of Contents

Responses are not provided or commissioned by the bank advertiser. Responses have not been reviewed, approved or otherwise endorsed by the bank advertiser. It is not the bank advertiser’s responsibility to ensure all posts and/or questions are answered.

Leave A Comment