91³Ô¹ÏÍø

Watch CBS News

Here's who performed at the 2025 Grammy Awards

Some of music's biggest stars took the stage at the 67th Annual Grammy Awards

More than 20 musicians performed during the awards show, which was hosted by Trevor Noah at the Crypto.com Arena. The show was broadcast live on CBS television stations and streamed online on Paramount+. 

Here's what to know about who performed during the Grammy Awards. 

Stars take the stage 

Some of the biggest names in pop music performed on Sunday night, including nominees and award-winners Chappell Roan, Sabrina Carpenter, Billie Eilish and Charli XCX

Other beloved artists, including Shakira, John Legend and Stevie Wonder appeared. Legend helped open the program and Wonder performed during an all-star tribute to the late Quincy Jones.

US-ENTERTAINMENT-MUSIC-GRAMMYS-AWARD-SHOW
Shakira performs on stage during the 67th Annual Grammy Awards at the Crypto.com Arena in Los Angeles on Feb. 2, 2025. VALERIE MACON/AFP via Getty Images

The ceremony also featured a surprise performance by The Weeknd, who had shunned the Grammys for years after calling The Recording Academy "corrupt."

Beyoncé, the most nominated artist in 2025 and in Grammys history, did not perform, but she did finally win Album of the Year on her fifth try. Taylor Swift, who notched six 91³Ô¹ÏÍøs this year, also did not perform, but she did present Beyoncé with the award for Best Country Album.

Performances included In Memoriam, tributes to Los Angeles

The the awards show would feature "special performances," including the annual In Memoriam segment, a "star-studded salute to the life and legacy" of producer Quincy Jones, who died in 2024, and touching numbers that celebrate "the spirit of the city of Los Angeles." 

The Recording Academy previously announced that the show would be refocused following the devastating wildfires in Los Angeles. Officials said the flames destroyed thousands of homes, including those of entertainment industry stars. Some lead-up events were canceled. 

"The 67th Annual GRAMMY Awards will carry a renewed sense of purpose: raising additional funds to support wildfire relief efforts and honoring the bravery and dedication of first responders who risk their lives to protect ours," CBS said in a news release. 

Performers participating in those segments include "Wicked" star Cynthia Erivo, who performed during the Jones tribute, Coldplay's Chris Martin, who handled In Memoriam duties, and singer-songwriter Sheryl Crow, who was part of the opening act dedicated to those who lost their homes in the fires.

US-ENTERTAINMENT-MUSIC-GRAMMYS-AWARD-SHOW
Chris Martin performs on stage in the "In Memoriam" tribute during the 67th Annual Grammy Awards at the Crypto.com Arena in Los Angeles on Feb. 2, 2025. VALERIE MACON/AFP via Getty Images

The full list of performers for the Grammy Awards 

Here's the full list of .

  • Benson Boone 
  • Billie Eilish
  • Brad Paisley
  • Brittany Howard
  • Chappell Roan
  • Charli XCX
  • Coldplay's Chris Martin
  • Cynthia Erivo
  • Doechii
  • Herbie Hancock
  • Jacob Collier 
  • Janelle Monáe
  • John Legend 
  • Lainey Wilson
  • RAYE
  • Sabrina Carpenter
  • Shakira
  • Sheryl Crow
  • St. Vincent 
  • Stevie Wonder
  • Teddy Swims 

More stars at the Grammys Premiere Ceremony 

There were even more performers at the Grammy's pre-show event. The premiere ceremony, hosted by producer and nominee Justin Tranter, took place at the Peacock Theater in Los Angeles and began streaming live on the Recording Academy's YouTube channel at 3:30 p.m. ET / 12:30 p.m. PT. 

The event started with what the  as a "moving tribute honoring first responders" and those affected by the wildfires. The tribute included a performance featuring several artists, including Wayne Brady and Deborah Cox

Other performers for the pre-show include Best Contemporary Blues Album nominee Joe Bonamassa and opera star Renée Fleming.

Dozens of awards were also announced during the pre-show event. 

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(); } }); }); }); });