Skip to main content

wbb

wbb : object#

Operations for WBB.

Kind: global namespace

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

ParamTypeDescription
idnumberGame 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

ParamTypeDescription
idnumberGame 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

ParamTypeDescription
idnumberGame id.

Example

const result = await sdv.wbb.getSummary(401260565);

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

ParamTypeDescription
year*Year (YYYY)
month*Month (MM)
day*Day (DD)
groupnumberGroup is 50 for Division-I, 51 for Division-II, 52 for Division-III
seasontypenumberPre-Season: 1, Regular Season: 2, Postseason: 3, Off-season: 4
limitnumberLimit 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

ParamTypeDescription
year*Year (YYYY)
month*Month (MM)
day*Day (DD)
groupnumberGroup is 50 for Division-I, 51 for Division-II, 52 for Division-III
seasontypenumberPre-Season: 1, Regular Season: 2, Postseason: 3, Off-season: 4
limitnumberLimit on the number of results @default 300

Example

const result = await sdv.wbb.getScoreboard(year = 2019, month = 02, day = 15, group=50)

wbb.getConferences(year, group) โ‡’#

Gets the list of all Women's College Basketball conferences and their identification info for ESPN.

Kind: static method of wbb
Returns: json

ParamTypeDescription
yearnumberSeason
groupnumberGroup is 50 for Division-I, 51 for Division-II, 52 for Division-III

Example

const yr = 2021;const result = await sdv.wbb.getConferences(year = yr, group = 50);

wbb.getStandings(year, group) โ‡’#

Gets the team standings for Women's College Basketball.

Kind: static method of wbb
Returns: json

ParamTypeDescription
yearnumberSeason
groupnumberGroup is 50 for Division-I, 51 for Division-II, 52 for Division-III, see wbb.getConferences() for more info

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

ParamTypeDescription
groupnumberGroup 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

ParamTypeDescription
idnumberTeam 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

ParamTypeDescription
idnumberTeam Id

Example

const teamId = 52;const result = await sdv.wbb.getTeamPlayers(teamId);