How Oilers or Blues can clinch playoff spot
Eleven teams have already clinched their spots in the Stanley Cup Playoffs, and either the Edmonton Oilers or St. Louis Blues could be next.

Eleven teams have already clinched their spots in the Stanley Cup Playoffs, and either the Edmonton Oilers or St. Louis Blues could be next.
With the Oilers and Blues set to match up Wednesday night, one of them could clinch a playoff berth by the end of it, per the NHL.
For the Oilers to do so, they need to beat the Blues in any fashion and have the Calgary Flames lose to the Anaheim Ducks in regulation.
Meanwhile, for the Blues to clinch, they must beat the Oilers in regulation and also get a Flames regulation loss.
Ahead of the game, the Oilers (44-28-5) are third in the Pacific Division with 93 points, while the Blues (43-29-7) sit in the first wild-card spot in the Western Conference with the same total.
Clinching a berth would mark the Blues’ first trip to the post-season since 2022.
Catch Edmonton and St. Louis battling it out on Sportsnet and Sportsnet+ starting at 8 p.m. MT / 10 p.m. ET.
if (!res.ok) { throw new Error('Failed to fetch odds data'); }
const data = await res.json(); const oddsData = data?.data?.game?.details?.current_line; const visitingTeam = data?.data?.game?.visiting_team; const visitingTeamLogo = data?.data?.game?.visiting_team?.image_url_90; const homeTeam = data?.data?.game?.home_team; const homeTeamLogo = data?.data?.game?.home_team?.image_url_90; const gameTimestamp = data?.data?.game?.details?.timestamp;
return { oddsData, visitingTeam, visitingTeamLogo, homeTeam, homeTeamLogo, gameTimestamp }; }
async function renderBetMGM(componentId, league, gameId) { let oddsData, visitingTeam, visitingTeamLogo, homeTeam, homeTeamLogo, gameTimestamp, error;
const container = document.getElementById(componentId + '-odds'); if (!container) return;
try { ({ oddsData, visitingTeam, visitingTeamLogo, homeTeam, homeTeamLogo, gameTimestamp } = await fetchOddsData(league, gameId)); } catch (err) { error = err.message; }
if (error) { container.innerHTML = `
`; return; }
if (!oddsData) { container.innerHTML = `
`; return; }
let gameDate = new Date(gameTimestamp * 1000); const gameDateFormatted = gameDate.toLocaleDateString('en-US', { year: 'numeric', month: 'long', day: 'numeric' });
container.innerHTML = `
`; }
// Example usage renderBetMGM('block_75059ffe2a38e8c56cdb38fa7c5f931a', 'NHL', 'bf115a4e-adcf-4e0d-abea-9428cb2a3347');