Blue Jays’ George Springer returns to starting lineup vs. Red Sox
The Toronto Blue Jays will get George Springer back in the lineup when they open a four-game series against the Boston Red Sox.

The Toronto Blue Jays will get George Springer back in the lineup when they open a four-game series against the Boston Red Sox.
Springer entered the Blue Jays series finale against the New York Mets as a pinch runner in the eighth inning.
Springer crashed into the right-field fence in the eighth inning Saturday in an unsuccessful attempt to catch Jesse Winker’s drive.
The 35-year-old is hitting .379 with one home run and five RBIs in nine games.
Easton Lucas will make his second MLB start after going five innings allowing no runs and striking out three against the Washington Nationals.
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_893866dbe4e917d69568d9020f38177d', 'MLB', 'ae4a65da-0e58-4913-af0c-02bf8ec0cd05');
Watch the Blue Jays take on the Boston Red Sox on Sportsnet starting at 6:45 p.m.ET/3:45 p.m. PT.