Rankings
Poll rankings for college basketball (NCAAB) and college football (NCAAF). NCAAB supports the AP and Coaches polls. NCAAF supports the CFP, AP, and Coaches polls. Rankings are refreshed weekly during the season.
League Rankings
GET
/v1/leagues/:leagueId/rankingsGet current poll rankings for a college league.
| Parameter | Type | Required | Description |
|---|---|---|---|
| leagueId | string | Yes | ncaa_basketball or ncaa_football |
| poll | string | No | Poll type. NCAAB: ap, coaches. NCAAF: cfp, ap, coaches. Defaults to ap. |
Response
{
"success": true,
"data": {
"leagueId": "ncaa_basketball",
"pollType": "ap",
"season": "2025-26",
"fetchedAt": "2026-03-30T12:00:00.000Z",
"rankings": [
{ "rank": 1, "teamName": "Auburn", "record": "25-6", "points": 1512 },
{ "rank": 2, "teamName": "Duke", "record": "27-4", "points": 1450 },
{ "rank": 3, "teamName": "Houston", "record": "26-5", "points": 1398 },
{ "rank": 25, "teamName": "Michigan St.", "record": "22-9", "points": 312 }
]
}
}
Supported polls by league
- ncaa_basketball —
ap,coaches - ncaa_football —
cfp,ap,coaches - The
pointsfield reflects poll voting points. For CFP rankings, points are not published — the field is0andconferenceis populated instead.
NCAAF CFP Example
GET
/v1/leagues/ncaa_football/rankings?poll=cfpFetch CFP playoff rankings for college football.
Response
{
"success": true,
"data": {
"leagueId": "ncaa_football",
"pollType": "cfp",
"season": "2025",
"fetchedAt": "2025-12-08T12:00:00.000Z",
"rankings": [
{ "rank": 1, "teamName": "Oregon", "record": "13-0", "conference": "Big Ten", "points": 0 },
{ "rank": 2, "teamName": "Georgia", "record": "12-1", "conference": "SEC", "points": 0 },
{ "rank": 3, "teamName": "Texas", "record": "12-1", "conference": "SEC", "points": 0 },
{ "rank": 12, "teamName": "Clemson", "record": "10-3", "conference": "ACC", "points": 0 }
]
}
}