Skip to main content

cfb

cfb : object#

Operations for College Football.

Kind: global namespace

cfb.getPlayByPlay(id) โ‡’#

Gets the College Football game play-by-play data for a specified game.

Kind: static method of cfb
Returns: json

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

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

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

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

ParamTypeDescription
year*Year (YYYY)
pagenumberPage (50 per page)
group"HighSchool" | "JuniorCollege" | "PrepSchool"Institution Type
statestringState 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

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

ParamTypeDescription
year*Year (YYYY)
schoolstringSchool

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

ParamTypeDescription
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

ParamTypeDescription
year*Year (YYYY)
month*Month (MM)
day*Day (DD)
groupnumberGroup is 80 for FBS, 81 for FCS
seasontypenumberPre-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

ParamTypeDescription
year*Year (YYYY)
month*Month (MM)
day*Day (DD)
groupnumberGroup is 80 for FBS, 81 for FCS
seasontypenumberPre-Season: 1, Regular Season: 2, Postseason: 3, Off-season: 4
limitnumberLimit on the number of results @default 300

Example

const result = await sdv.cfb.getScoreboard(year = 2019, month = 11, day = 16, group=80)

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

Gets the list of all College Football conferences and their identification info for ESPN.

Kind: static method of cfb
Returns: json

ParamTypeDescription
yearnumberSeason
groupnumberGroup is 80 for FBS, 81 for FCS

Example

const yr = 2021;const result = await sdv.cfb.getConferences(year = yr, group = 80);

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

Gets the team standings for College Football.

Kind: static method of cfb
Returns: json

ParamTypeDescription
yearnumberSeason
groupnumberGroup is 80 for FBS, 81 for FCS

Example

const yr = 2020;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

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

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

ParamTypeDescription
idnumberTeam Id

Example

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