Skip to main content

CFB recipes

College football lives under sdv.cfb. It carries the universal ESPN surface plus the NCAA + football extras — scoreboard, rankings (AP/Coaches), rosters, and the drive-aware summary dispatcher. Pass { parsed: true } for tidy rows.

Scoreboard​

import sdv from 'sportsdataverse';

const games = await sdv.cfb.espnCfbScoreboard({ parsed: true });
console.table(games);

Live and inline — week + groups (80 = FBS) narrow it down:

Loading live cell…

Open in playground â–¶

Rankings (AP poll & friends)​

import sdv from 'sportsdataverse';

const rankings = await sdv.cfb.espnCfbRankings({ parsed: true });
console.table(rankings);
Loading live cell…

Open in playground â–¶

Team roster​

team_id 333 is Alabama.

import sdv from 'sportsdataverse';

const roster = await sdv.cfb.espnCfbTeamRoster({ team_id: 333, parsed: true });
console.table(roster);

Open in playground â–¶

tip

Full method + parameter tables: CFB reference. For recruiting rankings, see the Providers guide (247Sports).