Find the required parameters for each of the `nba.stats` endpoints and make that parameter __bold__. Most [stats.nba.com](http://stats.nba.com/) endpoints will throw an error if a required parameter is missing, so we can use this to find the list of required params. --- e.g. Making a request to http://stats.nba.com/stats/commonallplayers without any parameters will return: ``` LeagueID is required; Season is required; IsOnlyCurrentSeason is required ``` So the documentation for the `data.stats.allPlayers` method should look like: - `allPlayers` + Endpoint: [`/stats/commonallplayers`](http://stats.nba.com/stats/commonallplayers) + Parameters: * __`IsOnlyCurrentSeason`__ * __`LeagueID`__ * __`Season`__
Find the required parameters for each of the
nba.statsendpoints and make that parameter bold.Most stats.nba.com endpoints will throw an error if a required parameter is missing, so we can use this to find the list of required params.
e.g. Making a request to http://stats.nba.com/stats/commonallplayers without any parameters will return:
So the documentation for the
data.stats.allPlayersmethod should look like:allPlayers/stats/commonallplayersIsOnlyCurrentSeasonLeagueIDSeason