Skip to main content

mbb

mbb : object#

Operations for Men's College Basketball.

Kind: global namespace

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

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

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

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

ParamTypeDescription
idnumberGame id.

Example

const result = await sdv.mbb.getPicks(401260281);

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

ParamTypeDescription
year*Year (YYYY)
pagenumberPage (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

ParamTypeDescription
year*Year (YYYY)
pagenumberPage (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

ParamTypeDescription
year*Year (YYYY)
schoolstringSchool

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

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

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

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.mbb.getScoreboard(year = 2021, month = 02, day = 15, group=50)

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

Gets the Men's College Basketball Conferences.

Kind: static method of mbb
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.mbb.getConferences(year = yr, group = 50);

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

Gets the team standings for Men's College Basketball.

Kind: static method of mbb
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.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

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

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

ParamTypeDescription
idnumberTeam Id

Example

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