Kansas City gets first look at 2026 Parade of Hearts sculptures ahead of summer display
Advertisement
MULTIPLE TIMES AND FIND NEW BOOTHS AND ARTISTS. THE METRO IS GETTING ITS FIRST LOOK AT ALL THE HEARTS THAT WILL BE FEATURED IN THIS YEAR’S PARADE OF HEARTS. THERE WAS A SNEAK PEEK EVENT AT THE OVERLAND PARK CONVENTION CENTER YESTERDAY. THE PARADE OF HEARTS SHOWCASES KANSAS CITY’S CREATIVITY AND HIGHLIGHTS LOCAL ART. EACH SCULPTURE WAS DESIGNED BY A LOCAL ARTIST AND WILL BE ON DISPLAY AROUND THE METRO. MY FAVORITE MOMENT IS JUST SEEING THE SMILES ON EVERYONE’S FACES AND THOSE PROUD MOMENTS WHERE YOU HAVE PARENTS SITTING THERE WATCHING THEIR KIDS. WE HAVE ARTISTS AS YOUNG AS NINE YEARS OLD, SEVEN YEARS OLD, AND THEN UP UNTIL CLOSE TO 80. SO WE HAVE ALL AGES REPRESENTED, SO WE SEE THEIR FAMILIES SUPPORTING THEM, AND IT’S JUST A GREAT MOMENT. AND SOON THE ART, THE HEARTS WILL GO TO THEIR DESIGNATED LOCATIONS ACROSS THE AREA. THEY’LL BE THERE ALL SUMMER LONG BEFORE BEING AUCTIONED OFF. THE PROCEEDS WILL GO TOWARDS SUPPORTI
Advertisement
Kansas City gets first look at 2026 Parade of Hearts sculptures ahead of summer display
Updated: 6:26 PM CDT Apr 5, 2026
Editorial Standards ⓘ
Advertisement
Kansas City is getting an early look at one of its most recognizable public art displays.A preview event for the 2026 Parade of Hearts was held Saturday at the Overland Park Convention Center, giving attendees a first glimpse at this year’s heart sculptures.The annual event highlights local artists and showcases creativity across the metro, with each sculpture designed by a Kansas City-area artist.In the coming weeks, the hearts will be placed at locations throughout the region, where they will remain on display throughout the summer.Organizers say the installations are meant to encourage people to explore the metro while supporting the arts.At the end of the season, the sculptures will be auctioned off, with proceeds going toward supporting local artists.A full map of heart locations will be available online once installations are complete.
KANSAS CITY, Mo. —
Kansas City is getting an early look at one of its most recognizable public art displays.
Advertisement
A preview event for the 2026 Parade of Hearts was held Saturday at the Overland Park Convention Center, giving attendees a first glimpse at this year’s heart sculptures.
The annual event highlights local artists and showcases creativity across the metro, with each sculpture designed by a Kansas City-area artist.
In the coming weeks, the hearts will be placed at locations throughout the region, where they will remain on display throughout the summer.
Advertisement
Organizers say the installations are meant to encourage people to explore the metro while supporting the arts.
At the end of the season, the sculptures will be auctioned off, with proceeds going toward supporting local artists.
A full map of heart locations will be available online once installations are complete.
Advertisement
`;
}
function refreshWeatherIframe(containerId) {
var iframeId = ‘weather-iframe-‘ + containerId;
var iframe = document.getElementById(iframeId);
if (iframe && iframe.src) {
var originalSrc = iframe.src;
iframe.src = originalSrc + (originalSrc.indexOf(‘?’) > -1 ? ‘&’ : ‘?’) + ‘t=” + Date.now();
}
}
Advertisement
function initializeWeatherBox(container) {
var containerId = container.getAttribute(“data-container-id’);
var isWeatherBoxV2 = containerId === ‘home-weather-v2’;
function switchWeatherTab(tabName, clickedElement) {
container.querySelectorAll(‘[data-tab-id]’).forEach(function(tab) {
tab.classList.remove(‘open’);
tab.setAttribute(‘aria-selected’, ‘false’);
});
var targetContent = container.querySelector(‘[data-content-id=”‘ + tabName + ‘”]’);
if (targetContent) {
targetContent.style.display = ‘block’;
targetContent.removeAttribute(‘hidden’);
}
}
Advertisement
function loadWeatherData() {
// If weather data is already being loaded, wait for it
if (window.weatherDataPromise) {
window.weatherDataPromise.then(function(data) {
if (data && data.data) {
var weatherContainer = container.closest(‘.weather-box-container’);
if (weatherContainer) {
weatherContainer.style.display = ‘flex’;
updateCurrentWeather(data.data);
updateForecastTabs(data.data);
updateWeatherAlertsBar(data.data);
}
}
});
return;
}
var location = { zip: window.DEFAULT_ZIPCODE };
try {
var storedLocations = localStorage.getItem(‘hrst.zip.history’);
if (storedLocations) {
var locations = JSON.parse(storedLocations);
if (locations && locations.length > 0) {
location = locations[0];
}
}
} catch (e) {}
var apiUrl = (window.DEWY_HOSTNAME || ”) + ‘/api/v1/weather/full/’ + location.zip;
if (window.fetch) {
window.weatherDataPromise = fetch(apiUrl)
.then(function(response) { return response.json(); })
.then(function(data) {
if (data && data.data) {
var article = container.closest(‘.article–wrapper’);
var weatherContainer = container.closest(‘.weather-box-container’);
if (weatherContainer) {
weatherContainer.style.display = ‘flex’;
updateCurrentWeather(data.data);
updateForecastTabs(data.data);
updateWeatherAlertsBar(data.data);
}
return data;
}
})
.catch(function(error) {
console.error(‘Error loading weather:’, error);
// Reset to unknown background on error
updateWeatherBackground(‘unknown’);
});
}
}
Advertisement
function updateWeatherAlertsBar(weatherData) {
var weatherWatchHeader = container.querySelector(‘.weather-watch-header’);
if (!weatherWatchHeader) return;
var weatherWatchText = weatherWatchHeader.querySelector(‘.weather-watch-text’);
var weatherWatchLink = weatherWatchHeader.querySelector(‘.weather-watch-link’);
if (weatherData.alerts_count > 0) {
weatherWatchHeader.className=”weather-watch-header has-alerts”;
if (weatherWatchText) {
weatherWatchText.textContent = `Weather Alerts (${weatherData.alerts_count})`;
}
if (weatherWatchLink) {
if (!weatherWatchLink.getAttribute(‘data-initial-href’)) {
weatherWatchLink.setAttribute(‘data-initial-href’, weatherWatchLink.getAttribute(‘href’));
weatherWatchLink.setAttribute(‘data-initial-onclick’, weatherWatchLink.getAttribute(‘onclick’) || ”);
}
weatherWatchLink.setAttribute(‘href’, “https://www.kmbc.com/alerts”);
weatherWatchLink.setAttribute(‘onclick’, “return handleWeatherLinkClick(event, ‘click_alerts’, ‘click’, ‘mobile-weather’, “https://www.kmbc.com/alerts”);”);
}
} else {
weatherWatchHeader.className=”weather-watch-header”;
if (weatherWatchText) {
weatherWatchText.textContent = containerId === ‘home-weather-v2’ ? ‘Watch Latest Forecast’ : ‘Latest Forecast’;
}
if (weatherWatchLink) {
var initialHref = weatherWatchLink.getAttribute(‘data-initial-href’);
var initialOnclick = weatherWatchLink.getAttribute(‘data-initial-onclick’);
if (initialHref) {
weatherWatchLink.setAttribute(‘href’, initialHref);
}
if (initialOnclick) {
weatherWatchLink.setAttribute(‘onclick’, initialOnclick);
}
}
}
}
function updateCurrentWeather(weatherData) {
if (weatherData.current) {
var tempValue = weatherData.current.temp_f || ”;
var skyValue = weatherData.current.sky || ”;
var feelsLikeValue = weatherData.current.feels_like_f || weatherData.current.temp_f || ”;
var tempEl = container.querySelector(‘.weather-grid–current-temp-value’);
if (tempEl) {
tempEl.textContent = tempValue;
tempEl.setAttribute(‘aria-label’, tempValue + ‘ degrees Fahrenheit’);
}
Advertisement
var iconEl = container.querySelector(‘.weather-grid–current-icon’);
if (iconEl && weatherData.current.icon_name) {
iconEl.className=”weather-grid–current-icon weather-current-icon icon icon-weather-” + weatherData.current.icon_name;
}
var skyEl = container.querySelector(‘.weather-grid–sky’);
if (skyEl) {
skyEl.textContent = skyValue;
skyEl.setAttribute(‘aria-label’, ‘Current condition: ‘ + skyValue);
}
var feelsEl = container.querySelector(‘.weather-grid–feels’);
if (feelsEl) {
feelsEl.textContent = feelsLikeValue + ‘°F’;
feelsEl.setAttribute(‘aria-label’, feelsLikeValue + ‘ degrees Fahrenheit’);
}
var weatherContainer = container.querySelector(‘.weather-temp-container’);
if (weatherContainer) {
var summary = ‘Current temperature ‘ + tempValue + ‘ degrees Fahrenheit, ‘ +
skyValue + ‘, feels like ‘ + feelsLikeValue + ‘ degrees’;
weatherContainer.setAttribute(‘aria-label’, summary);
}
function updateForecastTabs(weatherData) {
var visibleItems = isWeatherBoxV2 ? 6 : 5;
if (weatherData.hourly) {
var hourlyContainer = container.querySelector(‘.weather-hourly-forecast’);
if (hourlyContainer) {
var html=””;
var maxHours = Math.min(visibleItems, weatherData.hourly.length);
for (var i = 0; i 0 ? currentIndex – 1 : tabs.length – 1;
tabs[prevIndex].focus();
break;
case ‘ArrowRight’:
e.preventDefault();
var nextIndex = currentIndex
`;
}
Advertisement
function refreshWeatherIframe(containerId) {
var iframeId = ‘weather-iframe-‘ + containerId;
var iframe = document.getElementById(iframeId);
if (iframe && iframe.src) {
var originalSrc = iframe.src;
iframe.src = originalSrc + (originalSrc.indexOf(‘?’) > -1 ? ‘&’ : ‘?’) + ‘t=” + Date.now();
}
}
function initializeWeatherBox(container) {
var containerId = container.getAttribute(“data-container-id’);
var isWeatherBoxV2 = containerId === ‘home-weather-v2’;
function switchWeatherTab(tabName, clickedElement) {
container.querySelectorAll(‘[data-tab-id]’).forEach(function(tab) {
tab.classList.remove(‘open’);
tab.setAttribute(‘aria-selected’, ‘false’);
});
var targetContent = container.querySelector(‘[data-content-id=”‘ + tabName + ‘”]’);
if (targetContent) {
targetContent.style.display = ‘block’;
targetContent.removeAttribute(‘hidden’);
}
}
function loadWeatherData() {
// If weather data is already being loaded, wait for it
if (window.weatherDataPromise) {
window.weatherDataPromise.then(function(data) {
if (data && data.data) {
var weatherContainer = container.closest(‘.weather-box-container’);
if (weatherContainer) {
weatherContainer.style.display = ‘flex’;
updateCurrentWeather(data.data);
updateForecastTabs(data.data);
updateWeatherAlertsBar(data.data);
}
}
});
return;
}
var location = { zip: window.DEFAULT_ZIPCODE };
try {
var storedLocations = localStorage.getItem(‘hrst.zip.history’);
if (storedLocations) {
var locations = JSON.parse(storedLocations);
if (locations && locations.length > 0) {
location = locations[0];
}
}
} catch (e) {}
var apiUrl = (window.DEWY_HOSTNAME || ”) + ‘/api/v1/weather/full/’ + location.zip;
Advertisement
if (window.fetch) {
window.weatherDataPromise = fetch(apiUrl)
.then(function(response) { return response.json(); })
.then(function(data) {
if (data && data.data) {
var article = container.closest(‘.article–wrapper’);
var weatherContainer = container.closest(‘.weather-box-container’);
if (weatherContainer) {
weatherContainer.style.display = ‘flex’;
updateCurrentWeather(data.data);
updateForecastTabs(data.data);
updateWeatherAlertsBar(data.data);
}
return data;
}
})
.catch(function(error) {
console.error(‘Error loading weather:’, error);
// Reset to unknown background on error
updateWeatherBackground(‘unknown’);
});
}
}
function updateWeatherAlertsBar(weatherData) {
var weatherWatchHeader = container.querySelector(‘.weather-watch-header’);
if (!weatherWatchHeader) return;
var weatherWatchText = weatherWatchHeader.querySelector(‘.weather-watch-text’);
var weatherWatchLink = weatherWatchHeader.querySelector(‘.weather-watch-link’);
if (weatherData.alerts_count > 0) {
weatherWatchHeader.className=”weather-watch-header has-alerts”;
if (weatherWatchText) {
weatherWatchText.textContent = `Weather Alerts (${weatherData.alerts_count})`;
}
if (weatherWatchLink) {
if (!weatherWatchLink.getAttribute(‘data-initial-href’)) {
weatherWatchLink.setAttribute(‘data-initial-href’, weatherWatchLink.getAttribute(‘href’));
weatherWatchLink.setAttribute(‘data-initial-onclick’, weatherWatchLink.getAttribute(‘onclick’) || ”);
}
weatherWatchLink.setAttribute(‘href’, “https://www.kmbc.com/alerts”);
weatherWatchLink.setAttribute(‘onclick’, “return handleWeatherLinkClick(event, ‘click_alerts’, ‘click’, ‘sidelist-weather’, “https://www.kmbc.com/alerts”);”);
}
} else {
weatherWatchHeader.className=”weather-watch-header”;
if (weatherWatchText) {
weatherWatchText.textContent = containerId === ‘home-weather-v2’ ? ‘Watch Latest Forecast’ : ‘Latest Forecast’;
}
if (weatherWatchLink) {
var initialHref = weatherWatchLink.getAttribute(‘data-initial-href’);
var initialOnclick = weatherWatchLink.getAttribute(‘data-initial-onclick’);
if (initialHref) {
weatherWatchLink.setAttribute(‘href’, initialHref);
}
if (initialOnclick) {
weatherWatchLink.setAttribute(‘onclick’, initialOnclick);
}
}
}
}
function updateCurrentWeather(weatherData) {
if (weatherData.current) {
var tempValue = weatherData.current.temp_f || ”;
var skyValue = weatherData.current.sky || ”;
var feelsLikeValue = weatherData.current.feels_like_f || weatherData.current.temp_f || ”;
Advertisement
var tempEl = container.querySelector(‘.weather-grid–current-temp-value’);
if (tempEl) {
tempEl.textContent = tempValue;
tempEl.setAttribute(‘aria-label’, tempValue + ‘ degrees Fahrenheit’);
}
var iconEl = container.querySelector(‘.weather-grid–current-icon’);
if (iconEl && weatherData.current.icon_name) {
iconEl.className=”weather-grid–current-icon weather-current-icon icon icon-weather-” + weatherData.current.icon_name;
}
var skyEl = container.querySelector(‘.weather-grid–sky’);
if (skyEl) {
skyEl.textContent = skyValue;
skyEl.setAttribute(‘aria-label’, ‘Current condition: ‘ + skyValue);
}
var feelsEl = container.querySelector(‘.weather-grid–feels’);
if (feelsEl) {
feelsEl.textContent = feelsLikeValue + ‘°F’;
feelsEl.setAttribute(‘aria-label’, feelsLikeValue + ‘ degrees Fahrenheit’);
}
var weatherContainer = container.querySelector(‘.weather-temp-container’);
if (weatherContainer) {
var summary = ‘Current temperature ‘ + tempValue + ‘ degrees Fahrenheit, ‘ +
skyValue + ‘, feels like ‘ + feelsLikeValue + ‘ degrees’;
weatherContainer.setAttribute(‘aria-label’, summary);
}
function updateForecastTabs(weatherData) {
var visibleItems = isWeatherBoxV2 ? 6 : 5;
if (weatherData.hourly) {
var hourlyContainer = container.querySelector(‘.weather-hourly-forecast’);
if (hourlyContainer) {
var html=””;
var maxHours = Math.min(visibleItems, weatherData.hourly.length);
for (var i = 0; i 0 ? currentIndex – 1 : tabs.length – 1;
tabs[prevIndex].focus();
break;
case ‘ArrowRight’:
e.preventDefault();
var nextIndex = currentIndex
Topeka, Salina, Lawrence and small communities in north-central and northwest Kansas are home to the five most beautiful Gothic cathedrals in the state, the World Atlas website says.
Gothic cathedrals have historically been built to be monumental and impressive, drawing eyes toward the heavens while creating an atmosphere that feels sacred.
Pointed arches, flying buttresses, soaring ribbed vaults and intricate stained-glass windows are among architectural characteristics from the Gothic art period, which flourished between the 12th and 16th centuries in Europe.
A Gothic architecture revival then emerged in the 19th century in the U.S.
Advertisement
Gothic churches here show faith, talent, architectural ambition
An article published in December by World Atlas identifies what it characterized as being the five most beautiful Gothic churches in Kansas.
“The state of Kansas’s variety of Gothic churches, built around the late 19th and early 20th centuries, serves as an important reminder of the creative and cultural aspirations of the state’s founders, regardless of whether they were made with local limestone, imported stone, or red brick,” the site said.
Those churches serve as significant representations of faith, talent and architectural ambition, it said.
World Atlas identified the Sunflower State’s five most beautiful Gothic churches as being the following.
Advertisement
Grace Episcopal Cathedral, Topeka
Topeka’s Grace Episcopal Cathedral “offers one of the most compelling combinations of Gothic Revival style and regional limestone craftsmanship in Kansas,” creating a balance “between Gothic drama and Midwestern simplicity,” World Atlas said.
“The current stone cathedral was constructed primarily between 1910 and 1917, although its twin western towers were completed later,” the site said.
The majestic cathedral at SW 8th and Polk was ravaged in 1975 by a devastating arson fire.
But the church was subsequently rebuilt in “one of the most significant late-20th-century preservation achievements in Kansas,” World Atlas said.
Advertisement
The former English Lutheran Church, Lawrence
The rusticated limestone English Lutheran Church in Lawrence is “a great example of Late Gothic Revival architecture on the Kansas frontier,” World Atlas said.
The church was built around 1870, and additions were made around 1900, it said.
“After falling into disrepair in the mid-20th century, preservation efforts by the Lawrence Historic Preservation Alliance and the Kansas State Historical Society saved the building,” World Atlas said. “It was reopened in 1993 as office space, and the adaptive reuse preserved its major architectural features.”
Christ Episcopal Cathedral, Salina
Salina’s Christ Episcopal Cathedral is “perhaps the most academically faithful example of Gothic Revival architecture in Kansas,” World Atlas said.
Advertisement
“The cathedral was built from 1906 to 1908 through a substantial memorial bequest,” it said. “The structure is laid out in a traditional cruciform plan, imitating the floor plans of medieval English parish churches and collegiate chapels.”
Christ Cathedral serves as the seat of the Episcopal Diocese of Western Kansas, enhancing its importance not just architecturally but also spiritually, World Atlas said.
St. Bridget Catholic Church, Axtell
St. Bridget Catholic Church is located in Marshall County in north-central Kansas, about six and one-half miles north of Axtell, which has a population of about 400. It provides “a noteworthy example of Gothic Revival architecture suited for Kansas,” World Atlas said.
The red brick church, built between 1902 and 1908, reflects “both the parish’s modest means and its dedication to the Gothic style,” the site said.
“Measuring roughly 50 by 100 feet, the church remained in use until 1967, after which the St. Bridget Historical Society was formed to save it from demolition,” World Atlas said. “Now preserved as a historic landmark, its natural rural setting and well-maintained exterior make it a photogenic favorite for those capturing Gothic architecture against the prairie sky.”
Advertisement
Holy Cross Catholic Church, Pfeifer
Holy Cross Catholic Church, located in the unincorporated community of Pfeifer in southeast Ellis County in northwest Kansas, is one of the state’s “most extraordinary expressions of Gothic Revival architecture,” World Atlas said.
“Built between 1915 and 1918, the church stands as a testament to Bavarian immigrant craftsmanship, community labor, and architectural aspiration,” it said. “Constructed from native post-rock limestone, the church’s façade features three soaring spires, the center rising approximately 165 feet, flanked by twin towers of about 100 feet each.”
Holy Cross parish was dissolved in 1993, said the website of the Kansas Sampler Foundation, which identifies it as being one of the “8 Wonders of Kansas Architecture.”
World Atlas said: “Large stained-glass windows — installed during the early decades of the 20th century — fill the interior with a gentle, multicolored glow. Today, it remains open to visitors and continues to inspire admiration for its craftsmanship and serene beauty.”
Holy Cross is located about 11 miles south of the Romanesque Basilica of St. Fidelis at Victoria in Ellis County, which is known as the “Cathedral” of the Plains.”
Advertisement
Contact Tim Hrenchir at 785-213-5934 or threnchir@gannett.com.
KANSAS CITY, Mo. (KCTV) – An investigation is underway after a teenager was found dead in a wooded area, according to officials.
Kansas City, Kansas, Police say they were called to the 300 block of Steward Avenue around 11 a.m. where they found a 17-year-old male unconscious in a wooded area. He was pronounced dead at the scene, officials say.
The teenager was identified as being from Kansas City, Kansas.
Authorities said additional information will be released after an autopsy and a continued investigation.
Advertisement
Anyone with information is asked to call the Crime Stoppers TIPS hotline at 816-474-8477.
For travellers, it’s easy to, literally, look down on Kansas City, Missouri. In the heart of the United States Midwest, it represents the definition of flyover country for those on their way to more famous locales.
That perspective is about to change as this summer, the attention of the sporting world lands on Kansas City, along with hundreds of thousands of football fans.
Recommended Stories
list of 4 itemsend of list
Arrowhead Stadium, the 76,000 capacity home of the NFL’s Kansas City Chiefs, will host six World Cup matches, including a possible Argentina-Portugal quarterfinal, anticipated as a Lionel Messi-Cristiano Ronaldo showdown.
Kansas City overcame major odds to become one of 11 US venues for the biggest World Cup ever, a 39-day tournament stretching from Mexico City to Vancouver, Canada.
Advertisement
While Kansas City is the 37th most populous city in the US, according to the 2020 census, most of the other hosting cities are in the top 10 in terms of population.
“That’s a big gap, and most of those in between were bid cities,” Alan Dietrich, chief operating officer of the Major League Soccer (MLS) team Sporting Kansas City, told Al Jazeera in a recent interview.
The initial bid list in 2017 included 37 stadiums in 34 cities, including four – Chicago, Detroit, Orlando, and Washington, DC – that played host to the ’94 World Cup. They all fell by the wayside and, when the announcement was made on June 16, 2022, Kansas City became a World Cup city.
How did it happen?
Go back to 2013, when Kansas City declared itself the “Soccer Capital of America”, a registered trademark. They invested in stadiums and training facilities, more than $650m worth. The World Cup was a long shot, but that did not stop the local organising committee from pulling out all the stops.
Advertisement
“We did crazy things,” Dietrich said.
World Cup 2026 signage at the Kansas City airport [Jamie Squire/Getty Images via AFP]
That included setting up a sort of Potemkin football village to impress visiting FIFA officials.
For the venue visit, FIFA officials arrived late at night at the decaying Kansas City Municipal Airport (since replaced), but the terminal was far from deserted.
“We had a bunch of volunteers from the Sporting Kansas City staff walking around, making it look alive and vibrant,” Dietrich said. “If someone looked lost or confused, they’d ask if they could help.”
On the 24km (15-mile) ride into town, drivers made sure to show the officials where the new airport was going to be.
Advertisement
The visitors were assigned hotel rooms overlooking a billboard reading “We Want The Cup”. Outside the hotel, pop-up, small-sided games on grass fields just happened to be going on.
“They would smile and nod when they saw that,” Jake Reid, vice president of the local organising committee and Sporting KC president, told Al Jazeera. “But I think it matters we put in the effort.”
The FIFA officials extended their stay to attend a US Women’s National Team game. They departed on a 6am flight.
“I won’t say which one, but the next city had forgotten transportation, and they spent three hours waiting at the airport,” Dietrich said. “We broke our backs to orchestrate everything, and another city, they aren’t even here to pick [them] up. That kind of helped. But we still thought we only had a 50-50 chance.”
Kansas City turned negatives into positives. Nowheresville became a “central location,” facilitating air travel. Long distances on roads, sure, but zero traffic jams.
Advertisement
“Our transportation ranking was dead last. We flipped that on its head in every way,” Reid said.
“The reality of distances is, it’s going to take you more than two hours getting from the airport to MetLife [stadium in New Jersey], and getting from our airport to Arrowhead is 22 minutes. We were the first city to lock in buses, and now we have more than 225 buses for [public transportation].”
A city with the US’s then 32nd-ranked Designated Marketing Area translated as “small market, big region,” Reid said. Kansas City’s population is listed at 508,000 and the metropolitan area at 2.2 million.
Like the Chiefs and Kansas City Royals baseball team, the World Cup can expect fans to come from within a three-hour drive. Reid expects them to “pop in from Omaha, Springfield. Look at Kansas City on a map, we’re small. Look at the fan base, it stretches around a significant area.”
Reid added: “The one factor that stands out, we just wanted it more.
Advertisement
“With New York, Boston, it’s a formality. They say we’re major market, events come here. We didn’t expect to get this and we had to put our best foot forward.”
Workers install the pitch ahead of the 2026 World Cup at the Arrowhead Stadium [Jamie Squire/Getty Images via AFP]
‘Magic moments’ and base camps
Just getting the World Cup would satisfy most municipalities, but not these Kansas Citians. After the final draw last year, they pulled off another coup via base camps, as Argentina, England and the Netherlands chose Kansas City, and Algeria picked the nearby city of Lawrence.
That meant another round of romancing. For England, Kansas City set up a “huge lunch, as much barbecue to feed an army,” in the downtown Power & Light District, Reid said. They weren’t sure they’d clinched the deal until a dinner that included “a few glasses of wine”.
England coach Thomas Tuchel “turned to Jake, and said, ‘Are you all in with us? Because what we do if we win a tournament, we all get a tattoo specific to the tournament,’” Dietrich said.
“And Jake and I both said we’re in. I have three kids and they all have tattoos, and I always told them to think about how they would feel about having them [after] many years go by. But I would love to get a tattoo. I would absolutely get one.”
Facts on the ground, this is still the Midwest of vast distances and potential boredom. During the 2010 World Cup in South Africa, while based in Rustenburg, outside Johannesburg, Wayne Rooney said England players became tired of “darts and snooker”.
Advertisement
Kansas City has taken downtime into account. During visits, “we would throw in what we call ‘magic moments,’ to surprise and delight,” Dietrich said.
That might be simply sitting down with Argentinians at Fiorella’s Jack Stack Barbecue. The Argentina contingent talked about winning the 2022 World Cup, while Kansas Citians told of the city’s lore: from Jesse James, to the anything-goes jazz days, to the origins of barbecue and the local speciality “burnt ends” of the brisket.
“We did our best to educate them as much as we could,” Reid said. “What they retained, I couldn’t tell you.”
The Kansas City Chiefs take on the Detroit Lions in an NFL game at Arrowhead Stadium in 2023 [Reed Hoffmann/AP]
But it turned out there was more to recruiting than gluttony and over-the-top endeavour. Kansas City also tailored its pitch to Algeria, which preferred a low-key environment in Lawrence, 48km (30 miles) away in Kansas state.
“They were attracted to the tranquil setting,” Reid said. “Rolling hills and outdoor space, lots of trees.”
The hosts also tuned into customs and religious practices.
Advertisement
“They wanted halal meats, and we had that set up with three different suppliers,” Reid said. “Details meant a lot to them.”
Lawrence is a bucolic college town of about 100,000 people, home of the popular University of Kansas Jayhawks basketball team.
But the Algerians might also appreciate its days as an independence battleground. The Jayhawks nickname derives from the anti-slavery faction in “Bleeding Kansas” – a series of battles fought between pro and anti-slavery advocates from 1854-59 – that fought to keep the state free before the American Civil War.
The ‘Soccer Capital of America’
And the claims to being the Soccer Capital of America? The region’s footballing history dates to the opening of the American West, as the Santa Fe Railroad fielded a team in Topeka, Kansas, in the 1880s.
For decades, football was left in the dust by other sports, until the 1966 World Cup, which inspired investment in professional teams in several US cities. The Kansas City Spurs had a three-season run, starting in 1968, when they played against Santos and Pele (ending in a 4-1 loss for the hosts) in front of 19,296 at Municipal Stadium.
Advertisement
In 1969, the Spurs won the championship of the North American Soccer League (NASL), by then a five-team league, although the team dissolved in 1971 amid financial and organisational challenges.
Then came indoor football, the Kansas City Comets (1979-91) outdrawing and outlasting both an NBA team (KC-Omaha Kings) and an NHL team (Kansas City Scouts) at Kemper Arena.
The Comets did their part for the city’s footballing culture.
”Now, the average person actually knows about soccer, and that wasn’t the case,” Alan Mayer, goalkeeper for the US national team and the Comets, told Al Jazeera. “We had to do a lot of education, clinics, personal appearances. One year, I made 300 appearances to schools talking about soccer.”
World Cup merchandise at the Kansas City airport [Jamie Squire/Getty Images via AFP]
When the ’94 World Cup came along, Lamar Hunt proposed Arrowhead Stadium as a venue, hoping to use the tournament to launch MLS.
FIFA passed Kansas City by, but Hunt went ahead with the KC Wizards, originally named the Wiz, and won the 2000 MLS Cup. The team rebranded as Sporting Kansas City, opened a football-specific stadium (capacity 21,000) in 2011, and won the 2013 MLS Cup title. The Kansas City Current women’s team was founded in 2021 and play at the CPKC Stadium (11,500).
Advertisement
“I didn’t really think we may be hosting a World Cup, I never gave it a thought, it was too far out of the realm of possibility,” said Mayer, who earned six US caps and once scored on a long clearance playing for Southend United’s reserve team.
“When I first got to Kansas City in the mid-‘80s there wasn’t any MLS. The difference between now and then is astronomical, how popular the game has become. But I really don’t think the public understands how much this is going to affect the economy and the visual effect it will have on how the rest of the world looks at Kansas City and the US.
“And how great and crazy this is going to be, the atmosphere created by hundreds of thousands of people of all different nationalities coming to the Kansas City area.”