Skip to content
GET /v1/rankings

AP, Coaches & CFP rankings

Try it live

10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.

Custom headers (optional)
api.oanor.com/cfb-api

It works. Grab an API key and use it in your project.

Get an API key

Code snippets

curl "https://api.oanor.com/cfb-api/v1/rankings" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/cfb-api/v1/rankings", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/cfb-api/v1/rankings");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
    "https://api.oanor.com/cfb-api/v1/rankings",
    headers={"x-oanor-key": "oanor_test_..."}
)

Example response

A real response from this endpoint, captured by the latest health check.

{
    "data": {
        "count": 5,
        "polls": [
            {
                "poll": "AP Top 25",
                "type": "ap",
                "ranks": [
                    {
                        "id": "84",
                        "rank": 1,
                        "team": "Indiana",
                        "trend": "-",
                        "points": 1650,
                        "record": "16-0",
                        "previous": 1,
                        "first_place_votes": 66
                    },
                    {
                        "id": "2390",
                        "rank": 2,
                        "team": "Miami",
                        "trend": "+8",
                        "points": 1584,
                        "record": "13-3",
                        "previous": 10,
                        "first_place_votes": 0
                    },
                    {
                        "id": "145",
                        "rank": 3,
                        "team": "Ole Miss",
                        "trend": "+3",
                        "points": 1492,
                        "record": "13-2",
                        "previous": 6,
                        "first_place_votes": 0
                    },
                    {
                        "id": "2483",
                        "rank": 4,
                        "team": "Oregon",
                        "trend": "+1",
                        "points": 1429,
                        "record": "13-2",
                        "previous": 5,
                        "first_place_votes": 0
                    },
                    {
                        "id": "194",
                        "rank": 5,
                        "team": "Ohio State",
                        "trend": "-2",
                        "points": 1378,
                        "record": "12-2",
                        "previous": 3,
                        "first_place_votes": 0
                    },
                    {
                        "id": "61",
                        "rank": 6,
                        "team": "Georgia",
                        "trend": "-4",
                        "points": 1364,
                        "record": "12-2",
                        "previous": 2,
                        "first_place_votes": 0
                    },
                    {
                        "id": "2641",
                        "rank": 7,
                        "team": "Texas Tech",
                        "trend": "-3",
                        "points": 1232,
                        "record": "12-2",
                        "previous": 4,
                        "first_place_votes": 0
                    },
                    {
                        "id": "245",
                        "rank": 8,
                        "team": "Texas A&M",
                        "trend": "-1",
                        "points": 1157,
                        "record": "11-2",
  
…