Match Details

Fixture: (2) Iga Swiatek vs (1) Aryna Sabalenka

Date: November 4, 2023

Tournament:WTA Finals 2023

Round: Semifinal

Venue: Cancun, Mexico

Category: Year-ending championships

Surface: Hardcourt

Prize money: $9,000,000

Live telecast: USA – Tennis Channel | UK – Amazon Prime Video


Iga Swiatek vs Aryna Sabalenka preview

Swiatek is two wins away from ending the year as the World No. 1.
Swiatek is two wins away from ending the year as the World No. 1.

It's 1 vs 2 in the WTA Finals semifinal in Cancun, Mexico, where World No. 1 Aryna Sabalenka takes on Iga Swiatek in a potentially winner-takes-all showdown.

If Sabalenka takes the win, she will end the year as the World No. 1 but if she loses and Swiatek goes on to win the title, the Pole will usurp Sabalenka.

Having produced a perfect group-stage campaign - just what she needed to keep her slim World No. 1 hopes alive - the second-ranked Swiatek is coming off a dominating win over Ons Jabeur in her last group game.

The 22-year-old dropped just one game as she took the opener. It was more of the same in the second - with Swiatek dropping two games - to storm into the last four. It was her 66th win of the year in 77 matches and her ninth on the trot, eighth without dropping a set.

In Cancun, Swiatek has meant business all week, seeing off Marketa Vondrousova, Coco Gauff and now Jabeur, dropping just 14 games, including two bagel sets.

Meanwhile, World No. 1 Sabalenka hasn't played her best tennis this week. However, she bounced back from a loss to Jessica Pegula in her second group game to beat Elena Rybakina in three sets.

After taking the opening set for the loss of two games, the reigning Australian Open winner dropped the second 6-3. However, Sabalenka regained control of proceedings, producing a 6-3 set of her own to book a meeting with Swiatek.

She's now 55-13 in 2023 and one win away from ending the year as the World No. 1 for the first time.


Iga Swiatek vs Aryna Sabalenka head-to-head

Swiatek has won five of her eight meetings with Sabalenka. The pair is 1-1 in 2023, with the World No. 1 winning their last clash in three sets in the Madrid final.


Iga Swiatek vs Aryna Sabalenka odds

PlayerMoneylineHandicap BetsTotal Games (over/under)
Iga Swiatek
Aryna Sabalenka

(The odds will be updated when they release)


Iga Swiatek vs Aryna Sabalenka prediction

Sabalenka is looking to end the year as the No. 1.
Sabalenka is looking to end the year as the No. 1.

Swiatek and Sabalenka are two of the best players on the WTA Tour, and their ranking is a testament to that.

Both have little conceivable weakness, with both being powerful servers, strong hitters of the ball and good movers. Both Swiatek and Sabalenka have won Grand Slam titles this year, but the Pole is the more in-form player heading into their third matchup of 2023.

Expect Swiatek to continue her sparkling late-season form and take a hard-fought win.

Pick: Swiatek in three sets

Quick Links

More from Sportskeeda

" modalPopup.closeOnEsc = false; modalPopup.setHeader("Why did you not like this content?"); modalPopup.setContentText(modalText); modalPopup.addCancelOkButton("Submit", resetRatingAndFeedbackForm, sendRating); modalPopup.removeCloseModalIcon(); modalPopup.disableDismissPopup(); modalPopup.open(); } else { sendRating(index); } } function sendRating() { var requestPayload = { "post_id": 1733764, "rating_value": ratingValue } if (ratingValue > 3) { requestPayload.rating_feedback_type = null; requestPayload.rating_feedback = null; } else { if (!$('input[name="drone"]:checked') || !$('input[name="drone"]:checked').value) { showErrorMessage('option'); return; } if (!$(".post-rating-feedback-note textarea") || !$(".post-rating-feedback-note textarea").value) { showErrorMessage('note'); return; } var selectedOption = $('input[name="drone"]:checked').value; var feedbackNote = $(".post-rating-feedback-note textarea").value; requestPayload.rating_feedback_type = selectedOption; requestPayload.rating_feedback = feedbackNote; } pureJSAjaxPost(addratingAPI, requestPayload, onsaveRatingSuccess, onsaveRatingFail, function() {}, true); } function resetRatingAndFeedbackForm() { var activeStars = Array.from($all('.rating span.rating-star.active')); for (var i=0; i < activeStars.length; i++) { activeStars[i].classList.remove("active"); } if ($('input[name="drone"]:checked')) { $('input[name="drone"]:checked').checked = false; } var userNote = document.querySelector(".post-rating-feedback-note textarea"); userNote.value = ''; modalPopup.close(); } function onsaveRatingSuccess() { modalPopup.close(); savePostIdInUserRatedPostsCookie(); $("#post-rating-layout").classList.add("hidden"); $("#post-rating-message").classList.remove("hidden"); window.setInterval(function showMessage() { $("#post-rating-widget").classList.add("hidden"); }, 3000); } function onsaveRatingFail() { console.error('Saving post rating failed!'); modalPopup.close(); } function savePostIdInUserRatedPostsCookie() { userRatedPostIds.push(1733764); var expiryTime = new Date(); expiryTime.setMonth(expiryTime.getMonth() + 12); // Expiry after 1 year setCookie("user_rated_post_ids", JSON.stringify(userRatedPostIds), expiryTime); } function isPostRatedByUser() { var userRatedPostIds = getCookie('user_rated_post_ids'); if (userRatedPostIds) { try { userRatedPostIds = JSON.parse(userRatedPostIds); } catch (err) { console.error(err); return false; } } else { return false; } if(userRatedPostIds.indexOf(1733764) >= 0) { return true; } else { return false; } } function getRatingCountByPostId(postId) { return new Promise(function(resolve, reject) { pureJSAjaxGet( getRatingCountBaseURL + postId + '/rating/count', function(data) { try { data = JSON.parse(data); if (data.meta_value) { resolve(data.meta_value); } reject("Failed to fetch rating count for the post:" + postId); } catch (err) { reject("Failed to fetch rating count for the post:" + postId); } }, function(err) { reject("Failed to fetch rating count for the post:" + postId); }, true); }); } function showErrorMessage(messageType) { var messageContainerId = '#' + messageType + '-error'; $(messageContainerId).classList.remove('hidden'); window.setInterval(function () { $(messageContainerId).classList.add("hidden"); }, 5000); } (function() { var callFired = false; function lazyLoadPostRating() { if (callFired) return; callFired = true; if (!isPostRatedByUser()) { getRatingCountByPostId(1733764) .then(function(ratingCount) { if (ratingCount < 10) { $("#post-rating-widget").classList.remove("hidden"); } }) .catch(function(err){ console.error(err); }); } } document.addEventListener("scroll", lazyLoadPostRating, { passive: true, once: true }); document.addEventListener("mousemove", lazyLoadPostRating, { passive: true, once: true }); document.addEventListener("touchmove", lazyLoadPostRating, { passive: true, once: true }); })();