sportsdataverse
#
Installationnpm install sportsdataverse
#
DocumentationFor more information on the package and function reference, please see the sportsdataverse node.js documentation website
#
Breaking ChangesSportsDataverse on Twitter and star this repo#
Follow the#
Our Authors#
CitationsTo cite the sportsdataverse
Node.js package in publications, use:
BibTex Citation
@misc{gilani_2021_sportsdataverse_js, author = {Gilani, Saiem}, title = {sportsdataverse-js: The SportsDataverse's Node.js Package for Sports Data.}, url = {https://js.sportsdataverse.org}, year = {2021}}
#
Overview of ServicesSupport for the following data from ESPN's endpoints:
- play-by-play (including shot location data when available)
- scores
- schedule
- standings
- rankings (not available for professional sports)
Recruiting data from 247Sports available for:
- men's college basketball
- college football
The following sports are available from ESPN:
- Men's College Basketball
- Women's College Basketball
- College Football
- WNBA
- NBA
- NFL
- NHL
- All team sports on the NCAA website:
- 'football'
- 'basketball-men'
- 'basketball-women'
- 'soccer-men'
- 'soccer-women'
- 'fieldhockey'
- 'volleyball-women'
- 'icehockey-men'
- 'icehockey-women'
- 'baseball'
- 'beach-volleyball'
- 'lacrosse-men'
- 'lacrosse-women'
- 'volleyball-men'
#
API ReferenceOperations for College Football.
Kind: global namespace
- cfb :
object
- .getPlayByPlay(id) โ
- .getBoxScore(id) โ
- .getSummary(id) โ
- .getPicks(id) โ
- .getPlayerRankings(year, page, group, state) โ
- .getSchoolRankings(year, page) โ
- .getSchoolCommits(year, school) โ
- .getRankings(year, week) โ
- .getSchedule(year, month, day, group, seasontype) โ
- .getScoreboard(year, month, day, group, seasontype, limit) โ
- .getConferences() โ
- .getStandings(year, group) โ
- .getTeamList(group) โ
- .getTeamInfo(id) โ
- .getTeamPlayers(id)
#
cfb.getPlayByPlay(id) โGets the College Football game play-by-play data for a specified game.
Kind: static method of cfb
Returns: json
Param | Type | Description |
---|---|---|
id | number | Game id. |
Example
const result = await sdv.cfb.getPlayByPlay(401256194);
#
cfb.getBoxScore(id) โGets the College Football game box score data for a specified game.
Kind: static method of cfb
Returns: json
Param | Type | Description |
---|---|---|
id | number | Game id. |
Example
const result = await sdv.cfb.getBoxScore(401256194);
#
cfb.getSummary(id) โGets the College Football game summary data for a specified game.
Kind: static method of cfb
Returns: json
Param | Type | Description |
---|---|---|
id | number | Game id. |
Example
const result = await sdv.cfb.getSummary(401256194);
#
cfb.getPicks(id) โGets the College Football PickCenter data for a specified game.
Kind: static method of cfb
Returns: json
Param | Type | Description |
---|---|---|
id | number | Game id. |
Example
const result = await sdv.cfb.getPicks(401256194);
#
cfb.getPlayerRankings(year, page, group, state) โGets the College Football Player recruiting data for a specified year, page, position, state and institution type if available.
Kind: static method of cfb
Returns: json
Param | Type | Description |
---|---|---|
year | * | Year (YYYY) |
page | number | Page (50 per page) |
group | "HighSchool" | "JuniorCollege" | "PrepSchool" | Institution Type |
state | string | State of recruit |
Example
const result = await sdv.cfb.getPlayerRankings({year: 2016});
#
cfb.getSchoolRankings(year, page) โGets the College Football School recruiting data for a specified year and page if available.
Kind: static method of cfb
Returns: json
Param | Type | Description |
---|---|---|
year | * | Year (YYYY) |
page | number | Page (50 per page) |
Example
const result = await sdv.cfb.getSchoolRankings({year: 2016});
#
cfb.getSchoolCommits(year, school) โGets the College Football School commitment data for a specified school and year.
Kind: static method of cfb
Returns: json
Param | Type | Description |
---|---|---|
year | * | Year (YYYY) |
school | string | School |
Example
const result = await sdv.cfb.getSchoolCommits({school: 'Florida State', year: 2021});
#
cfb.getRankings(year, week) โGets the CFB rankings data for a specified year and week if available.
Kind: static method of cfb
Returns: json
Param | Type | Description |
---|---|---|
year | * | Year (YYYY) |
week | * | Week |
Example
const result = await sdv.cfb.getRankings(year = 2020, week = 4)
#
cfb.getSchedule(year, month, day, group, seasontype) โGets the College Football schedule data for a specified date if available.
Kind: static method of cfb
Returns: json
Param | Type | Description |
---|---|---|
year | * | Year (YYYY) |
month | * | Month (MM) |
day | * | Day (DD) |
group | number | Group is 80 for FBS, 81 for FCS |
seasontype | number | Pre-Season: 1, Regular Season: 2, Postseason: 3, Off-season: 4 |
Example
const result = await sdv.cfb.getSchedule(year = 2019, month = 11, day = 16, group=80)
#
cfb.getScoreboard(year, month, day, group, seasontype, limit) โGets the College Football scoreboard data for a specified date if available.
Kind: static method of cfb
Returns: json
Param | Type | Description |
---|---|---|
year | * | Year (YYYY) |
month | * | Month (MM) |
day | * | Day (DD) |
group | number | Group is 80 for FBS, 81 for FCS |
seasontype | number | Pre-Season: 1, Regular Season: 2, Postseason: 3, Off-season: 4 |
limit | number | Limit on the number of results @default 300 |
Example
const result = await sdv.cfb.getScoreboard(year = 2019, month = 11, day = 16, group=80)
#
cfb.getConferences() โGets the list of all College Football conferences and their identification info for ESPN.
Kind: static method of cfb
Returns: json
Example
const result = await sdv.cfb.getConferences();
#
cfb.getStandings(year, group) โGets the team standings for College Football.
Kind: static method of cfb
Returns: json
Param | Type | Description |
---|---|---|
year | number | Season |
group | number | Group is 80 for FBS, 81 for FCS |
Example
const yr = 2016;const result = await sdv.cfb.getStandings(year = yr);
#
cfb.getTeamList(group) โGets the list of all College Football teams their identification info for ESPN.
Kind: static method of cfb
Returns: json
Param | Type | Description |
---|---|---|
group | number | Group is 80 for FBS, 81 for FCS |
Example
const result = await sdv.cfb.getTeamList(group=80);
#
cfb.getTeamInfo(id) โGets the team info for a specific College Football team.
Kind: static method of cfb
Returns: json
Param | Type | Description |
---|---|---|
id | number | Team Id |
Example
const teamId = 52;const result = await sdv.cfb.getTeamInfo(teamId);
#
cfb.getTeamPlayers(id)Gets the team roster information for a specific College Football team.
Kind: static method of cfb
Param | Type | Description |
---|---|---|
id | number | Team Id |
Example
const teamId = 52;const result = await sdv.cfb.getTeamPlayers(teamId);
Operations for Men's College Basketball.
Kind: global namespace
- mbb :
object
- .getPlayByPlay(id) โ
- .getBoxScore(id) โ
- .getSummary(id) โ
- .getPicks(id) โ
- .getRankings(year, week) โ
- .getPlayerRankings(year, page, group) โ
- .getSchoolRankings(year, page) โ
- .getSchoolCommits(year, school) โ
- .getSchedule(year, month, day, group, seasontype) โ
- .getScoreboard(year, month, day, group, seasontype, limit) โ
- .getConferences() โ
- .getStandings(year, group) โ
- .getTeamList(group) โ
- .getTeamInfo(id) โ
- .getTeamPlayers(id) โ
#
mbb.getPlayByPlay(id) โGets the Men's College Basketball game play-by-play data for a specified game.
Kind: static method of mbb
Returns: json
Param | Type | Description |
---|---|---|
id | number | Game id. |
Example
const result = await sdv.mbb.getPlayByPlay(401260281);
#
mbb.getBoxScore(id) โGets the Men's College Basketball game box score data for a specified game.
Kind: static method of mbb
Returns: json
Param | Type | Description |
---|---|---|
id | number | Game id. |
Example
const result = await sdv.mbb.getBoxScore(401260281);
#
mbb.getSummary(id) โGets the Men's College Basketball game summary data for a specified game.
Kind: static method of mbb
Returns: json
Param | Type | Description |
---|---|---|
id | number | Game id. |
Example
const result = await sdv.mbb.getSummary(401260281);
#
mbb.getPicks(id) โGets the Men's College Basketball game PickCenter data for a specified game.
Kind: static method of mbb
Returns: json
Param | Type | Description |
---|---|---|
id | number | Game id. |
Example
const result = await sdv.mbb.getPicks(401260281);
#
mbb.getRankings(year, week) โGets the Men's College Basketball rankings data for a specified year and week if available.
Kind: static method of mbb
Returns: json
Param | Type | Description |
---|---|---|
year | * | Year (YYYY) |
week | * | Week |
Example
const result = await sdv.mbb.getRankings(year = 2020, week = 15)
#
mbb.getPlayerRankings(year, page, group) โGets the Men's College Basketball Player recruiting data for a specified year, page, position and institution type if available.
Kind: static method of mbb
Returns: json
Param | Type | Description |
---|---|---|
year | * | Year (YYYY) |
page | number | Page (50 per page) |
group | "HighSchool" | "JuniorCollege" | "PrepSchool" | Institution Type |
Example
const result = await sdv.mbb.getPlayerRankings({year: 2016});
#
mbb.getSchoolRankings(year, page) โGets the Men's College Basketball School recruiting data for a specified year, page, position and institution type if available.
Kind: static method of mbb
Returns: json
Param | Type | Description |
---|---|---|
year | * | Year (YYYY) |
page | number | Page (50 per page) |
Example
const result = await sdv.mbb.getSchoolRankings({year: 2016});
#
mbb.getSchoolCommits(year, school) โGets the Men's College Basketball School commitment data for a specified school and year.
Kind: static method of mbb
Returns: json
Param | Type | Description |
---|---|---|
year | * | Year (YYYY) |
school | string | School |
Example
const result = await sdv.mbb.getSchoolCommits({school: 'Clemson', year: 2016});
#
mbb.getSchedule(year, month, day, group, seasontype) โGets the Men's College Basketball schedule data for a specified date if available.
Kind: static method of mbb
Returns: json
Param | Type | Description |
---|---|---|
year | * | Year (YYYY) |
month | * | Month (MM) |
day | * | Day (DD) |
group | number | Group is 50 for Division-I, 51 for Division-II, 52 for Division-III |
seasontype | number | Pre-Season: 1, Regular Season: 2, Postseason: 3, Off-season: 4 |
Example
const result = await sdv.mbb.getSchedule(year = 2021, month = 02, day = 15, group=50)
#
mbb.getScoreboard(year, month, day, group, seasontype, limit) โGets the Men's College Basketball scoreboard data for a specified date if available.
Kind: static method of mbb
Returns: json
Param | Type | Description |
---|---|---|
year | * | Year (YYYY) |
month | * | Month (MM) |
day | * | Day (DD) |
group | number | Group is 50 for Division-I, 51 for Division-II, 52 for Division-III |
seasontype | number | Pre-Season: 1, Regular Season: 2, Postseason: 3, Off-season: 4 |
limit | number | Limit on the number of results @default 300 |
Example
const result = await sdv.mbb.getScoreboard(year = 2021, month = 02, day = 15, group=50)
#
mbb.getConferences() โGets the Men's College Basketball Conferences.
Kind: static method of mbb
Returns: json
Example
const result = await sdv.mbb.getConferences();
#
mbb.getStandings(year, group) โGets the team standings for Men's College Basketball.
Kind: static method of mbb
Returns: json
Param | Type | Description |
---|---|---|
year | number | Season |
group | number | Group is 50 for Division-I, 51 for Division-II, 52 for Division-III |
Example
const yr = 2020;const result = await sdv.mbb.getStandings(year = yr);
#
mbb.getTeamList(group) โGets the list of all College Football teams their identification info for ESPN.
Kind: static method of mbb
Returns: json
Param | Type | Description |
---|---|---|
group | number | Group is 50 for Division-I, 51 for Division-II, 52 for Division-III |
Example
const result = await sdv.mbb.getTeamList(group=50);
#
mbb.getTeamInfo(id) โGets the team info for a specific College Basketball team.
Kind: static method of mbb
Returns: json
Param | Type | Description |
---|---|---|
id | number | Team Id |
Example
const teamId = 52;const result = await sdv.mbb.getTeamInfo(teamId);
#
mbb.getTeamPlayers(id) โGets the team roster information for a specific Men's College Basketball team.
Kind: static method of mbb
Returns: json
Param | Type | Description |
---|---|---|
id | number | Team Id |
Example
const teamId = 52;const result = await sdv.mbb.getTeamPlayers(teamId);
Operations for NBA.
Kind: global namespace
- nba :
object
#
nba.getPlayByPlay(id) โGets the NBA game play-by-play data for a specified game.
Kind: static method of nba
Returns: json
Param | Type | Description |
---|---|---|
id | number | Game id. |
Example
const result = await sdv.nba.getPlayByPlay(401283399);
#
nba.getBoxScore(id) โGets the NBA game box score data for a specified game.
Kind: static method of nba
Returns: json
Param | Type | Description |
---|---|---|
id | number | Game id. |
Example
const result = await sdv.nba.getBoxScore(401283399);
#
nba.getSummary(id) โGets the NBA game summary data for a specified game.
Kind: static method of nba
Returns: json
Param | Type | Description |
---|---|---|
id | number | Game id. |
Example
const result = await sdv.nba.getSummary(401283399);
#
nba.getPicks(id) โGets the NBA game PickCenter data for a specified game.
Kind: static method of nba
Returns: json
Param | Type | Description |
---|---|---|
id | number | Game id. |
Example
const result = await sdv.nba.getPicks(401283399);
#
nba.getSchedule(year, month, day) โGets the NBA schedule data for a specified date if available.
Kind: static method of nba
Returns: json
Param | Type | Description |
---|---|---|
year | * | Year (YYYY) |
month | * | Month (MM) |
day | * | Day (DD) |
Example
const result = await sdv.nba.getSchedule(year = 2016, month = 04, day = 15)
#
nba.getScoreboard(year, month, day, limit) โGets the NBA scoreboard data for a specified date if available.
Kind: static method of nba
Returns: json
Param | Type | Description |
---|---|---|
year | * | Year (YYYY) |
month | * | Month (MM) |
day | * | Day (DD) |
limit | number | Limit on the number of results @default 300 |
Example
const result = await sdv.nba.getScoreboard(year = 2019, month = 11, day = 16)
#
nba.getStandings(year, group) โGets the team standings for the NBA.
Kind: static method of nba
Returns: json
Param | Type | Description |
---|---|---|
year | number | Season |
group | number | acceptable group names: 'league','conference','division' |
Example
const yr = 2016;const result = await sdv.nba.getStandings(year = yr);
#
nba.getTeamList() โGets the list of all NBA teams their identification info for ESPN.
Kind: static method of nba
Returns: json
Example
const result = await sdv.nba.getTeamList();
#
nba.getTeamInfo(id) โGets the team info for a specific NBA team.
Kind: static method of nba
Returns: json
Param | Type | Description |
---|---|---|
id | number | Team Id |
Example
const teamId = 16;const result = await sdv.nba.getTeamInfo(teamId);
#
nba.getTeamPlayers(id) โGets the team roster information for a specific NBA team.
Kind: static method of nba
Returns: json
Param | Type | Description |
---|---|---|
id | number | Team Id |
Example
const teamId = 16;const result = await sdv.nba.getTeamPlayers(teamId);
Operations for NCAA Sports.
Kind: global namespace
- ncaa :
object
- .getRedirectUrl(url) โ
- .getInfo(game) โ
- .getBoxScore(game) โ
- .getPlayByPlay(game) โ
- .getTeamStats(game) โ
- .getScoringSummary(game) โ
- .getScoreboard(sport, division, year, month, day) โ
- .getSports() โ
- .getSeasons(sport) โ
- .getDivisions(sport, season) โ
- .getSportDivisionData(sport, season, division, rankingPeriod, type, gameHigh, category) โ
- .getPlayerData(sport, season, division, rankingPeriod, gameHigh, category) โ
- .getTeamData(sport, season, division, rankingPeriod, gameHigh, category) โ
#
ncaa.getRedirectUrl(url) โGets the gameId for older games whose url redirects to the current url pattern using the game url fragment (relative to https://ncaa.com) pulled from ncaaScoreboard
Kind: static method of ncaa
Returns: json
Param | Type | Description |
---|---|---|
url | string | Game url as pulled from ncaaScoreboard.getNcaaScoreboard. |
Example
const result = await sdv.ncaaScoreboard.getNcaaScoreboard(sport = 'basketball-men', division = 'd3', year = 2019, month = 02, day = 15)const urlGame = result["games"][16]["game"]["url"]const gameId = await sdv.ncaa.getRedirectUrl(url=urlGame);
#
ncaa.getInfo(game) โGets the gameInfo data for a specified game.
Kind: static method of ncaa
Returns: json
Param | Type | Description |
---|---|---|
game | number | Game id. |
Example
const result = await sdv.ncaa.getInfo(5764053);
#
ncaa.getBoxScore(game) โGets the box score data for a specified game if available.
Kind: static method of ncaa
Returns: json
Param | Type | Description |
---|---|---|
game | number | Game id. |
Example
const result = await sdv.ncaa.getBoxScore(5764053);
#
ncaa.getPlayByPlay(game) โGets the play-by-play data for a specified game if available.
Kind: static method of ncaa
Returns: json
Param | Type | Description |
---|---|---|
game | number | Game id. |
Example
const result = await sdv.ncaa.getPlayByPlay(5764053);
#
ncaa.getTeamStats(game) โGets the team stats data for a specified game if available.
Kind: static method of ncaa
Returns: json
Param | Type | Description |
---|---|---|
game | number | Game id. |
Example
const result = await sdv.ncaa.getTeamStats(5764053);
#
ncaa.getScoringSummary(game) โGets the scoring summary data for a specified game if available.
Kind: static method of ncaa
Returns: json
Param | Type | Description |
---|---|---|
game | number | Game id. |
Example
const result = await sdv.ncaa.getScoringSummary(5764053);
#
ncaa.getScoreboard(sport, division, year, month, day) โGets the scoreboard data for a specified date and team sport if available.
Kind: static method of ncaa
Returns: json
Param | Type | Description |
---|---|---|
sport | string | Sport name. Acceptable values: 'football','basketball-men', 'basketball-women', 'baseball', 'softball', 'soccer-men','soccer-women', 'fieldhockey', 'icehockey-men','icehockey-women', 'lacrosse-men','lacrosse-women', 'beach-volleyball', 'volleyball-women', 'volleyball-men' |
division | string | Division of teams desired. Acceptable values: Football - ['fbs','fcs','d2','d3'] All others - ['d1','d2','d3'] |
year | * | Year (YYYY) |
month | * | Month (MM) |
day | * | Day (DD) |
Example
const result = await sdv.ncaa.getScoreboard(sport = 'basketball-men', division = 'd3', year = 2019, month = 02, day = 15)
#
ncaa.getSports() โRetrieves the set of sports and their abbreviations.
Kind: static method of ncaa
Returns: json
Example
const result = sdv.ncaa.getSports();
#
ncaa.getSeasons(sport) โRetrieves the seasons for the selected sport.
Kind: static method of ncaa
Returns: json
Param | Type | Description |
---|---|---|
sport | string | Sport abbreviation. Acceptable values: 'MBA' = Baseball, 'MBB' = Men's basketball, 'MFB' = Men's Football, 'MIH' = Men's Ice-hockey, 'MLA' = Men's Lacrosse', 'MSO' = Men's Soccer, 'MTE' = Men's Tennis, 'MVB' = Men's Volleyball, 'MWP' = Men's Water Polo, 'WBB' = Women's Basketball, 'WBW' = Women's Bowling, 'WFH' = Field Hockey, 'WIH' = Women's Ice-Hockey, 'WLA' = Women's Lacrosse, 'WSB' = Women's Softball, 'WSO' = Women's Soccer, 'WSV' = Women's Beach Volleyball, 'WTE' = Women's Tennis, 'WVB' = Women's Volleyball, 'WWP' = Women's Water Polo |
Example
const result = sdv.ncaa.getSeasons(sport='MBB');
#
ncaa.getDivisions(sport, season) โRetrieves the Divisions for the selected sport and season.
Kind: static method of ncaa
Returns: json
Param | Type | Description |
---|---|---|
sport | string | Sport abbreviation. Acceptable values: 'MBA' = Baseball, 'MBB' = Men's basketball, 'MFB' = Men's Football, 'MIH' = Men's Ice-hockey, 'MLA' = Men's Lacrosse', 'MSO' = Men's Soccer, 'MTE' = Men's Tennis, 'MVB' = Men's Volleyball, 'MWP' = Men's Water Polo, 'WBB' = Women's Basketball, 'WBW' = Women's Bowling, 'WFH' = Field Hockey, 'WIH' = Women's Ice-Hockey, 'WLA' = Women's Lacrosse, 'WSB' = Women's Softball, 'WSO' = Women's Soccer, 'WSV' = Women's Beach Volleyball, 'WTE' = Women's Tennis, 'WVB' = Women's Volleyball, 'WWP' = Women's Water Polo |
season | string | Season for sport |
Example
const result = sdv.ncaa.getDivisions(sport='MBB', season='2017');
#
ncaa.getSportDivisionData(sport, season, division, rankingPeriod, type, gameHigh, category) โRequest the data from the NCAA Stats website.
Kind: static method of ncaa
Returns: json
Param | Description |
---|---|
sport | Sport abbreviation. Acceptable values: 'MBA' = Baseball, 'MBB' = Men's basketball, 'MFB' = Men's Football, 'MIH' = Men's Ice-hockey, 'MLA' = Men's Lacrosse', 'MSO' = Men's Soccer, 'MTE' = Men's Tennis, 'MVB' = Men's Volleyball, 'MWP' = Men's Water Polo, 'WBB' = Women's Basketball, 'WBW' = Women's Bowling, 'WFH' = Field Hockey, 'WIH' = Women's Ice-Hockey, 'WLA' = Women's Lacrosse, 'WSB' = Women's Softball, 'WSO' = Women's Soccer, 'WSV' = Women's Beach Volleyball, 'WTE' = Women's Tennis, 'WVB' = Women's Volleyball, 'WWP' = Women's Water Polo |
season | Season of query, value for 2016-2017 season would be 2017. |
division | Division, for college football: 11 for FBS, 12 for FCS, otherwise 1 for Division-I, 2 for Division-II, 3 for Division-III. |
rankingPeriod | Integer value indicating the ranking period, options can be found from using the @function ncaaSports.getSportDivisionData function. |
type | Individual or Team type of statistics |
gameHigh | logical, indicating whether the statistic desired is of the game-high variety |
category | Value for the stat category, can also be found using the @function ncaaSports.getSportDivisionData |
Example
const sportDivisionData = sdv.ncaa.getSportDivisionData(sport='MFB',season='2016',division=12,type='team',gameHigh=true);
#
ncaa.getPlayerData(sport, season, division, rankingPeriod, gameHigh, category) โGet the Player Data from the NCAA Stats website.
Kind: static method of ncaa
Returns: json
Param | Type | Description |
---|---|---|
sport | Sport abbreviation. Acceptable values: 'MBA' = Baseball, 'MBB' = Men's basketball, 'MFB' = Men's Football, 'MIH' = Men's Ice-hockey, 'MLA' = Men's Lacrosse', 'MSO' = Men's Soccer, 'MTE' = Men's Tennis, 'MVB' = Men's Volleyball, 'MWP' = Men's Water Polo, 'WBB' = Women's Basketball, 'WBW' = Women's Bowling, 'WFH' = Field Hockey, 'WIH' = Women's Ice-Hockey, 'WLA' = Women's Lacrosse, 'WSB' = Women's Softball, 'WSO' = Women's Soccer, 'WSV' = Women's Beach Volleyball, 'WTE' = Women's Tennis, 'WVB' = Women's Volleyball, 'WWP' = Women's Water Polo | |
season | Season of query, value for 2016-2017 season would be 2017. | |
division | Division, for college football: 11 for FBS, 12 for FCS, otherwise 1 for Division-I, 2 for Division-II, 3 for Division-III. | |
rankingPeriod | Integer value indicating the ranking period, options can be found from using the @function ncaaSports.getSportDivisionData function. | |
gameHigh | 'Y' | 'N' | logical, indicating whether the statistic desired is of the game-high variety |
category | Value for the stat category, can also be found using the @function ncaaSports.getSportDivisionData |
Example
const players = await sdv.ncaa.getPlayerData(sport = 'MFB', year = '2017', division = '11',rankingPeriod = '52', gameHigh='N', category = '20')
#
ncaa.getTeamData(sport, season, division, rankingPeriod, gameHigh, category) โGet the Team Data from the NCAA Stats website.
Kind: static method of ncaa
Returns: json
Param | Type | Description |
---|---|---|
sport | Sport abbreviation. Acceptable values: 'MBA' = Baseball, 'MBB' = Men's basketball, 'MFB' = Men's Football, 'MIH' = Men's Ice-hockey, 'MLA' = Men's Lacrosse', 'MSO' = Men's Soccer, 'MTE' = Men's Tennis, 'MVB' = Men's Volleyball, 'MWP' = Men's Water Polo, 'WBB' = Women's Basketball, 'WBW' = Women's Bowling, 'WFH' = Field Hockey, 'WIH' = Women's Ice-Hockey, 'WLA' = Women's Lacrosse, 'WSB' = Women's Softball, 'WSO' = Women's Soccer, 'WSV' = Women's Beach Volleyball, 'WTE' = Women's Tennis, 'WVB' = Women's Volleyball, 'WWP' = Women's Water Polo | |
season | Season of query, value for 2016-2017 season would be 2017. | |
division | Division, for college football: 11 for FBS, 12 for FCS, otherwise 1 for Division-I, 2 for Division-II, 3 for Division-III. | |
rankingPeriod | Integer value indicating the ranking period, options can be found from using the @function ncaaSports.getSportDivisionData function. | |
gameHigh | 'Y' | 'N' | logical, indicating whether the statistic desired is of the game-high variety |
category | Value for the stat category, can also be found using the @function ncaaSports.getSportDivisionData |
Example
const teams = await sdv.ncaa.getTeamData(sport = 'MFB', year = '2017', division = '11', rankingPeriod = '52', gameHigh='N', category = '20')
Operations for NFL.
Kind: global namespace
- nfl :
object
#
nfl.getPlayByPlay(id) โGets the NFL game play-by-play data for a specified game.
Kind: static method of nfl
Returns: json
Param | Type | Description |
---|---|---|
id | number | Game id. |
Example
const result = await sdv.nfl.getPlayByPlay(401220403);
#
nfl.getBoxScore(id) โGets the NFL game box score data for a specified game.
Kind: static method of nfl
Returns: json
Param | Type | Description |
---|---|---|
id | number | Game id. |
Example
const result = await sdv.nfl.getBoxScore(401220403);
#
nfl.getSummary(id) โGets the NFL game summary data for a specified game.
Kind: static method of nfl
Returns: json
Param | Type | Description |
---|---|---|
id | number | Game id. |
Example
const result = await sdv.nfl.getSummary(401220403);
#
nfl.getPicks(id) โGets the NFL PickCenter data for a specified game.
Kind: static method of nfl
Returns: json
Param | Type | Description |
---|---|---|
id | number | Game id. |
Example
const result = await sdv.nfl.getPicks(401220403);
#
nfl.getSchedule(year, month, day) โGets the NFL schedule data for a specified date if available.
Kind: static method of nfl
Returns: json
Param | Type | Description |
---|---|---|
year | * | Year (YYYY) |
month | * | Month (MM) |
day | * | Day (DD) |
Example
const result = await sdv.nfl.getSchedule(year = 2019, month = 11, day = 17)
#
nfl.getScoreboard(year, month, day, limit) โGets the NFL scoreboard data for a specified date if available.
Kind: static method of nfl
Returns: json
Param | Type | Description |
---|---|---|
year | * | Year (YYYY) |
month | * | Month (MM) |
day | * | Day (DD) |
limit | number | Limit on the number of results @default 300 |
Example
const result = await sdv.nfl.getScoreboard(year = 2019, month = 11, day = 17)
#
nfl.getStandings(year, group) โGets the team standings for the NFL.
Kind: static method of nfl
Returns: json
Param | Type | Description |
---|---|---|
year | number | Season |
group | number | acceptable group names: 'league','conference','division' |
Example
const yr = 2016;const result = await sdv.nfl.getStandings(year = yr);
#
nfl.getTeamList()Gets the list of all NFL teams their identification info for ESPN.
Kind: static method of nfl
Example
const result = await sdv.nfl.getTeamList();
#
nfl.getTeamInfo(id) โGets the team info for a specific NFL team.
Kind: static method of nfl
Returns: json
Param | Type | Description |
---|---|---|
id | number | Team Id |
Example
const teamId = 16;const result = await sdv.nfl.getTeamInfo(teamId);
#
nfl.getTeamPlayers(id) โGets the team roster information for a specific NFL team.
Kind: static method of nfl
Returns: json
Param | Type | Description |
---|---|---|
id | number | Team Id |
Example
const teamId = 16;const result = await sdv.nfl.getTeamPlayers(teamId);
Operations for NHL.
Kind: global namespace
- nhl :
object
#
nhl.getPlayByPlay(id) โGets the NHL game play-by-play data for a specified game.
Kind: static method of nhl
Returns: json
Param | Type | Description |
---|---|---|
id | number | Game id. |
Example
const result = await sdv.nhl.getPlayByPlay(401272446);
#
nhl.getBoxScore(id) โGets the NHL game box score data for a specified game.
Kind: static method of nhl
Returns: json
Param | Type | Description |
---|---|---|
id | number | Game id. |
Example
const result = await sdv.nhl.getBoxScore(401272446);
#
nhl.getSummary(id) โGets the NHL game summary data for a specified game.
Kind: static method of nhl
Returns: json
Param | Type | Description |
---|---|---|
id | number | Game id. |
Example
const result = await sdv.nhl.getSummary(401272446);
#
nhl.getPicks(id) โGets the NHL PickCenter data for a specified game.
Kind: static method of nhl
Returns: json
Param | Type | Description |
---|---|---|
id | number | Game id. |
Example
const result = await sdv.nhl.getPicks(401272446);
#
nhl.getSchedule(year, month, day) โGets the NHL schedule data for a specified date if available.
Kind: static method of nhl
Returns: json
Param | Type | Description |
---|---|---|
year | * | Year (YYYY) |
month | * | Month (MM) |
day | * | Day (DD) |
Example
const result = await sdv.nhl.getSchedule(year = 2019, month = 11, day = 17)
#
nhl.getScoreboard(year, month, day, limit) โGets the NHL scoreboard data for a specified date if available.
Kind: static method of nhl
Returns: json
Param | Type | Description |
---|---|---|
year | * | Year (YYYY) |
month | * | Month (MM) |
day | * | Day (DD) |
limit | number | Limit on the number of results @default 300 |
Example
const result = await sdv.nhl.getScoreboard(year = 2019, month = 11, day = 16)
#
nhl.getStandings(year, group) โGets the team standings for the NHL.
Kind: static method of nhl
Returns: json
Param | Type | Description |
---|---|---|
year | number | Season |
group | number | acceptable group names: 'league','conference','division' |
Example
const yr = 2016;const result = await sdv.nhl.getStandings(year = yr);
#
nhl.getTeamList()Gets the list of all NHL teams their identification info for ESPN.
Kind: static method of nhl
Example
const result = await sdv.nhl.getTeamList();
#
nhl.getTeamInfo(id) โGets the team info for a specific NHL team.
Kind: static method of nhl
Returns: json
Param | Type | Description |
---|---|---|
id | number | Team Id |
Example
const teamId = 16;const result = await sdv.nhl.getTeamInfo(teamId);
#
nhl.getTeamPlayers(id) โGets the team roster information for a specific NHL team.
Kind: static method of nhl
Returns: json
Param | Type | Description |
---|---|---|
id | number | Team Id |
Example
const teamId = 16;const result = await sdv.nhl.getTeamPlayers(teamId);
Operations for WBB.
Kind: global namespace
- wbb :
object
- .getPlayByPlay(id) โ
- .getBoxScore(id) โ
- .getSummary(id) โ
- .getRankings(year, week) โ
- .getSchedule(year, month, day, group, seasontype, limit) โ
- .getScoreboard(year, month, day, group, seasontype, limit) โ
- .getConferences()
- .getStandings(year, group) โ
- .getTeamList(group) โ
- .getTeamInfo(id) โ
- .getTeamPlayers(id) โ
#
wbb.getPlayByPlay(id) โGets the Women's College Basketball game play-by-play data for a specified game.
Kind: static method of wbb
Returns: json
Param | Type | Description |
---|---|---|
id | number | Game id. |
Example
const result = await sdv.wbb.getPlayByPlay(401260565);
#
wbb.getBoxScore(id) โGets the Women's College Basketball game box score data for a specified game.
Kind: static method of wbb
Returns: json
Param | Type | Description |
---|---|---|
id | number | Game id. |
Example
const result = await sdv.wbb.getBoxScore(401260565);
#
wbb.getSummary(id) โGets the Women's College Basketball game summary data for a specified game.
Kind: static method of wbb
Returns: json
Param | Type | Description |
---|---|---|
id | number | Game id. |
Example
const result = await sdv.wbb.getSummary(401260565);
#
wbb.getRankings(year, week) โGets the WBB rankings data for a specified year and week if available.
Kind: static method of wbb
Returns: json
Param | Type | Description |
---|---|---|
year | * | Year (YYYY) |
week | * | Week |
Example
const result = await sdv.wbb.getRankings(year = 2021, week = 4)
#
wbb.getSchedule(year, month, day, group, seasontype, limit) โGets the Women's College Basketball schedule data for a specified date if available.
Kind: static method of wbb
Returns: json
Param | Type | Description |
---|---|---|
year | * | Year (YYYY) |
month | * | Month (MM) |
day | * | Day (DD) |
group | number | Group is 50 for Division-I, 51 for Division-II, 52 for Division-III |
seasontype | number | Pre-Season: 1, Regular Season: 2, Postseason: 3, Off-season: 4 |
limit | number | Limit on the number of results @default 300 |
Example
const result = await sdv.wbb.getSchedule(year = 2021, month = 02, day = 15, group=50)
#
wbb.getScoreboard(year, month, day, group, seasontype, limit) โGets the Women's College Basketball scoreboard data for a specified date if available.
Kind: static method of wbb
Returns: json
Param | Type | Description |
---|---|---|
year | * | Year (YYYY) |
month | * | Month (MM) |
day | * | Day (DD) |
group | number | Group is 50 for Division-I, 51 for Division-II, 52 for Division-III |
seasontype | number | Pre-Season: 1, Regular Season: 2, Postseason: 3, Off-season: 4 |
limit | number | Limit on the number of results @default 300 |
Example
const result = await sdv.wbb.getScoreboard(year = 2019, month = 02, day = 15, group=50)
#
wbb.getConferences()Gets the list of all Women's College Basketball conferences and their identification info for ESPN.
Kind: static method of wbb
Example
const result = await sdv.wbb.getConferences();
#
wbb.getStandings(year, group) โGets the team standings for Women's College Basketball.
Kind: static method of wbb
Returns: json
Param | Type | Description |
---|---|---|
year | number | Season |
group | number | Group is 50 for Division-I, 51 for Division-II, 52 for Division-III |
Example
const yr = 2020;const result = await sdv.wbb.getStandings(year = yr);
#
wbb.getTeamList(group) โGets the list of all Women's College Basketball teams their identification info for ESPN.
Kind: static method of wbb
Returns: json
Param | Type | Description |
---|---|---|
group | number | Group is 50 for Division I, 51 for Division II, 52 for Division III |
Example
get list of teamsconst result = await sdv.wbb.getTeamList(group=50);
#
wbb.getTeamInfo(id) โGets the team info for a specific WBB team.
Kind: static method of wbb
Returns: json
Param | Type | Description |
---|---|---|
id | number | Team Id |
Example
const teamId = 52;const result = await sdv.wbb.getTeamInfo(teamId);
#
wbb.getTeamPlayers(id) โGets the team roster information for a specific WBB team.
Kind: static method of wbb
Returns: json
Param | Type | Description |
---|---|---|
id | number | Team Id |
Example
const teamId = 52;const result = await sdv.wbb.getTeamPlayers(teamId);
Operations for WNBA.
Kind: global namespace
- wnba :
object
#
wnba.getPlayByPlay(id) โGets the WNBA game play-by-play data for a specified game.
Kind: static method of wnba
Returns: json
Param | Type | Description |
---|---|---|
id | number | Game id. |
Example
const result = await sdv.wnba.getPlayByPlay(401244185);
#
wnba.getBoxScore(id) โGets the WNBA game box score data for a specified game.
Kind: static method of wnba
Returns: json
Param | Type | Description |
---|---|---|
id | number | Game id. |
Example
const result = await sdv.wnba.getBoxScore(401244185);
#
wnba.getSummary(id) โGets the WNBA game summary data for a specified game.
Kind: static method of wnba
Returns: json
Param | Type | Description |
---|---|---|
id | number | Game id. |
Example
const result = await sdv.wnba.getSummary(401244185);
#
wnba.getSchedule(year, month, day) โGets the WNBA schedule data for a specified date if available.
Kind: static method of wnba
Returns: json
Param | Type | Description |
---|---|---|
year | * | Year (YYYY) |
month | * | Month (MM) |
day | * | Day (DD) |
Example
const result = await sdv.wnba.getSchedule(year = 2019, month = 07, day = 15)
#
wnba.getScoreboard(year, month, day, limit) โGets the WNBA scoreboard data for a specified date if available.
Kind: static method of wnba
Returns: json
Param | Type | Description |
---|---|---|
year | * | Year (YYYY) |
month | * | Month (MM) |
day | * | Day (DD) |
limit | number | Limit on the number of results @default 300 |
Example
const result = await sdv.wnba.getScoreboard(year = 2019, month = 07, day = 15)
#
wnba.getStandings(year, group) โGets the team standings for the WNBA.
Kind: static method of wnba
Returns: json
Param | Type | Description |
---|---|---|
year | number | Season |
group | number | acceptable group names: 'league','conference','division' |
Example
const yr = 2016;const result = await sdv.wnba.getStandings(year = yr);
#
wnba.getTeamList() โGets the list of all WNBA teams their identification info for ESPN.
Kind: static method of wnba
Returns: json
Example
const result = await sdv.wnba.getTeamList();
#
wnba.getTeamInfo(id) โGets the team info for a specific WNBA team.
Kind: static method of wnba
Returns: json
Param | Type | Description |
---|---|---|
id | number | Team Id |
Example
const teamId = 16;const result = await sdv.wnba.getTeamInfo(teamId);
#
wnba.getTeamPlayers(id) โGets the team roster information for a specific WNBA team.
Kind: static method of wnba
Returns: json
Param | Type | Description |
---|---|---|
id | number | Team Id |
Example
const teamId = 16;const result = await sdv.wnba.getTeamPlayers(teamId);
ยฉ 2020-21 sportsdataverse.js, developed by Saiem Gilani, part of the SportsDataverse