Using NBA Team Stats through Google Chrome's network tool, I believe I located the site to lead me to the raw JSON data
As a result, I am using the following URL:
https://stats.nba.com/stats/leaguedashteamstats?Conference=&DateFrom=&DateTo=&Division=&GameScope=&GameSegment=&LastNGames=0&LeagueID=00&Location=&MeasureType=Base&Month=0&OpponentTeamID=0&Outcome=&PORound=0&PaceAdjust=N&PerMode=PerGame&Period=0&PlayerExperience=&PlayerPosition=&PlusMinus=N&Rank=N&Season=2019-20&SeasonSegment=&SeasonType=Regular+Season&ShotClockRange=&StarterBench=&TeamID=0&TwoWay=0&VsConference=&VsDivision=
However, when I try to go to the above site, it does not load. This leads me to believe that perhaps I am looking at the wrong piece of information to get me to where I am trying to go. Any tips?
After much digging, research, and trial & error, I was finally able to come up with a Python script (within Power BI) that would give me exactly what I needed.
Using this script allows me to convert all the JSON data to a table that will be properly formatted.
That specific page seems to require a Referer header to be sent with the request so just loading it on it's own won't work.
In Power BI you can set custom headers if you select Advanced when adding a Web data source. In the optional Header section enter
Referer
and a value ofhttps://stats.nba.com/
.