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/rankings

Get current poll rankings for a college league.

ParameterTypeRequiredDescription
leagueIdstringYesncaa_basketball or ncaa_football
pollstringNoPoll 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_basketballap, coaches
  • ncaa_footballcfp, ap, coaches
  • The points field reflects poll voting points. For CFP rankings, points are not published — the field is 0 and conference is populated instead.

NCAAF CFP Example

GET/v1/leagues/ncaa_football/rankings?poll=cfp

Fetch 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 }
    ]
  }
}