Skip to main content
Version: 0.0.54

NFL — ESPN web API (v3)

sportsdataverse.nfl — 5 endpoints.

espn_nfl_player_overview

ESPN endpoint.

Endpoint URL: GET https://site.web.api.espn.com/apis/common/v3/sports/football/nfl/athletes/{athlete_id}/overview

Valid URL: https://site.web.api.espn.com/apis/common/v3/sports/football/nfl/athletes/4239/overview

API ParameterPythonPatternRequiredNullable
athlete_idathlete_idY

Returns

Raw JSON Dict (no parser registered).

Example

espn_nfl_player_overview(athlete_id='4239')

Last validated n/a.

espn_nfl_player_stats_v3

ESPN endpoint.

Endpoint URL: GET https://site.web.api.espn.com/apis/common/v3/sports/football/nfl/athletes/{athlete_id}/stats

Valid URL: https://site.web.api.espn.com/apis/common/v3/sports/football/nfl/athletes/4239/stats

API ParameterPythonPatternRequiredNullable
athlete_idathlete_idY
seasonseasonY

Returns

Raw JSON Dict (no parser registered).

Example

espn_nfl_player_stats_v3(athlete_id='4239')

Last validated n/a.

espn_nfl_player_gamelog

ESPN endpoint.

Endpoint URL: GET https://site.web.api.espn.com/apis/common/v3/sports/football/nfl/athletes/{athlete_id}/gamelog

Valid URL: https://site.web.api.espn.com/apis/common/v3/sports/football/nfl/athletes/4239/gamelog

API ParameterPythonPatternRequiredNullable
athlete_idathlete_idY
seasonseasonY

Returns

Raw JSON Dict (no parser registered).

Example

espn_nfl_player_gamelog(athlete_id='4239')

Last validated n/a.

espn_nfl_player_splits

ESPN endpoint.

Endpoint URL: GET https://site.web.api.espn.com/apis/common/v3/sports/football/nfl/athletes/{athlete_id}/splits

Valid URL: https://site.web.api.espn.com/apis/common/v3/sports/football/nfl/athletes/4239/splits

API ParameterPythonPatternRequiredNullable
athlete_idathlete_idY
seasonseasonY

Returns

Raw JSON Dict (no parser registered).

Example

espn_nfl_player_splits(athlete_id='4239')

Last validated n/a.

espn_nfl_leaders

ESPN endpoint.

Endpoint URL: GET https://site.web.api.espn.com/apis/common/v3/sports/football/nfl/statistics/byathlete

Valid URL: https://site.web.api.espn.com/apis/common/v3/sports/football/nfl/statistics/byathlete

API ParameterPythonPatternRequiredNullable
categorycategoryY
seasonseasonY
seasontypeseason_typeY
limitlimitY
pagepageY
sortsortY

Returns

col_nametypedescription
athletescharacterAthletes.
glossarycharacterGlossary.
categoriescharacterCategories.
pagination_countintegerPagination count.
pagination_limitintegerPagination limit.
pagination_pageintegerPagination page.
pagination_pagesintegerPagination pages.
pagination_firstcharacterPagination first.
pagination_nextcharacterPagination next.
pagination_lastcharacterPagination last.
league_idcharacterLeague id.
league_uidcharacterLeague uid.
league_namecharacterLeague name.
league_abbreviationcharacterLeague abbreviation.
league_slugcharacterLeague slug.
league_short_namecharacterLeague short name.
current_season_yearintegerCurrent season year.
current_season_display_namecharacterCurrent season display name.
current_season_start_datecharacterCurrent season start date.
current_season_end_datecharacterCurrent season end date.
current_season_type_idcharacterCurrent season type id.
current_season_type_typeintegerCurrent season type type.
current_season_type_namecharacterCurrent season type name.
current_season_type_start_datecharacterCurrent season type start date.
current_season_type_end_datecharacterCurrent season type end date.
current_season_type_week_numberinteger
current_season_type_week_start_datecharacter
current_season_type_week_end_datecharacter
current_season_type_week_textcharacter
requested_season_yearintegerRequested season year.
requested_season_display_namecharacterRequested season display name.
requested_season_start_datecharacterRequested season start date.
requested_season_end_datecharacterRequested season end date.
requested_season_type_idcharacterRequested season type id.
requested_season_type_typeintegerRequested season type type.
requested_season_type_namecharacterRequested season type name.
requested_season_type_start_datecharacterRequested season type start date.
requested_season_type_end_datecharacterRequested season type end date.

Example

espn_nfl_leaders()

Last validated n/a.