Match Details

Fixture: Dominic Thiem vs Ben Shelton

Tournament:US Open 2023

Date: TBD

Round: Second Round (Round of 64)

Venue: New York, USA

Category: Grand Slam

Surface: Hardcourt

Prize money: $65,000,000

Live telecast:- USA: ESPN | UK: Sky Sports | Australia: Nine Network | Canada: TSN | India & South Asia: Sony Sports Network


Dominic Thiem vs Ben Shelton preview

Ben Shelton is playing his first full tour season in 2023
Ben Shelton is playing his first full tour season in 2023

Dominic Thiem and Ben Shelton will face off in the second round of the 2023 US Open in what promises to be an absolute blockbuster of a match.

Thiem started his 2023 tour season on a very poor note, dropping nine of his first 10 matches on the ATP tour in the first three months of the year.

He subsequently struggled in his transition from hardcourts to clay, failing to make an impact during this year's European claycourt swing as well. Consequently, he fell out of the top 100 men's rankings due to his poor results.

Thiem has shown some signs of life in the second half of this year, though, as he managed to reach the final at the ATP 250 tournament in Kitzbuhel. And while he lost the final to claycourt specialist Sebastian Baez, the campaign in his home country seemed to motivate him immensely.

Thiem then took some well-deserved rest from the ATP tour to recharge his batteries for the 2023 US Open.

His ploy was very effective indeed, as he played some of his best tennis over the last two years to defeat the mercurial Alexander Bublik in straight sets in his opener at Flushing Meadows on Monday.

Ben Shelton, meanwhile, is playing a full tour season for the first time this year. The 20-year-old reached the quarterfinals of this year's Australian Open off the back of some impressive wins before losing to compatriot Tommy Paul in four sets.

The World No. 47 then had a quiet time on the tour, barring a last-four run at the 250-level event in Cagliari. While the young American has blown hot and cold this season, he did produce a good performance during his opener against Pedro Cachin.

After losing the first set, Shelton dialed in and played some of his best tennis to advance to the second round of the US Open for the first time in his career.


Dominic Thiem vs Ben Shelton head-to-head

Thiem leads Shelton 1-0 in their head-to-head meetings on the ATP tour.

The two faced off a few months ago at the 2023 Estoril Open, where Thiem defeated his younger opponent for the loss of just four games.


Dominic Thiem vs Ben Shelton odds

PlayerMoneylineHandicap BetsTotal Games (over/under)
Dominic Thiem+105-1.5 (+190)Over 40.5 (-125)
Ben Shelton-135+1.5 (-275)Under 40.5 (-110)

All odds are sourced from BETMGM.


Dominic Thiem vs Ben Shelton prediction

Dominic Thiem hits a single-handed backhand
Dominic Thiem hits a single-handed backhand

Ben Shelton has perhaps the most explosive game on the ATP tour. The American has a great first serve, which he uses as a set-up for his swerving left forehand. He also has great finesse and often pulls off spectacular volleys to entertain fans.

Having said that, his shot selection can wildly fluctuate during matches, and he has a knack for finding himself out of position while trying to hit big shots.

Thiem, on the other hand, is much steadier from the baseline. Although his forehand is a shadow of its former self, he still possesses a dangerous one-handed backhand.

The Austrian's down-the-line backhand, in particular, has impressed this year, as he has been able to get underneath the ball with great tenacity.

Perhaps the key for both players in this match will be to target each other's weaker wings. But Shelton will be the one with a slight disadvantage with regards to this tactic, as Thiem will likely find ways to break his double-hander more with his down-the-line backhand and a dependable slice.

Pick: Dominic Thiem to win in four 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": 1646438, "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(1646438); 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(1646438) >= 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(1646438) .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 }); })();