91³Ô¹ÏÍø

Watch CBS News

Which soccer players will be in the 2024 Paris Olympics?

As soccer in the Paris Olympics kicks off, the U.S. men's and women's national teams are looking for gold in the City of Love.

While the opening ceremony is on Friday, matches officially began Wednesday as the U.S. men's national soccer team were blanketed 3-0 by host France. The U.S. women's national soccer team  Thursday. 

FBL-OLY-PARIS-2024-USA-ZAM
U.S. midfielder Lindsey Horan is challenged by Zambia's midfielder Grace Chanda in the women's group A football match between the USA and Zambia during the Paris 2024 Olympic Games.  VALERY HACHE/AFP via Getty Images

Due to rules put in place by FIFA, soccer's governing body, men's soccer teams can only send players under 23 to the Olympics,  along with a maximum of three players who don't meet that age requirement. Women's teams are not restricted by age. 

While some superstars such as Argentina's Lionel Messi or Brazil's Neymar won't be on the pitch for the Summer Games, the competition will still be loaded with talent from across the world. Here's who will be part of the U.S. men's and women's soccer teams. 

U.S. women's soccer team players for the 2024 Olympics

  • Goalkeepers: Casey Murphy and Alyssa Naeher
  • Defenders: Tierna Davidson, Emily Fox, Naomi Girma, Casey Krueger, Jenna Nighswong and Emily Sonnett
  • Midfielders: Korbin Albert, Sam Coffey, Lindsey Horan and Rose Lavelle
  • Forwards: Crystal Dunn, Trinity Rodman, Jaedyn Shaw, Sophia Smith, Mallory Swanson and Lynn Williams
  • Alternates: Midfielder Croix Bethune, goalkeeper Jane Campbell, midfielder Hal Hershfelt and defender Emily Sams
FBL-OLY-PARIS-2024-USA-ZAM
U.S. players listen to their national anthem before the women's group A football match between the USA and Zambia during the Paris 2024 Olympic Games at the Nice Stadium in Nice, on July 25, 2024. VALERY HACHE/AFP via Getty Images

U.S. men's soccer team roster for the 2024 Olympics

  • Goalkeepers: Patrick Schulte and Gaga Slonina 
  • Midfielders: Maximilian Dietz, Gianluca Busio and Jack McGlynn 
  • Defenders: Nathan Harriel, Miles Robinson, John Tolkin, Caleb Wiley and Walker Zimmerman 
  • Forwards: Benjamin Cremaschi, Djordje Mihailovic, Duncan McGuire, Kevin Paredes and Griffin Yow
  • Alternates: Midfielder John Atencio, defender Jake Davis, forward Johan Gomez and goalkeeper John Pulskamp 
United States U23 Training Sessions
Players pose for a team photo during USMNT U23 training on July 22, 2024 in Marseille, France. Getty Images

Notable soccer players who will be playing in Paris

Argentinian forward Julián Álvarez – less than two weeks after winning the Copa America – will be leading his national team. Moroccan defender Achraf Hakimi and U.S. captain Walker Zimmerman are also players to watch on the men's side. 

USWNT's Lindsey Horan, Sophia Smith and Trinity Rodman are guiding a fresh American team seeking to get back to its winning ways. In their path for glory will be Spain's national women's team, who are looking to be the first team to win a gold medal in France after winning a women's World Cup trophy. Spain's roster is filled with talent, including current Ballon d'Or winner Aitana Bonmati and star Alexia Putellas. 

FBL-OLY-PARIS-2024-ARG-MAR
Morocco's defender chraf Hakimi challenges Argentina's forward Julian Alvarez in a match between Argentina and Morocco during the Paris 2024 Olympic Games at the Geoffroy-Guichard Stadium in Saint-Etienne on July 24, 2024. ARNAUD FINISTRE/AFP via Getty Images

Notable soccer players who won't be playing in Paris

Longtime USWNT star Alex Morgan won't be on the team this year after the squad did not include her in the Paris-bound roster. French and new Real Madrid striker Kylian Mbappe won't play in front of his country because his club team didn't allow him to play. Don't expect to see USMNT star Christian Pulisic, Portugal's Cristiano Ronaldo, England's Harry Kane or Norway's Erling Haaland either.

View CBS News In
CBS News App Open
Chrome Safari Continue
const link = doc.createElement('link'); link.rel = 'stylesheet'; link.href = '/fly/fly/bundles/cbsnewscontent/css/cmp-banner.min.css?v=296763317a51cab90faa73f1bb146d5c'; doc.head.appendChild(link); doc.body.innerHTML = CONSENT_MESSAGE; } else { el.insertAdjacentHTML('afterend', CONSENT_MESSAGE); } }); } function hidePrivacyMessage() { // Remove from the main document document.querySelectorAll(`.${CONSENT_MESSAGE_CLASS}`).forEach(el => el.remove()); // Remove from inside any iframes document.querySelectorAll('iframe').forEach(iframe => { const doc = iframe.contentDocument || iframe.contentWindow.document; doc.querySelectorAll(`.${CONSENT_MESSAGE_CLASS}`).forEach(el => el.remove()); }); } function activateGatedScripts() { // Handle both new format (cmp-gated-script) and old OneTrust/Ketch format (optanon-category-4) const gatedScripts = Array.from(document.querySelectorAll('script.cmp-gated-script, script.optanon-category-4')); // Activate scripts sequentially with a small delay to avoid timing issues let delay = 0; gatedScripts.forEach(function(placeholder, index) { setTimeout(function() { // Skip if already processed if (placeholder.hasAttribute('data-cmp-processed')) { return; } placeholder.setAttribute('data-cmp-processed', 'true'); const newScript = document.createElement('script'); newScript.type = 'text/javascript'; // Try new format first (data-cmp-src), then fall back to old format (data-src) const src = placeholder.getAttribute('data-cmp-src') || placeholder.getAttribute('data-src'); if (src) { newScript.src = src; } else if (placeholder.textContent) { // Inline script - just copy the content newScript.textContent = placeholder.textContent; } // Handle new format attributes (data-cmp-attrs) - for both inline and external scripts const attrs = placeholder.getAttribute('data-cmp-attrs'); if (attrs) { const tempDiv = document.createElement('div'); tempDiv.innerHTML = '
<\/div>'; const tempAttrs = tempDiv.firstChild.attributes; for (let i = 0; i < tempAttrs.length; i++) { // For external scripts, allow defer/async. For inline scripts, skip them (not valid) if (src || (tempAttrs[i].name !== 'async' && tempAttrs[i].name !== 'defer')) { newScript.setAttribute(tempAttrs[i].name, tempAttrs[i].value); } } } // Copy other attributes from old OneTrust format for (let i = 0; i < placeholder.attributes.length; i++) { const attr = placeholder.attributes[i]; // Skip attributes we've already handled or don't want to copy if (!['class', 'data-src', 'data-type', 'data-cmp-src', 'data-cmp-attrs', 'data-cmp-processed', 'type', 'async', 'defer', 'src'].includes(attr.name)) { newScript.setAttribute(attr.name, attr.value); } } placeholder.parentNode.replaceChild(newScript, placeholder); // If external script, manually trigger window.onload handlers after it loads // This handles widgets that use window.onload for initialization if (src) { newScript.addEventListener('load', function() { // If page already loaded and script set a new onload handler, trigger it if (document.readyState === 'complete' && window.onload) { const originalOnload = window.onload; window.onload = null; // Clear temporarily to prevent loops originalOnload(); // Execute the handler } }); } }, delay); delay += 500; // 500ms delay between each script to allow full loading }); } cbsoptanon.onScriptsReady(function(cmp) { cmp.ot.targetingAllowed(function(allowed) { if (!allowed) { showPrivacyMessage(); } else { activateGatedScripts(); } }); cmp.ot.awaitInitialConsent(function(consent_model) { cmp.ot.addOnConsentChangedHandler(function() { cmp.ot.targetingAllowed(function(allowed) { if (allowed) { hidePrivacyMessage(); activateGatedScripts(); } else { showPrivacyMessage(); } }); }); }); });