Raptors’ Quickley, Poeltl resting Sunday vs. 76ers

The Toronto Raptors will be down a few key pieces as they look to build on a three-game win streak.

Mar 29, 2025 - 22:38
 0
Raptors’ Quickley, Poeltl resting Sunday vs. 76ers

The Toronto Raptors will be down a few key pieces as they look to build on a three-game win streak.

Centre Jakob Poeltl and guard Immanuel Quickley will both be resting as the Raptors take on the Philadelphia 76ers on Sunday, the team announced Saturday.

Poeltl has yet to play consecutive games since early March and has been listed out for rest every other game. He suffered a hip injury on Feb. 4 and missed eight straight games before suiting up for four straight on a minutes restriction.

The 29-year-old was dominant in the Raptors’ win against the Charlotte Hornets on Friday, finishing with 24 points and 12 rebounds while going 12 for 14 from the field.

The Vienna, Austria, native is averaging 14.6 points and 9.7 rebounds per game while shooting 63 per cent from the field over 55 outings.

Quickley, meanwhile, has followed a similar pattern of resting every other game throughout March. He had 19 points and nine rebounds in the Raptors’ 108-97 win over the Hornets.

The 25-year-old has been hampered by injuries but is averaging 17.5 points, 3.5 rebounds and 5.8 assists over 30 games in his first full season in Toronto.

Also out for Sunday’s game against the 76ers are Gradey Dick (knee), Brandon Ingram (ankle) and Ulrich Chomche (knee).

Toronto is currently 27-47 and sits 11th in the Eastern Conference. You can catch Sunday’s outing against the 76ers on Sportsnet ONE or Sportsnet+.

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 = `

Error: ${error}

`; return; }

if (!oddsData) { container.innerHTML = `

Odds data not available

`; return; }

let gameDate = new Date(gameTimestamp * 1000); const gameDateFormatted = gameDate.toLocaleDateString('en-US', { year: 'numeric', month: 'long', day: 'numeric' });

container.innerHTML = `

BetMGM Odds
Moneyline
${visitingTeam.short_name}
${oddsData.away_money > 0 ? `+${oddsData.away_money}` : oddsData.away_money}
${homeTeam.short_name}
${oddsData.home_money > 0 ? `+${oddsData.home_money}` : oddsData.home_money}
Spread
${oddsData.fav_id === visitingTeam.id ? oddsData.fav_points : oddsData.fav_points > 0 ? `-${oddsData.fav_points}` : `+${Math.abs(oddsData.fav_points)}`}
${oddsData.fav_id === visitingTeam.id ? oddsData.fav_money > 0 ? `+${oddsData.fav_money}` : oddsData.fav_money : oddsData.underdog_money > 0 ? `+${oddsData.underdog_money}` : oddsData.underdog_money}
${oddsData.fav_id === homeTeam.id ? oddsData.fav_points : oddsData.fav_points > 0 ? `-${oddsData.fav_points}` : `+${Math.abs(oddsData.fav_points)}`}
${oddsData.fav_id === homeTeam.id ? oddsData.fav_money > 0 ? `+${oddsData.fav_money}` : oddsData.fav_money : oddsData.underdog_money > 0 ? `+${oddsData.underdog_money}` : oddsData.underdog_money}
Over/Under
O ${oddsData.total}
${oddsData.over_money > 0 ? `+${oddsData.over_money}` : oddsData.over_money}
U ${oddsData.total}
${oddsData.under_money > 0 ? `+${oddsData.under_money}` : oddsData.under_money}

`; }

// Example usage renderBetMGM('block_6fe2f7b4929a1afc96e1a9d36cb5b886', 'nba', '2d73768a-6052-4a36-a8cc-beb3fe4773ad');