wbb
wbb : object#
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(year, group) โ
- .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(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
| 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 = 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
| Param | Type | Description |
|---|---|---|
| year | number | Season |
| group | number | Group 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
| 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);