Raptors’ Quickley, Poeltl to rest against Nets

The Toronto Raptors’ predictable pattern of rest days will be unchanged on Sunday. Immanuel Quickley and Jakob Poeltl will rest against the Brooklyn Nets, joining teammates Brandon Ingram, Gradey Dick and Ulrich Chomche on the sidelines, Sportsnet’s Blake Murphy reported on Saturday.

Apr 5, 2025 - 23:00
 0
Raptors’ Quickley, Poeltl to rest against Nets

The Toronto Raptors‘ predictable pattern of rest days will go unchanged on Sunday.

Immanuel Quickley and Jakob Poeltl will rest against the Brooklyn Nets, joining teammates Brandon Ingram, Gradey Dick and Ulrich Chomche on the sidelines, Sportsnet’s Blake Murphy reported on Saturday.

Dick, 21, was ruled out for the remainder of the season on Friday due to a right knee bone bruise he sustained on March 2 against the Orlando Magic. Last year’s 13th-overall pick had already missed the Raptors’ last 17 games due to injury.

Poeltl and Quickley have both rested every other game since March 7, alternating games with RJ Barrett and more recently Ochai Agbaji.

Quickley, 25, has played only 32 games this season due to various injuries and is averaging 17.4 points, 3.6 rebounds and 5.9 assists in his first full season in Toronto.

Poeltl, 29, is having a career-year statistically, averaging a career-high 14.5 points and 9.6 rebounds to go along with 2.8 assists, 1.2 steals, and 1.2 blocks.

Watch the Raptors-Nets game on Sunday at 3:30 p.m. ET / 12:30 p.m. PT 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_76461b98927a3a85b67362ffe2065607', 'NBA', 'd4148876-d1e2-48f1-92d5-bb55792519c6');