All URIs are relative to https://api.collegefootballdata.com
Method | HTTP request | Description |
---|---|---|
get_rankings | GET /rankings | Historical polls and rankings |
list[RankingWeek] get_rankings(year, week=week, season_type=season_type)
Historical polls and rankings
Poll rankings
from __future__ import print_function
import time
import cfbd
from cfbd.rest import ApiException
from pprint import pprint
# Configure API key authorization: ApiKeyAuth
configuration = cfbd.Configuration()
configuration.api_key['Authorization'] = 'YOUR_API_KEY'
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# configuration.api_key_prefix['Authorization'] = 'Bearer'
# create an instance of the API class
api_instance = cfbd.RankingsApi(cfbd.ApiClient(configuration))
year = 56 # int | Year/season filter for games
week = 56 # int | Week filter (optional)
season_type = 'regular' # str | Season type filter (regular or postseason) (optional) (default to regular)
try:
# Historical polls and rankings
api_response = api_instance.get_rankings(year, week=week, season_type=season_type)
pprint(api_response)
except ApiException as e:
print("Exception when calling RankingsApi->get_rankings: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
year | int | Year/season filter for games | |
week | int | Week filter | [optional] |
season_type | str | Season type filter (regular or postseason) | [optional] [default to regular] |
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]