Nhl.Api
3.6.0
dotnet add package Nhl.Api --version 3.6.0
NuGet\Install-Package Nhl.Api -Version 3.6.0
<PackageReference Include="Nhl.Api" Version="3.6.0" />
paket add Nhl.Api --version 3.6.0
#r "nuget: Nhl.Api, 3.6.0"
// Install Nhl.Api as a Cake Addin #addin nuget:?package=Nhl.Api&version=3.6.0 // Install Nhl.Api as a Cake Tool #tool nuget:?package=Nhl.Api&version=3.6.0
The Official Unofficial .NET NHL API 🏒
A modern C# .NET library for the NHL API providing various NHL information about players, games, teams, conferences, divisions, statistics and more
<div align="center"> <img src="https://user-images.githubusercontent.com/15982357/151871970-87419a98-69f1-47c3-9a82-f15c48e30c5f.png" alt="nhl-api-logo" height="350" /> </div>
Table of Contents 📚
- Installation 💭 <a href="#installing-nhl-api">Installing Nhl.Api</a>
- Implementation 🚀 <a href="#implementation">Implementation</a>
- Documentation 📖 <a href="#documentation">Documentation</a>
- Bugs 🐛 <a href="#bugs">Bugs</a>
- Feature Backlog 📈 <a href="#feature-backlog">Feature Backlog</a>
- Notable Mentions 🙏 <a href="#notable-mentions">Notable Mentions</a>
- Contents 📋 <a href="#contents">Contents</a>
Installing Nhl.Api 💭 <a name="installing-nhl-api"></a>
You should install Nhl.Api with NuGet:
Install-Package Nhl.Api
Or via the .NET Core command line interface:
dotnet add package Nhl.Api
Either commands, from Package Manager Console or .NET Core CLI, will download and install all required dependencies.
Implementation 🚀 <a name="implementation"></a>
If you are using any type of a inversion of control or dependency injection library such as the built in library within .NET Core, Unity, or AutoFac. It's very simple to implement, or you can create an instance of the NhlApi
class and use the API as you would like.
If you are using the built-in .NET Core dependency injection library, there is a NuGet package to easily add the Nhl.Api to your .NET application, <a href="https://github.com/Afischbacher/Nhl.Api.Extensions.Microsoft.DependencyInjection">Nhl.Api.Extensions.Microsoft.DependencyInjection</a> this extension, it's highly recommended.
Nhl.Api.Extensions.Microsoft.DependencyInjection
builder.Services.AddNhlApi();
.NET
builder.Services.AddSingleton<INhlApi, NhlApi>();
Unity
container.RegisterType<INhlApi, NhlApi>();
AutoFac
builder.RegisterType<NhlApi>().As<INhlApi>();
Simple Object Instantiation
var nhlApi = new NhlApi();
<br/> You can also use a subset of the Nhl.Api for specific data within the Nhl.Api, such as only game data, player data, statistics or league information.<br/> These individual API's make up the Nhl.Api in it's entirety. <br/> If you are using the <a href="https://github.com/Afischbacher/Nhl.Api.Extensions.Microsoft.DependencyInjection">Nhl.Api.Extensions.Microsoft.DependencyInjection</a> NuGet, these API's are included automatically within your .NET Core project.
Documentation 📖 <a name="documentation"></a>
Once registered using your dependency injection library of choice or just using the simple instance of the NHL API. Explore the API and see the all the possibilities.
Nhl Player Api
.NET
builder.Services.AddSingleton<INhlPlayerApi, NhlPlayerApi>();
<br/>
Unity
container.RegisterType<INhlPlayerApi, NhlPlayerApi>();
<br/>
AutoFac
builder.RegisterType<NhlPlayerApi>().As<INhlPlayerApi>();
<br/>
Simple Object Instantiation
var nhlPlayerApi = new NhlPlayerApi();
<br/>
Nhl Game Api
.NET
builder.Services.AddSingleton<INhlGameApi, NhlGameApi>();
<br/>
Unity
container.RegisterType<INhlGameApi, NhlGameApi>();
<br/>
AutoFac
builder.RegisterType<NhlGameApi>().As<INhlGameApi>();
<br/>
Simple Object Instantiation
var nhlGameApi = new NhlGameApi();
<br/>
Nhl Statistics Api
.NET
builder.Services.AddSingleton<INhlStatisticsApi, NhlStatisticsApi>();
<br/>
Unity
container.RegisterType<INhlStatisticsApi, NhlStatisticsApi>();
<br/>
AutoFac
builder.RegisterType<NhlStatisticsApi>().As<INhlStatisticsApi>();
<br/>
Simple Object Instantiation
var nhlStatisticsApi = new NhlStatisticsApi();
<br/>
Nhl League Api
.NET
builder.Services.AddSingleton<INhlLeagueApi, NhlLeagueApi>();
<br/>
Unity
container.RegisterType<INhlLeagueApi, NhlLeagueApi>();
<br/>
AutoFac
builder.RegisterType<NhlLeagueApi>().As<INhlLeagueApi>();
<br/>
Simple Object Instantiation
var nhlLeagueApi = new NhlLeagueApi();
<br/>
Bugs 🐛 <a name="bugs"></a>
If you have any issues with the library or suggestions, please feel free to create an issue and it will be adressed as soon as possible 😃
Feature Backlog 📈 <a name="feature-backlog"></a>
Currently there are no features in the backlog, but if you have any suggestions, please feel free to create an issue and it will be adressed as soon as possible 😃
Notable Mentions 🙏 <a name="notable-mentions"></a>
Thank you to all the people in the hockey community, especially:
- <a target="_blank" href="https://gitlab.com/dword4/nhlapi">Drew Hynes</a> for providing the leading guidance for the all of the NHL stat heads for having the new API documented for usage, without him this would not be possible.
- <a target="_blank" href="https://www.zacharymaludzinski.com/">Zachary Maludzinski</a> to contributed to documenting the <a href="https://api-web.nhle.com/api/v1" target="_blank">NHL Web API</a>. Without all this help, and documentation one of this would be possible.
- <a target="_blank" href="https://www.nhl.com/">NHL</a> for providing the API for the community to use to build awesome stuff.
Contents 📋 <a name="contents"></a>
- NhlApi
- #ctor()
- Dispose()
- DisposeAsync()
- GetAllPlayersAsync(cancellationToken)
- GetAllPlayersStatisticValuesBySeasonAsync(seasonYear,gameType,cancellationToken)
- GetAllRosterSeasonsByTeamAsync(teamId,cancellationToken)
- GetAllRosterSeasonsByTeamAsync(team,cancellationToken)
- GetAllSeasonsAsync()
- GetAllTotalPlayerStatisticValuesBySeasonAsync(playerId,seasonYear,gameType,cancellationToken)
- GetAllTotalPlayerStatisticValuesBySeasonAsync(playerEnum,seasonYear,gameType,cancellationToken)
- GetBoxscoreByGameIdAsync(gameId,cancellationToken)
- GetCurrentTeamScoreboardAsync(teamId,cancellationToken)
- GetCurrentTeamScoreboardAsync(team,cancellationToken)
- GetGameCenterBoxScoreByGameIdAsync(gameId,cancellationToken)
- GetGameCenterLandingByGameIdAsync(gameId,cancellationToken)
- GetGameCenterPlayByPlayByGameIdAsync(gameId,cancellationToken,includeEventDateTime)
- GetGameMetadataByGameIdAsync(gameId,cancellationToken)
- GetGameScoreboardAsync(cancellationToken)
- GetGameScoresByDateAsync(date,cancellationToken)
- GetGoalieInformationAsync(playerId,cancellationToken)
- GetGoalieInformationAsync(player,cancellationToken)
- GetGoalieSeasonGameLogsBySeasonAndGameTypeAsync(player,seasonYear,gameType,cancellationToken)
- GetGoalieSeasonGameLogsBySeasonAndGameTypeAsync(playerId,seasonYear,gameType,cancellationToken)
- GetGoalieStatisticsBySeasonAndFilterExpressionAsync(seasonYear,expressionGoalieFilter,goalieStatisticsFilterToSortBy,limit,offsetStart,gameType,cancellationToken)
- GetGoalieStatisticsLeadersAsync(goalieStatisticsType,seasonYear,gameType,limit,cancellationToken)
- GetLeagueGameWeekScheduleByDateAsync(date,cancellationToken)
- GetLeagueMetadataInformationAsync(playerIds,teamIds,cancellationToken)
- GetLeagueMetadataInformationAsync(players,teams,cancellationToken)
- GetLeagueScheduleCalendarByDateAsync(date,cancellationToken)
- GetLeagueStandingsByDateAsync(date,cancellationToken)
- GetLeagueStandingsSeasonInformationAsync(cancellationToken)
- GetLeagueWeekScheduleByDateAsync(date,cancellationToken)
- GetLiveGameFeedPlayerShiftsAsync(gameId,cancellationToken)
- GetPlayerDraftRankingByYearAsync(seasonYear,startingPosition,cancellationToken)
- GetPlayerHeadshotImageAsync(player,seasonYear,cancellationToken)
- GetPlayerHeadshotImageAsync(playerId,seasonYear,cancellationToken)
- GetPlayerInformationAsync(playerId,cancellationToken)
- GetPlayerInformationAsync(player,cancellationToken)
- GetPlayerSeasonGameLogsBySeasonAndGameTypeAsync(player,seasonYear,gameType,cancellationToken)
- GetPlayerSeasonGameLogsBySeasonAndGameTypeAsync(playerId,seasonYear,gameType,cancellationToken)
- GetPlayerSpotlightAsync(cancellationToken)
- GetPlayerStatisticsBySeasonAndFilterExpressionAsync(seasonYear,expressionPlayerFilter,playerStatisticsFilterToSortBy,limit,offsetStart,gameType,cancellationToken)
- GetRealtimePlayerStatisticsBySeasonAndFilterExpressionAsync(seasonYear,expressionPlayerFilter,playerRealtimeStatisticsFilterToSortBy,limit,offsetStart,gameType,cancellationToken)
- GetSkaterStatisticsLeadersAsync(playerStatisticsType,seasonYear,gameType,limit,cancellationToken)
- GetSourcesToWatchGamesAsync(cancellationToken)
- GetTeamColorsAsync(team,cancellationToken)
- GetTeamColorsAsync(teamId,cancellationToken)
- GetTeamLogoAsync(teamId,teamLogoType,cancellationToken)
- GetTeamLogoAsync(team,teamLogoType,cancellationToken)
- GetTeamProspectsByTeamAsync(teamId,cancellationToken)
- GetTeamProspectsByTeamAsync(team,cancellationToken)
- GetTeamRosterBySeasonYearAsync(teamId,seasonYear,cancellationToken)
- GetTeamRosterBySeasonYearAsync(team,seasonYear,cancellationToken)
- GetTeamScheduleBySeasonAsync(teamAbbreviation,seasonYear,cancellationToken)
- GetTeamSeasonScheduleBySeasonYearAsync(teamId,seasonYear,cancellationToken)
- GetTeamSeasonScheduleBySeasonYearAsync(team,seasonYear,cancellationToken)
- GetTeamSeasonScheduleByYearAndMonthAsync(teamId,year,month,cancellationToken)
- GetTeamSeasonScheduleByYearAndMonthAsync(team,year,month,cancellationToken)
- GetTeamStatisticsBySeasonAndGameTypeAsync(team,seasonYear,gameType,cancellationToken)
- GetTeamStatisticsBySeasonAndGameTypeAsync(teamId,seasonYear,gameType,cancellationToken)
- GetTeamStatisticsBySeasonAsync(team,cancellationToken)
- GetTeamStatisticsBySeasonAsync(teamId,cancellationToken)
- GetTeamWeekScheduleByDateAsync(teamAbbreviation,date,cancellationToken)
- GetTeamWeekScheduleByDateAsync(teamId,date,cancellationToken)
- GetTeamWeekScheduleByDateAsync(team,date,cancellationToken)
- GetTimeOnIcePlayerStatisticsBySeasonAndFilterExpressionAsync(seasonYear,expressionPlayerFilter,playerTimeOnIceStatisticsFilterToSortBy,limit,offsetStart,gameType,cancellationToken)
- GetTotalPlayerStatisticValueByTypeAndSeasonAsync(playerEnum,playerGameCenterStatistic,seasonYear,gameType,cancellationToken)
- GetTotalPlayerStatisticValueByTypeAndSeasonAsync(playerId,playerGameCenterStatistic,seasonYear,gameType,cancellationToken)
- GetTvScheduleBroadcastByDateAsync(date,cancellationToken)
- IsLeagueActiveAsync()
- IsPlayoffSeasonActiveAsync(cancellationToken)
- IsPreSeasonActiveAsync(cancellationToken)
- IsRegularSeasonActiveAsync(cancellationToken)
- SearchAllActivePlayersAsync(query,limit,cancellationToken)
- SearchAllPlayersAsync(query,limit,cancellationToken)
- NhlGameApi
- #ctor()
- GetBoxscoreByGameIdAsync(gameId,cancellationToken)
- GetCurrentTeamScoreboardAsync(team,cancellationToken)
- GetCurrentTeamScoreboardAsync(teamId,cancellationToken)
- GetGameCenterBoxScoreByGameIdAsync(gameId,cancellationToken)
- GetGameCenterLandingByGameIdAsync(gameId,cancellationToken)
- GetGameCenterPlayByPlayByGameIdAsync(gameId,includeEventDateTime,cancellationToken)
- GetGameMetadataByGameIdAsync(gameId,cancellationToken)
- GetGameScoreboardAsync(cancellationToken)
- GetGameScoresByDateAsync(date,cancellationToken)
- GetLiveGameFeedPlayerShiftsAsync(gameId,cancellationToken)
- GetTeamSeasonScheduleBySeasonYearAsync(teamId,seasonYear,cancellationToken)
- GetTeamSeasonScheduleBySeasonYearAsync(team,seasonYear,cancellationToken)
- GetTeamSeasonScheduleByYearAndMonthAsync(teamId,year,month,cancellationToken)
- GetTeamSeasonScheduleByYearAndMonthAsync(team,year,month,cancellationToken)
- GetTeamWeekScheduleByDateAsync(teamId,date,cancellationToken)
- GetTeamWeekScheduleByDateAsync(team,date,cancellationToken)
- NhlLeagueApi
- #ctor()
- GetAllRosterSeasonsByTeamAsync(teamId,cancellationToken)
- GetAllRosterSeasonsByTeamAsync(team,cancellationToken)
- GetAllSeasonsAsync(cancellationToken)
- GetLeagueGameWeekScheduleByDateAsync(date,cancellationToken)
- GetLeagueMetadataInformationAsync(playerIds,teamIds,cancellationToken)
- GetLeagueMetadataInformationAsync(players,teams,cancellationToken)
- GetLeagueScheduleCalendarByDateAsync(date,cancellationToken)
- GetLeagueStandingsByDateAsync(date,cancellationToken)
- GetLeagueStandingsSeasonInformationAsync(cancellationToken)
- GetLeagueWeekScheduleByDateAsync(date,cancellationToken)
- GetSourcesToWatchGamesAsync(cancellationToken)
- GetTeamColorsAsync(team,cancellationToken)
- GetTeamColorsAsync(teamId,cancellationToken)
- GetTeamLogoAsync(team,teamLogoType,cancellationToken)
- GetTeamLogoAsync(teamId,teamLogoType,cancellationToken)
- GetTeamProspectsByTeamAsync(teamId,cancellationToken)
- GetTeamProspectsByTeamAsync(team,cancellationToken)
- GetTeamRosterBySeasonYearAsync(teamId,seasonYear,cancellationToken)
- GetTeamRosterBySeasonYearAsync(team,seasonYear,cancellationToken)
- GetTeamScheduleBySeasonAsync(teamAbbreviation,seasonYear,cancellationToken)
- GetTeamWeekScheduleByDateAsync(teamAbbreviation,date,cancellationToken)
- GetTvScheduleBroadcastByDateAsync(date,cancellationToken)
- IsLeagueActiveAsync(cancellationToken)
- IsPlayoffSeasonActiveAsync(cancellationToken)
- IsPreSeasonActiveAsync(cancellationToken)
- IsRegularSeasonActiveAsync(cancellationToken)
- NhlPlayerApi
- #ctor()
- Dispose()
- GetAllPlayersAsync(cancellationToken)
- GetGoalieInformationAsync(playerId,cancellationToken)
- GetGoalieInformationAsync(player,cancellationToken)
- GetGoalieSeasonGameLogsBySeasonAndGameTypeAsync(player,seasonYear,gameType,cancellationToken)
- GetGoalieSeasonGameLogsBySeasonAndGameTypeAsync(playerId,seasonYear,gameType,cancellationToken)
- GetPlayerDraftRankingByYearAsync(seasonYear,startingPosition,cancellationToken)
- GetPlayerHeadshotImageAsync(player,seasonYear,cancellationToken)
- GetPlayerHeadshotImageAsync(playerId,seasonYear,cancellationToken)
- GetPlayerInformationAsync(playerId,cancellationToken)
- GetPlayerInformationAsync(player,cancellationToken)
- GetPlayerSeasonGameLogsBySeasonAndGameTypeAsync(player,seasonYear,gameType,cancellationToken)
- GetPlayerSeasonGameLogsBySeasonAndGameTypeAsync(playerId,seasonYear,gameType,cancellationToken)
- GetPlayerSpotlightAsync(cancellationToken)
- SearchAllActivePlayersAsync(query,limit,cancellationToken)
- SearchAllPlayersAsync(query,limit,cancellationToken)
- NhlStatisticsApi
- #ctor()
- GetAllPlayersStatisticValuesBySeasonAsync(seasonYear,gameType,cancellationToken)
- GetAllTotalPlayerStatisticValuesBySeasonAsync(playerEnum,seasonYear,gameType,cancellationToken)
- GetAllTotalPlayerStatisticValuesBySeasonAsync(playerId,seasonYear,gameType,cancellationToken)
- GetGoalieStatisticsBySeasonAndFilterExpressionAsync(seasonYear,expressionGoalieFilter,goalieStatisticsFilterToSortBy,limit,offsetStart,gameType,cancellationToken)
- GetGoalieStatisticsLeadersAsync(goalieStatisticsType,seasonYear,gameType,limit,cancellationToken)
- GetPlayerStatisticsBySeasonAndFilterExpressionAsync(seasonYear,expressionPlayerFilter,playerStatisticsFilterToSortBy,limit,offsetStart,gameType,cancellationToken)
- GetRealtimePlayerStatisticsBySeasonAndFilterExpressionAsync(seasonYear,expressionPlayerFilter,playerRealtimeStatisticsFilterToSortBy,limit,offsetStart,gameType,cancellationToken)
- GetSkaterStatisticsLeadersAsync(playerStatisticsType,seasonYear,gameType,limit,cancellationToken)
- GetTeamStatisticsBySeasonAndGameTypeAsync(team,seasonYear,gameType,cancellationToken)
- GetTeamStatisticsBySeasonAndGameTypeAsync(teamId,seasonYear,gameType,cancellationToken)
- GetTeamStatisticsBySeasonAsync(team,cancellationToken)
- GetTeamStatisticsBySeasonAsync(teamId,cancellationToken)
- GetTimeOnIcePlayerStatisticsBySeasonAndFilterExpressionAsync(seasonYear,expressionPlayerFilter,playerTimeOnIceStatisticsFilterToSortBy,limit,offsetStart,gameType,cancellationToken)
- GetTotalPlayerStatisticValueByTypeAndSeasonAsync(playerEnum,playerGameCenterStatistic,seasonYear,gameType,cancellationToken)
- GetTotalPlayerStatisticValueByTypeAndSeasonAsync(playerId,playerGameCenterStatistic,seasonYear,gameType,cancellationToken)
<a name='T-Nhl-Api-NhlApi'></a>
NhlApi type
Namespace
Nhl.Api
Summary
The official unofficial Nhl.Api providing various NHL information about players, teams, conferences, divisions, statistics and more
<a name='M-Nhl-Api-NhlApi-#ctor'></a>
#ctor() constructor
Summary
The official unofficial Nhl.Api providing various NHL information about players, teams, conferences, divisions, statistics and more
Parameters
This constructor has no parameters.
<a name='M-Nhl-Api-NhlApi-Dispose'></a>
Dispose() method
Summary
Releases and disposes all unused or garbage collected resources for the Nhl.Api
Parameters
This method has no parameters.
<a name='M-Nhl-Api-NhlApi-DisposeAsync'></a>
DisposeAsync() method
Summary
Releases and disposes all unused or garbage collected resources for the Nhl.Api asynchronously
Returns
The await-able result of the asynchronous operation
Parameters
This method has no parameters.
<a name='M-Nhl-Api-NhlApi-GetAllPlayersAsync-System-Threading-CancellationToken-'></a>
GetAllPlayersAsync(cancellationToken) method
Summary
Returns all the NHL players to ever play in the NHL
Returns
Returns all the NHL players to ever play in the NHL
Parameters
Name | Type | Description |
---|---|---|
cancellationToken | System.Threading.CancellationToken | A cancellation token that can be used by other objects or threads to receive notice of cancellation |
<a name='M-Nhl-Api-NhlApi-GetAllPlayersStatisticValuesBySeasonAsync-System-String,System-Nullable{Nhl-Api-Enumerations-Game-GameType},System-Threading-CancellationToken-'></a>
GetAllPlayersStatisticValuesBySeasonAsync(seasonYear,gameType,cancellationToken) method
Summary
Returns the all the NHL players game center statistics for the entire NHL league for a specific season and game type
Returns
Returns the all the NHL players game center statistics for the entire NHL league for a specific season and game type
Parameters
Name | Type | Description |
---|---|---|
seasonYear | System.String | The NHL season year to retrieve the team statistics, see SeasonYear for more information on valid season years |
gameType | System.Nullable{Nhl.Api.Enumerations.Game.GameType} | The NHL game type to retrieve the team statistics, see GameType for more information on valid game types |
cancellationToken | System.Threading.CancellationToken | A cancellation token to cancel the asynchronous operation |
<a name='M-Nhl-Api-NhlApi-GetAllRosterSeasonsByTeamAsync-System-Int32,System-Threading-CancellationToken-'></a>
GetAllRosterSeasonsByTeamAsync(teamId,cancellationToken) method
Summary
Returns every active season for an NHL team and their participation in the NHL
Returns
Returns every active season for an NHL team and their participation in the NHL
Parameters
Name | Type | Description |
---|---|---|
teamId | System.Int32 | The NHL team identifier, Example: 55 - Seattle Kraken |
cancellationToken | System.Threading.CancellationToken | A cancellation token that can be used by other objects or threads to receive notice of cancellation |
<a name='M-Nhl-Api-NhlApi-GetAllRosterSeasonsByTeamAsync-Nhl-Api-Models-Enumerations-Team-TeamEnum,System-Threading-CancellationToken-'></a>
GetAllRosterSeasonsByTeamAsync(team,cancellationToken) method
Summary
Returns every active season for an NHL team and their participation in the NHL
Returns
Returns every active season for an NHL team and their participation in the NHL
Parameters
Name | Type | Description |
---|---|---|
team | Nhl.Api.Models.Enumerations.Team.TeamEnum | The NHL team identifier, see TeamEnum for more information, Example: 9 - Ottawa Senators |
cancellationToken | System.Threading.CancellationToken | A cancellation token that can be used by other objects or threads to receive notice of cancellation |
<a name='M-Nhl-Api-NhlApi-GetAllSeasonsAsync-System-Threading-CancellationToken-'></a>
GetAllSeasonsAsync() method
Summary
Returns all the NHL seasons for the NHL league
Returns
Returns all the NHL seasons for the NHL league
Parameters
This method has no parameters.
<a name='M-Nhl-Api-NhlApi-GetAllTotalPlayerStatisticValuesBySeasonAsync-System-Int32,System-String,System-Nullable{Nhl-Api-Enumerations-Game-GameType},System-Threading-CancellationToken-'></a>
GetAllTotalPlayerStatisticValuesBySeasonAsync(playerId,seasonYear,gameType,cancellationToken) method
Summary
Returns the all the NHL player game center statistics for a specific player for a specific season and game type
Returns
Returns the all the NHL player game center statistics for a specific player for a specific season and game type
Parameters
Name | Type | Description |
---|---|---|
playerId | System.Int32 | The NHL player identifier, specifying which the NHL player, Example: 8478402 - Connor McDavid |
seasonYear | System.String | The NHL season year to retrieve the team statistics, see SeasonYear for more information on valid season years |
gameType | System.Nullable{Nhl.Api.Enumerations.Game.GameType} | The NHL game type to retrieve the team statistics, see GameType for more information on valid game types |
cancellationToken | System.Threading.CancellationToken | A cancellation token to cancel the asynchronous operation |
<a name='M-Nhl-Api-NhlApi-GetAllTotalPlayerStatisticValuesBySeasonAsync-Nhl-Api-Models-Enumerations-Player-PlayerEnum,System-String,System-Nullable{Nhl-Api-Enumerations-Game-GameType},System-Threading-CancellationToken-'></a>
GetAllTotalPlayerStatisticValuesBySeasonAsync(playerEnum,seasonYear,gameType,cancellationToken) method
Summary
Returns the all the NHL player game center statistics for a specific player for a specific season and game type
Returns
Returns the all the NHL player game center statistics for a specific player for a specific season and game type
Parameters
Name | Type | Description |
---|---|---|
playerEnum | Nhl.Api.Models.Enumerations.Player.PlayerEnum | The player enumeration identifier, specifying which the NHL player, PlayerEnum for more information |
seasonYear | System.String | The NHL season year to retrieve the team statistics, see SeasonYear for more information on valid season years |
gameType | System.Nullable{Nhl.Api.Enumerations.Game.GameType} | The NHL game type to retrieve the team statistics, see GameType for more information on valid game types |
cancellationToken | System.Threading.CancellationToken | A cancellation token to cancel the asynchronous operation |
<a name='M-Nhl-Api-NhlApi-GetBoxscoreByGameIdAsync-System-Int32,System-Threading-CancellationToken-'></a>
GetBoxscoreByGameIdAsync(gameId,cancellationToken) method
Summary
Returns the NHL game direct box score including information such as summaries, linescores, shots by period and more
Returns
Returns the NHL game direct box score including information such as summaries, linescores, shots by period and more
Parameters
Name | Type | Description |
---|---|---|
gameId | System.Int32 | The NHL game identifier, Example: 2023020204 |
cancellationToken | System.Threading.CancellationToken | A cancellation token that can be used by other objects or threads to receive notice of cancellation |
<a name='M-Nhl-Api-NhlApi-GetCurrentTeamScoreboardAsync-System-Int32,System-Threading-CancellationToken-'></a>
GetCurrentTeamScoreboardAsync(teamId,cancellationToken) method
Summary
Returns the current NHL team scoreboard for the current date and time, with upcoming game scores and completed game scores
Returns
Returns the current NHL team scoreboard for the current date and time, with upcoming game scores and completed game scores
Parameters
Name | Type | Description |
---|---|---|
teamId | System.Int32 | The team identifier, Example: 10 - Toronto Maples Leafs |
cancellationToken | System.Threading.CancellationToken | A cancellation token that can be used by other objects or threads to receive notice of cancellation |
<a name='M-Nhl-Api-NhlApi-GetCurrentTeamScoreboardAsync-Nhl-Api-Models-Enumerations-Team-TeamEnum,System-Threading-CancellationToken-'></a>
GetCurrentTeamScoreboardAsync(team,cancellationToken) method
Summary
Returns the current NHL team scoreboard for the current date and time, with upcoming game scores and completed game scores
Returns
Returns the current NHL team scoreboard for the current date and time, with upcoming game scores and completed game scores
Parameters
Name | Type | Description |
---|---|---|
team | Nhl.Api.Models.Enumerations.Team.TeamEnum | The NHL team identifier, 55 - Seattle Kraken, see TeamEnum for more information |
cancellationToken | System.Threading.CancellationToken | A cancellation token that can be used by other objects or threads to receive notice of cancellation |
<a name='M-Nhl-Api-NhlApi-GetGameCenterBoxScoreByGameIdAsync-System-Int32,System-Threading-CancellationToken-'></a>
GetGameCenterBoxScoreByGameIdAsync(gameId,cancellationToken) method
Summary
Returns the NHL game center box score for the specified game id, including the game information, game status, game venue and more
Returns
Returns the NHL game center box score for the specified game id, including the game information, game status, game venue and more
Parameters
Name | Type | Description |
---|---|---|
gameId | System.Int32 | The NHL game identifier, Example: 2023020204 |
cancellationToken | System.Threading.CancellationToken | A cancellation token that can be used by other objects or threads to receive notice of cancellation |
<a name='M-Nhl-Api-NhlApi-GetGameCenterLandingByGameIdAsync-System-Int32,System-Threading-CancellationToken-'></a>
GetGameCenterLandingByGameIdAsync(gameId,cancellationToken) method
Summary
Returns the NHL game center feed for the specified game id, including the game information, game status, game venue and more
Returns
Returns the NHL game center feed for the specified game id, including the game information, game status, game venue and more
Parameters
Name | Type | Description |
---|---|---|
gameId | System.Int32 | The NHL game identifier, Example: 2023020204 |
cancellationToken | System.Threading.CancellationToken | A cancellation token that can be used by other objects or threads to receive notice of cancellation |
<a name='M-Nhl-Api-NhlApi-GetGameCenterPlayByPlayByGameIdAsync-System-Int32,System-Boolean,System-Threading-CancellationToken-'></a>
GetGameCenterPlayByPlayByGameIdAsync(gameId,cancellationToken,includeEventDateTime) method
Summary
Returns the NHL game center feed for the specified game id, including the game information, game status, game venue and more
Returns
Returns the NHL game center feed for the specified game id, including the game information, game status, game venue and more
Parameters
Name | Type | Description |
---|---|---|
gameId | System.Int32 | The NHL game identifier, Example: 2023020204 |
cancellationToken | System.Boolean | A cancellation token that can be used by other objects or threads to receive notice of cancellation |
includeEventDateTime | System.Threading.CancellationToken | A flag to include the event date and time for the NHL game center play by play feed |
<a name='M-Nhl-Api-NhlApi-GetGameMetadataByGameIdAsync-System-Int32,System-Threading-CancellationToken-'></a>
GetGameMetadataByGameIdAsync(gameId,cancellationToken) method
Summary
Returns the NHL game meta data for the specified game id, including the teams, season states and more
Returns
Returns the NHL game meta data for the specified game id, including the teams, season states and more
Parameters
Name | Type | Description |
---|---|---|
gameId | System.Int32 | The NHL game identifier, Example: 2023020204 |
cancellationToken | System.Threading.CancellationToken | A cancellation token that can be used by other objects or threads to receive notice of cancellation |
<a name='M-Nhl-Api-NhlApi-GetGameScoreboardAsync-System-Threading-CancellationToken-'></a>
GetGameScoreboardAsync(cancellationToken) method
Summary
Returns the live NHL game scoreboard, including the game information, game status, game venue and more
Returns
Returns the live NHL game scoreboard, including the game information, game status, game venue and more
Parameters
Name | Type | Description |
---|---|---|
cancellationToken | System.Threading.CancellationToken | A cancellation token that can be used by other objects or threads to receive notice of cancellation |
<a name='M-Nhl-Api-NhlApi-GetGameScoresByDateAsync-System-DateOnly,System-Threading-CancellationToken-'></a>
GetGameScoresByDateAsync(date,cancellationToken) method
Summary
Returns all of the NHL game scores for the specified date, including the game id, game date and time, game status, game venue and more
Returns
Returns all of the NHL game scores for the specified date, including the game id, game date and time, game status, game venue and more
Parameters
Name | Type | Description |
---|---|---|
date | System.DateOnly | The date and time, Example: 2020-10-02 |
cancellationToken | System.Threading.CancellationToken | A cancellation token that can be used by other objects or threads to receive notice of cancellation |
<a name='M-Nhl-Api-NhlApi-GetGoalieInformationAsync-System-Int32,System-Threading-CancellationToken-'></a>
GetGoalieInformationAsync(playerId,cancellationToken) method
Summary
Returns the NHL goalie's profile information including their birth date, birth city, height, weight, position and much more
Returns
Returns the NHL player's profile information
Parameters
Name | Type | Description |
---|---|---|
playerId | System.Int32 | An NHL player id, Example: 8480313 - Logan Thompson |
cancellationToken | System.Threading.CancellationToken | A cancellation token that can be used by other objects or threads to receive notice of cancellation |
<a name='M-Nhl-Api-NhlApi-GetGoalieInformationAsync-Nhl-Api-Models-Enumerations-Player-PlayerEnum,System-Threading-CancellationToken-'></a>
GetGoalieInformationAsync(player,cancellationToken) method
Summary
Returns the NHL goalie's profile information including their birth date, birth city, height, weight, position and much more
Returns
Returns the NHL player's profile information
Parameters
Name | Type | Description |
---|---|---|
player | Nhl.Api.Models.Enumerations.Player.PlayerEnum | An NHL player id, Example: 8480313 - Logan Thompson, see PlayerEnum for more information on NHL players |
cancellationToken | System.Threading.CancellationToken | A cancellation token that can be used by other objects or threads to receive notice of cancellation |
<a name='M-Nhl-Api-NhlApi-GetGoalieSeasonGameLogsBySeasonAndGameTypeAsync-Nhl-Api-Models-Enumerations-Player-PlayerEnum,System-String,Nhl-Api-Enumerations-Game-GameType,System-Threading-CancellationToken-'></a>
GetGoalieSeasonGameLogsBySeasonAndGameTypeAsync(player,seasonYear,gameType,cancellationToken) method
Summary
The goalie season game log for an NHL goalie for a specific season and game type including stats such as saves, goals against, save percentage and more
Returns
The collection of player season game logs with each game played including statistics, all available season and more
Parameters
Name | Type | Description |
---|---|---|
player | Nhl.Api.Models.Enumerations.Player.PlayerEnum | An NHL player id, Example: 8478402 - Joseph Woll, see PlayerEnum for more information on NHL goalies |
seasonYear | System.String | The season year parameter for determining the season for the season, SeasonYear for all available seasons |
gameType | Nhl.Api.Enumerations.Game.GameType | The game type parameter for determining the game type for the type of player season logs |
cancellationToken | System.Threading.CancellationToken | A cancellation token that can be used by other objects or threads to receive notice of cancellation |
<a name='M-Nhl-Api-NhlApi-GetGoalieSeasonGameLogsBySeasonAndGameTypeAsync-System-Int32,System-String,Nhl-Api-Enumerations-Game-GameType,System-Threading-CancellationToken-'></a>
GetGoalieSeasonGameLogsBySeasonAndGameTypeAsync(playerId,seasonYear,gameType,cancellationToken) method
Summary
The goalie season game log for an NHL goalie for a specific season and game type including stats such as saves, goals against, save percentage and more
Returns
The collection of player season game logs with each game played including statistics, all available season and more
Parameters
Name | Type | Description |
---|---|---|
playerId | System.Int32 | An NHL player id, Example: 8479361 - Joseph Woll |
seasonYear | System.String | The season year parameter for determining the season for the season, SeasonYear for all available seasons |
gameType | Nhl.Api.Enumerations.Game.GameType | The game type parameter for determining the game type for the type of player season logs |
cancellationToken | System.Threading.CancellationToken | A cancellation token that can be used by other objects or threads to receive notice of cancellation |
<a name='M-Nhl-Api-NhlApi-GetGoalieStatisticsBySeasonAndFilterExpressionAsync-System-String,Nhl-Api-Models-Player-ExpressionGoalieFilter,Nhl-Api-Models-Player-GoalieStatisticsFilter,System-Int32,System-Int32,Nhl-Api-Enumerations-Game-GameType,System-Threading-CancellationToken-'></a>
GetGoalieStatisticsBySeasonAndFilterExpressionAsync(seasonYear,expressionGoalieFilter,goalieStatisticsFilterToSortBy,limit,offsetStart,gameType,cancellationToken) method
Summary
Returns all the NHL goalie statistics for a specific player for a specific season including face off percentage, points per game, overtime goals, short handed points , power play points, shooting percentage, shots, time on ice per game and more
Returns
Returns all the NHL goalie statistics for a specific goalie for a specific season including face off percentage, points per game, overtime goals, short handed points , power play points, shooting percentage, shots, time on ice per game and more
Parameters
Name | Type | Description |
---|---|---|
seasonYear | System.String | The NHL season year to retrieve the team statistics, see SeasonYear for more information on valid season years |
expressionGoalieFilter | Nhl.Api.Models.Player.ExpressionGoalieFilter | The expression goalie filter to filter the goalie statistics by, see GoalieFilterExpressionBuilder for more information on valid goalie filters |
goalieStatisticsFilterToSortBy | Nhl.Api.Models.Player.GoalieStatisticsFilter | The goalie statistics filter to sort the goalie statistics by, see GoalieStatisticsFilter for more information on valid goalie statistics filters |
limit | System.Int32 | The limit to the number of results returned when reviewing the NHL player statistics, by default -1 represents no limit applied to results |
offsetStart | System.Int32 | The offset to start the results from when reviewing the NHL goalie statistics |
gameType | Nhl.Api.Enumerations.Game.GameType | The game type for the NHL season for the player statistics |
cancellationToken | System.Threading.CancellationToken | A cancellation token to cancel the asynchronous operation |
<a name='M-Nhl-Api-NhlApi-GetGoalieStatisticsLeadersAsync-Nhl-Api-Enumerations-Statistic-GoalieStatisticsType,Nhl-Api-Enumerations-Game-GameType,System-String,System-Int32,System-Threading-CancellationToken-'></a>
GetGoalieStatisticsLeadersAsync(goalieStatisticsType,seasonYear,gameType,limit,cancellationToken) method
Summary
Returns the NHL goalie statistics leaders in the NHL for a specific goalie statistic type based on the game type and season year
Returns
Returns the current NHL player statistics leaders in the NHL for a specific player statistic type
Parameters
Name | Type | Description |
---|---|---|
goalieStatisticsType | Nhl.Api.Enumerations.Statistic.GoalieStatisticsType | A player statistics type, GoalieStatisticsType for all the types of statistics |
seasonYear | Nhl.Api.Enumerations.Game.GameType | The NHL season year to retrieve the player statistics leaders for, see SeasonYear for more information on valid season years |
gameType | System.String | The NHL game type to retrieve the player statistics leaders for, see GameType for more information on valid game types |
limit | System.Int32 | The limit to the number of results returned when reviewing the NHL player statistics |
cancellationToken | System.Threading.CancellationToken | A cancellation token that can be used by other objects or threads to receive notice of cancellation |
<a name='M-Nhl-Api-NhlApi-GetLeagueGameWeekScheduleByDateAsync-System-DateOnly,System-Threading-CancellationToken-'></a>
GetLeagueGameWeekScheduleByDateAsync(date,cancellationToken) method
Summary
Returns the NHL team schedule for a specific date using the DateOnly
Returns
A result of the current NHL schedule by the specified date
Parameters
Name | Type | Description |
---|---|---|
date | System.DateOnly | A DateOnly for the specific date for the NHL schedule |
cancellationToken | System.Threading.CancellationToken | A cancellation token that can be used by other objects or threads to receive notice of cancellation |
<a name='M-Nhl-Api-NhlApi-GetLeagueMetadataInformationAsync-System-Collections-Generic-List{System-Int32},System-Collections-Generic-List{System-String},System-Threading-CancellationToken-'></a>
GetLeagueMetadataInformationAsync(playerIds,teamIds,cancellationToken) method
Summary
Returns the meta data information about the NHL league including players, teams and season states
Returns
Returns the meta data information about the NHL league including players, teams and season states
Parameters
Name | Type | Description |
---|---|---|
playerIds | System.Collections.Generic.List{System.Int32} | A collection of NHL player identifiers, Example: [8478402,8478403] |
teamIds | System.Collections.Generic.List{System.String} | A collection of NHL team identifiers, Example: [EDM, TOR] |
cancellationToken | System.Threading.CancellationToken | A cancellation token that can be used by other objects or threads to receive notice of cancellation |
<a name='M-Nhl-Api-NhlApi-GetLeagueMetadataInformationAsync-System-Collections-Generic-List{Nhl-Api-Models-Enumerations-Player-PlayerEnum},System-Collections-Generic-List{Nhl-Api-Models-Enumerations-Team-TeamEnum},System-Threading-CancellationToken-'></a>
GetLeagueMetadataInformationAsync(players,teams,cancellationToken) method
Summary
Returns the meta data information about the NHL league including players, teams and season states
Returns
Returns the meta data information about the NHL league including players, teams and season states
Parameters
Name | Type | Description |
---|---|---|
players | System.Collections.Generic.List{Nhl.Api.Models.Enumerations.Player.PlayerEnum} | A collection of NHL player identifiers, Example: [8478402,8478403] |
teams | System.Collections.Generic.List{Nhl.Api.Models.Enumerations.Team.TeamEnum} | A collection of NHL team identifiers, Example: [EDM, TOR] |
cancellationToken | System.Threading.CancellationToken | A cancellation token that can be used by other objects or threads to receive notice of cancellation |
<a name='M-Nhl-Api-NhlApi-GetLeagueScheduleCalendarByDateAsync-System-DateOnly,System-Threading-CancellationToken-'></a>
GetLeagueScheduleCalendarByDateAsync(date,cancellationToken) method
Summary
Returns the NHL league calendar schedule for the specified date and all applicable teams
Returns
Returns the NHL league calendar schedule for the specified date and all applicable teams
Parameters
Name | Type | Description |
---|---|---|
date | System.DateOnly | The date requested for the NHL league schedule, Example: 2024-02-10 |
cancellationToken | System.Threading.CancellationToken | A cancellation token that can be used by other objects or threads to receive notice of cancellation |
<a name='M-Nhl-Api-NhlApi-GetLeagueStandingsByDateAsync-System-DateOnly,System-Threading-CancellationToken-'></a>
GetLeagueStandingsByDateAsync(date,cancellationToken) method
Summary
Returns the NHL league standings for the current NHL season by the specified date
Returns
Return the NHL league standings for the specified date with specific team information
Parameters
Name | Type | Description |
---|---|---|
date | System.DateOnly | The date requested for the NHL season standing |
cancellationToken | System.Threading.CancellationToken | A cancellation token that can be used by other objects or threads to receive notice of cancellation |
<a name='M-Nhl-Api-NhlApi-GetLeagueStandingsSeasonInformationAsync-System-Threading-CancellationToken-'></a>
GetLeagueStandingsSeasonInformationAsync(cancellationToken) method
Summary
Returns the NHL league standings for the all NHL seasons with specific league season information
Returns
Returns the NHL league standings information for each season since 1917-1918
Parameters
Name | Type | Description |
---|---|---|
cancellationToken | System.Threading.CancellationToken | A cancellation token that can be used by other objects or threads to receive notice of cancellation |
<a name='M-Nhl-Api-NhlApi-GetLeagueWeekScheduleByDateAsync-System-DateOnly,System-Threading-CancellationToken-'></a>
GetLeagueWeekScheduleByDateAsync(date,cancellationToken) method
Summary
Returns the NHL league schedule for the specified date
Returns
Returns the NHL league schedule for the specified date
Parameters
Name | Type | Description |
---|---|---|
date | System.DateOnly | The date requested for the NHL league schedule, Example: 2024-02-10 |
cancellationToken | System.Threading.CancellationToken | A cancellation token that can be used by other objects or threads to receive notice of cancellation |
<a name='M-Nhl-Api-NhlApi-GetLiveGameFeedPlayerShiftsAsync-System-Int32,System-Threading-CancellationToken-'></a>
GetLiveGameFeedPlayerShiftsAsync(gameId,cancellationToken) method
Summary
Returns all of the individual shifts of each NHL player for a specific NHL game id
Returns
A collection of all the NHL player game shifts for a specific game, including start and end times, on ice duration and more
Parameters
Name | Type | Description |
---|---|---|
gameId | System.Int32 | The game id, Example: 2021020087 |
cancellationToken | System.Threading.CancellationToken | A cancellation token that can be used by other objects or threads to receive notice of cancellation |
<a name='M-Nhl-Api-NhlApi-GetPlayerDraftRankingByYearAsync-System-String,System-Int32,System-Threading-CancellationToken-'></a>
GetPlayerDraftRankingByYearAsync(seasonYear,startingPosition,cancellationToken) method
Summary
Returns the NHL draft ranking by the specified year and starting position for the draft year
Returns
Returns the NHL draft ranking by the specified year and starting position for the draft year
Parameters
Name | Type | Description |
---|---|---|
seasonYear | System.String | The NHL draft year |
startingPosition | System.Int32 | The starting position of the NHL draft by the year |
cancellationToken | System.Threading.CancellationToken | A cancellation token that can be used by other objects or threads to receive notice of cancellation |
<a name='M-Nhl-Api-NhlApi-GetPlayerHeadshotImageAsync-Nhl-Api-Models-Enumerations-Player-PlayerEnum,System-String,System-Threading-CancellationToken-'></a>
GetPlayerHeadshotImageAsync(player,seasonYear,cancellationToken) method
Summary
Returns the NHL player's head shot image by season year
Returns
A URI endpoint with the image of an NHL player head shot image
Parameters
Name | Type | Description |
---|---|---|
player | Nhl.Api.Models.Enumerations.Player.PlayerEnum | An NHL player id, Example: 8478402 - Connor McDavid, see PlayerEnum for more information on NHL players |
seasonYear | System.String | The season year parameter for determining the season for the season, SeasonYear for all available seasons |
cancellationToken | System.Threading.CancellationToken | A cancellation token that can be used by other objects or threads to receive notice of cancellation |
<a name='M-Nhl-Api-NhlApi-GetPlayerHeadshotImageAsync-System-Int32,System-String,System-Threading-CancellationToken-'></a>
GetPlayerHeadshotImageAsync(playerId,seasonYear,cancellationToken) method
Summary
Returns the NHL player's head shot image by the selected size
Returns
A byte array content of an NHL player head shot image
Parameters
Name | Type | Description |
---|---|---|
playerId | System.Int32 | An NHL player id, Example: 8478402 - Connor McDavid |
seasonYear | System.String | The season year parameter for determining the season for the season, SeasonYear for all available seasons |
cancellationToken | System.Threading.CancellationToken | A cancellation token that can be used by other objects or threads to receive notice of cancellation |
<a name='M-Nhl-Api-NhlApi-GetPlayerInformationAsync-System-Int32,System-Threading-CancellationToken-'></a>
GetPlayerInformationAsync(playerId,cancellationToken) method
Summary
Returns the NHL player's profile information including their birth date, birth city, height, weight, position and much more
Returns
Returns the NHL player's profile information
Parameters
Name | Type | Description |
---|---|---|
playerId | System.Int32 | An NHL player id, Example: 8478402 - Connor McDavid |
cancellationToken | System.Threading.CancellationToken | A cancellation token that can be used by other objects or threads to receive notice of cancellation |
<a name='M-Nhl-Api-NhlApi-GetPlayerInformationAsync-Nhl-Api-Models-Enumerations-Player-PlayerEnum,System-Threading-CancellationToken-'></a>
GetPlayerInformationAsync(player,cancellationToken) method
Summary
Returns the NHL player's profile information including their birth date, birth city, height, weight, position and much more
Returns
Returns the NHL player's profile information
Parameters
Name | Type | Description |
---|---|---|
player | Nhl.Api.Models.Enumerations.Player.PlayerEnum | An NHL player id, Example: 8478402 - Connor McDavid, see PlayerEnum for more information on NHL players |
cancellationToken | System.Threading.CancellationToken | A cancellation token that can be used by other objects or threads to receive notice of cancellation |
<a name='M-Nhl-Api-NhlApi-GetPlayerSeasonGameLogsBySeasonAndGameTypeAsync-Nhl-Api-Models-Enumerations-Player-PlayerEnum,System-String,Nhl-Api-Enumerations-Game-GameType,System-Threading-CancellationToken-'></a>
GetPlayerSeasonGameLogsBySeasonAndGameTypeAsync(player,seasonYear,gameType,cancellationToken) method
Summary
The player season game log for an NHL player for a specific season and game type including stats such as goals, assists, points, plus/minus and more
Returns
The collection of player season game logs with each game played including statistics, all available seasons player, shifts and in game statistics
Parameters
Name | Type | Description |
---|---|---|
player | Nhl.Api.Models.Enumerations.Player.PlayerEnum | An NHL player id, Example: 8478402 - Connor McDavid, see PlayerEnum for more information on NHL players |
seasonYear | System.String | The season year parameter for determining the season for the season, SeasonYear for all available seasons |
gameType | Nhl.Api.Enumerations.Game.GameType | The game type parameter for determining the game type for the type of player season logs |
cancellationToken | System.Threading.CancellationToken | A cancellation token that can be used by other objects or threads to receive notice of cancellation |
<a name='M-Nhl-Api-NhlApi-GetPlayerSeasonGameLogsBySeasonAndGameTypeAsync-System-Int32,System-String,Nhl-Api-Enumerations-Game-GameType,System-Threading-CancellationToken-'></a>
GetPlayerSeasonGameLogsBySeasonAndGameTypeAsync(playerId,seasonYear,gameType,cancellationToken) method
Summary
The player season game log for an NHL player for a specific season and game type including stats such as goals, assists, points, plus/minus and more
Returns
The collection of player season game logs with each game played including statistics, all available seasons player, shifts and in game statistics
Parameters
Name | Type | Description |
---|---|---|
playerId | System.Int32 | An NHL player id, Example: 8478402 - Connor McDavid |
seasonYear | System.String | The season year parameter for determining the season for the season, SeasonYear for all available seasons |
gameType | Nhl.Api.Enumerations.Game.GameType | The game type parameter for determining the game type for the type of player season logs |
cancellationToken | System.Threading.CancellationToken | A cancellation token that can be used by other objects or threads to receive notice of cancellation |
<a name='M-Nhl-Api-NhlApi-GetPlayerSpotlightAsync-System-Threading-CancellationToken-'></a>
GetPlayerSpotlightAsync(cancellationToken) method
Summary
Returns the NHL player's in the spotlight based on their recent performances
Returns
A collection of players and their information for players in the NHL spotlight
Parameters
Name | Type | Description |
---|---|---|
cancellationToken | System.Threading.CancellationToken | A cancellation token that can be used by other objects or threads to receive notice of cancellation |
<a name='M-Nhl-Api-NhlApi-GetPlayerStatisticsBySeasonAndFilterExpressionAsync-System-String,Nhl-Api-Models-Player-ExpressionPlayerFilter,Nhl-Api-Models-Player-PlayerStatisticsFilter,System-Int32,System-Int32,Nhl-Api-Enumerations-Game-GameType,System-Threading-CancellationToken-'></a>
GetPlayerStatisticsBySeasonAndFilterExpressionAsync(seasonYear,expressionPlayerFilter,playerStatisticsFilterToSortBy,limit,offsetStart,gameType,cancellationToken) method
Summary
Returns all the NHL player game center statistics for a specific player for a specific season including face off percentage, points per game, overtime goals, short handed points , power play points, shooting percentage, shots, time on ice per game and more
Returns
Returns all the NHL player game center statistics for a specific player for a specific season including face off percentage, points per game, overtime goals, short handed points , power play points, shooting percentage, shots, time on ice per game and more
Parameters
Name | Type | Description |
---|---|---|
seasonYear | System.String | The NHL season year to retrieve the team statistics, see SeasonYear for more information on valid season years |
expressionPlayerFilter | Nhl.Api.Models.Player.ExpressionPlayerFilter | The expression player filter to filter the player statistics by, see PlayerFilterExpressionBuilder for more information on valid player filters |
playerStatisticsFilterToSortBy | Nhl.Api.Models.Player.PlayerStatisticsFilter | The player statistics filter to sort the player statistics by, see PlayerStatisticsFilter for more information on valid player statistics filters |
limit | System.Int32 | The limit to the number of results returned when reviewing the NHL player statistics, by default -1 represents no limit applied to results |
offsetStart | System.Int32 | The offset to start the results from when reviewing the NHL player statistics |
gameType | Nhl.Api.Enumerations.Game.GameType | The game type for the NHL season for the player statistics |
cancellationToken | System.Threading.CancellationToken | A cancellation token to cancel the asynchronous operation |
<a name='M-Nhl-Api-NhlApi-GetRealtimePlayerStatisticsBySeasonAndFilterExpressionAsync-System-String,Nhl-Api-Models-Player-ExpressionPlayerFilter,Nhl-Api-Models-Player-PlayerRealtimeStatisticsFilter,System-Int32,System-Int32,Nhl-Api-Enumerations-Game-GameType,System-Threading-CancellationToken-'></a>
GetRealtimePlayerStatisticsBySeasonAndFilterExpressionAsync(seasonYear,expressionPlayerFilter,playerRealtimeStatisticsFilterToSortBy,limit,offsetStart,gameType,cancellationToken) method
Summary
Returns all the NHL real-time player game center statistics for players matching the provided filter expression for a specific season, including face-off percentage, points per game, overtime goals, shorthanded points, power-play points, shooting percentage, shots, time on ice per game, and more
Returns
Returns all the NHL real-time player game center statistics for players matching the filter expression for the specified season.
Parameters
Name | Type | Description |
---|---|---|
seasonYear | System.String | The NHL season year to retrieve the team statistics, see SeasonYear for more information on valid season years |
expressionPlayerFilter | Nhl.Api.Models.Player.ExpressionPlayerFilter | The expression player filter to filter the player statistics by, see PlayerFilterExpressionBuilder for more information on valid player filters |
playerRealtimeStatisticsFilterToSortBy | Nhl.Api.Models.Player.PlayerRealtimeStatisticsFilter | The player real-time statistics filter to sort the player statistics by, see PlayerRealtimeStatisticsFilter for more information on valid player statistics filters |
limit | System.Int32 | The limit to the number of results returned when reviewing the NHL player statistics, by default -1 represents no limit applied to results |
offsetStart | System.Int32 | The offset to start the results from when reviewing the NHL player statistics |
gameType | Nhl.Api.Enumerations.Game.GameType | The game type for the NHL season for the player statistics |
cancellationToken | System.Threading.CancellationToken | A cancellation token to cancel the asynchronous operation |
<a name='M-Nhl-Api-NhlApi-GetSkaterStatisticsLeadersAsync-Nhl-Api-Enumerations-Statistic-PlayerStatisticsType,Nhl-Api-Enumerations-Game-GameType,System-String,System-Int32,System-Threading-CancellationToken-'></a>
GetSkaterStatisticsLeadersAsync(playerStatisticsType,seasonYear,gameType,limit,cancellationToken) method
Summary
Returns the current NHL player statistics leaders in the NHL for a specific player statistic type
Returns
Returns the current NHL player statistics leaders in the NHL for a specific player statistic type
Parameters
Name | Type | Description |
---|---|---|
playerStatisticsType | Nhl.Api.Enumerations.Statistic.PlayerStatisticsType | A player statistics type, PlayerStatisticsType for all the types of statistics |
seasonYear | Nhl.Api.Enumerations.Game.GameType | The NHL season year to retrieve the player statistics leaders for, see SeasonYear for more information on valid season years |
gameType | System.String | The NHL game type to retrieve the player statistics leaders for, see GameType for more information on valid game types |
limit | System.Int32 | The limit to the number of results returned when reviewing the NHL player statistics |
cancellationToken | System.Threading.CancellationToken | A cancellation token that can be used by other objects or threads to receive notice of cancellation |
<a name='M-Nhl-Api-NhlApi-GetSourcesToWatchGamesAsync-System-Threading-CancellationToken-'></a>
GetSourcesToWatchGamesAsync(cancellationToken) method
Summary
Returns the collection of countries and where you can watch NHL games with links and more
Returns
Returns the collection of countries and where you can watch NHL games with links and more
Parameters
Name | Type | Description |
---|---|---|
cancellationToken | System.Threading.CancellationToken | A cancellation token that can be used by other objects or threads to receive notice of cancellation |
<a name='M-Nhl-Api-NhlApi-GetTeamColorsAsync-Nhl-Api-Models-Enumerations-Team-TeamEnum,System-Threading-CancellationToken-'></a>
GetTeamColorsAsync(team,cancellationToken) method
Summary
Returns the hexadecimal code for an NHL team's colors
Returns
An NHL team color scheme using hexadecimal codes
Parameters
Name | Type | Description |
---|---|---|
team | Nhl.Api.Models.Enumerations.Team.TeamEnum | The NHL team identifier, 55 - Seattle Kraken, see TeamEnum for more information |
cancellationToken | System.Threading.CancellationToken | A cancellation token that can be used by other objects or threads to receive notice of cancellation |
<a name='M-Nhl-Api-NhlApi-GetTeamColorsAsync-System-Int32,System-Threading-CancellationToken-'></a>
GetTeamColorsAsync(teamId,cancellationToken) method
Summary
Returns the hexadecimal code for an NHL team's colors
Returns
An NHL team color scheme using hexadecimal codes
Parameters
Name | Type | Description |
---|---|---|
teamId | System.Int32 | The NHL team identifier - Seattle Kraken: 55 |
cancellationToken | System.Threading.CancellationToken | A cancellation token that can be used by other objects or threads to receive notice of cancellation |
<a name='M-Nhl-Api-NhlApi-GetTeamLogoAsync-System-Int32,Nhl-Api-Models-Team-TeamLogoType,System-Threading-CancellationToken-'></a>
GetTeamLogoAsync(teamId,teamLogoType,cancellationToken) method
Summary
Returns an the NHL team logo based a dark or light preference using the NHL team id
Returns
Returns NHL team logo information including a byte array, base64 encoded string and the Uri endpoint
Parameters
Name | Type | Description |
---|---|---|
teamId | System.Int32 | The NHL team identifier - Seattle Kraken: 55 |
teamLogoType | Nhl.Api.Models.Team.TeamLogoType | The NHL team logo image type, based on the background of light or dark |
cancellationToken | System.Threading.CancellationToken | A cancellation token that can be used by other objects or threads to receive notice of cancellation |
<a name='M-Nhl-Api-NhlApi-GetTeamLogoAsync-Nhl-Api-Models-Enumerations-Team-TeamEnum,Nhl-Api-Models-Team-TeamLogoType,System-Threading-CancellationToken-'></a>
GetTeamLogoAsync(team,teamLogoType,cancellationToken) method
Summary
Returns an the NHL team logo based a dark or light preference using the NHL team enumeration
Returns
Returns NHL team logo information including a byte array, base64 encoded string and the Uri endpoint
Parameters
Name | Type | Description |
---|---|---|
team | Nhl.Api.Models.Enumerations.Team.TeamEnum | The NHL team identifier, 55 - Seattle Kraken, see TeamEnum for more information |
teamLogoType | Nhl.Api.Models.Team.TeamLogoType | The NHL team logo image type, based on the background of light or dark |
cancellationToken | System.Threading.CancellationToken | A cancellation token that can be used by other objects or threads to receive notice of cancellation |
<a name='M-Nhl-Api-NhlApi-GetTeamProspectsByTeamAsync-System-Int32,System-Threading-CancellationToken-'></a>
GetTeamProspectsByTeamAsync(teamId,cancellationToken) method
Summary
Returns all the NHL prospects for the specified NHL team including forwards, defense men and goalies
Returns
Returns all the NHL prospects for the specified NHL team including forwards, defense men and goalies
Parameters
Name | Type | Description |
---|---|---|
teamId | System.Int32 | The NHL team identifier, Example: 55 - Seattle Kraken |
cancellationToken | System.Threading.CancellationToken | A cancellation token that can be used by other objects or threads to receive notice of cancellation |
<a name='M-Nhl-Api-NhlApi-GetTeamProspectsByTeamAsync-Nhl-Api-Models-Enumerations-Team-TeamEnum,System-Threading-CancellationToken-'></a>
GetTeamProspectsByTeamAsync(team,cancellationToken) method
Summary
Returns all the NHL prospects for the specified NHL team including forwards, defense men and goalies
Returns
Returns all the NHL prospects for the specified NHL team including forwards, defense men and goalies
Parameters
Name | Type | Description |
---|---|---|
team | Nhl.Api.Models.Enumerations.Team.TeamEnum | The NHL team identifier, see TeamEnum for more information, Example: 10 - Toronto Maple Leafs |
cancellationToken | System.Threading.CancellationToken | A cancellation token that can be used by other objects or threads to receive notice of cancellation |
<a name='M-Nhl-Api-NhlApi-GetTeamRosterBySeasonYearAsync-System-Int32,System-String,System-Threading-CancellationToken-'></a>
GetTeamRosterBySeasonYearAsync(teamId,seasonYear,cancellationToken) method
Summary
Returns the NHL team roster for a specific team by the team identifier and season year
Returns
Returns the NHL team roster for a specific team by the team identifier and season year
Parameters
Name | Type | Description |
---|---|---|
teamId | System.Int32 | The NHL team identifier, Example: 55 - Seattle Kraken |
seasonYear | System.String | The eight digit number format for the season, see SeasonYear for more information, Example: 20232024 |
cancellationToken | System.Threading.CancellationToken | A cancellation token that can be used by other objects or threads to receive notice of cancellation |
<a name='M-Nhl-Api-NhlApi-GetTeamRosterBySeasonYearAsync-Nhl-Api-Models-Enumerations-Team-TeamEnum,System-String,System-Threading-CancellationToken-'></a>
GetTeamRosterBySeasonYearAsync(team,seasonYear,cancellationToken) method
Summary
Returns the NHL team roster for a specific team by the team identifier and season year
Returns
Returns the NHL team roster for a specific team by the team identifier and season year
Parameters
Name | Type | Description |
---|---|---|
team | Nhl.Api.Models.Enumerations.Team.TeamEnum | The NHL team identifier, see TeamEnum for more information, Example: 8 - Montreal Canadiens |
seasonYear | System.String | The eight digit number format for the season, see SeasonYear for more information, Example: 20232024 |
cancellationToken | System.Threading.CancellationToken | A cancellation token that can be used by other objects or threads to receive notice of cancellation |
<a name='M-Nhl-Api-NhlApi-GetTeamScheduleBySeasonAsync-System-String,System-String,System-Threading-CancellationToken-'></a>
GetTeamScheduleBySeasonAsync(teamAbbreviation,seasonYear,cancellationToken) method
Summary
This returns the NHL team schedule for a specific season and a specific team by the team abbreviation and season
Returns
A collection of all games in the requested season for the requested NHL team
Parameters
Name | Type | Description |
---|---|---|
teamAbbreviation | System.String | The required team abbreviation for the NHL team, Example: WSH - Washington Capitals |
seasonYear | System.String | The eight digit number format for the season, Example: 20232024 |
cancellationToken | System.Threading.CancellationToken | A cancellation token that can be used by other objects or threads to receive notice of cancellation |
<a name='M-Nhl-Api-NhlApi-GetTeamSeasonScheduleBySeasonYearAsync-System-Int32,System-String,System-Threading-CancellationToken-'></a>
GetTeamSeasonScheduleBySeasonYearAsync(teamId,seasonYear,cancellationToken) method
Summary
Returns the NHL team schedule for the specified team and season year
Returns
Returns the NHL team schedule for the specified team and season year
Parameters
Name | Type | Description |
---|---|---|
teamId | System.Int32 | The team identifier, Example: 10 - Toronto Maples Leafs |
seasonYear | System.String | The season year, see SeasonYear for more information, Example: 20202021 |
cancellationToken | System.Threading.CancellationToken | A cancellation token that can be used by other objects or threads to receive notice of cancellation |
<a name='M-Nhl-Api-NhlApi-GetTeamSeasonScheduleBySeasonYearAsync-Nhl-Api-Models-Enumerations-Team-TeamEnum,System-String,System-Threading-CancellationToken-'></a>
GetTeamSeasonScheduleBySeasonYearAsync(team,seasonYear,cancellationToken) method
Summary
Returns the NHL team schedule for the specified team and season year
Returns
Returns the NHL team schedule for the specified team and season year
Parameters
Name | Type | Description |
---|---|---|
team | Nhl.Api.Models.Enumerations.Team.TeamEnum | The NHL team identifier, see TeamEnum for more information, Example: 54 - Vegas Golden Knights |
seasonYear | System.String | The season year, see SeasonYear for more information, Example: 20202021 |
cancellationToken | System.Threading.CancellationToken | A cancellation token that can be used by other objects or threads to receive notice of cancellation |
<a name='M-Nhl-Api-NhlApi-GetTeamSeasonScheduleByYearAndMonthAsync-System-Int32,System-Int32,System-Int32,System-Threading-CancellationToken-'></a>
GetTeamSeasonScheduleByYearAndMonthAsync(teamId,year,month,cancellationToken) method
Summary
Returns the NHL team schedule for the specified team and season year and month
Returns
Returns the NHL team schedule for the specified team and season year and month
Parameters
Name | Type | Description |
---|---|---|
teamId | System.Int32 | The team identifier, Example: 10 - Toronto Maples Leafs |
year | System.Int32 | The year, Example: 2020 |
month | System.Int32 | The month, Example: 10 |
cancellationToken | System.Threading.CancellationToken | A cancellation token that can be used by other objects or threads to receive notice of cancellation |
<a name='M-Nhl-Api-NhlApi-GetTeamSeasonScheduleByYearAndMonthAsync-Nhl-Api-Models-Enumerations-Team-TeamEnum,System-Int32,System-Int32,System-Threading-CancellationToken-'></a>
GetTeamSeasonScheduleByYearAndMonthAsync(team,year,month,cancellationToken) method
Summary
Returns the NHL team schedule for the specified team and season year and month
Returns
Returns the NHL team schedule for the specified team and season year and month
Parameters
Name | Type | Description |
---|---|---|
team | Nhl.Api.Models.Enumerations.Team.TeamEnum | The NHL team identifier, see TeamEnum for more information, Example: 54 - Vegas Golden Knights |
year | System.Int32 | The year, Example: 2020 |
month | System.Int32 | The month, Example: 10 |
cancellationToken | System.Threading.CancellationToken | A cancellation token that can be used by other objects or threads to receive notice of cancellation |
<a name='M-Nhl-Api-NhlApi-GetTeamStatisticsBySeasonAndGameTypeAsync-Nhl-Api-Models-Enumerations-Team-TeamEnum,System-String,Nhl-Api-Enumerations-Game-GameType,System-Threading-CancellationToken-'></a>
GetTeamStatisticsBySeasonAndGameTypeAsync(team,seasonYear,gameType,cancellationToken) method
Summary
Returns the NHL team statistics for individual players for a specific NHL team statistic type based on the game type and season year
Returns
The NHL team season statistics for the specified season and game type
Parameters
Name | Type | Description |
---|---|---|
team | Nhl.Api.Models.Enumerations.Team.TeamEnum | The team enumeration identifier, specifying which the NHL team, TeamEnum for more information |
seasonYear | System.String | The NHL season year to retrieve the team statistics, see SeasonYear for more information on valid season years |
gameType | Nhl.Api.Enumerations.Game.GameType | The NHL game type to retrieve the team statistics, see GameType for more information on valid game types |
cancellationToken | System.Threading.CancellationToken | A cancellation token that can be used by other objects or threads to receive notice of cancellation |
<a name='M-Nhl-Api-NhlApi-GetTeamStatisticsBySeasonAndGameTypeAsync-System-Int32,System-String,Nhl-Api-Enumerations-Game-GameType,System-Threading-CancellationToken-'></a>
GetTeamStatisticsBySeasonAndGameTypeAsync(teamId,seasonYear,gameType,cancellationToken) method
Summary
Returns the NHL team statistics for individual players for a specific NHL team statistic type based on the game type and season year
Returns
The NHL team season statistics for the specified season and game type
Parameters
Name | Type | Description |
---|---|---|
teamId | System.Int32 | The NHL team identifier, specifying which the NHL team, Example: 55 - Seattle Kraken |
seasonYear | System.String | The NHL season year to retrieve the team statistics, see SeasonYear for more information on valid season years |
gameType | Nhl.Api.Enumerations.Game.GameType | The NHL game type to retrieve the team statistics, see GameType for more information on valid game types |
cancellationToken | System.Threading.CancellationToken | A cancellation token that can be used by other objects or threads to receive notice of cancellation |
<a name='M-Nhl-Api-NhlApi-GetTeamStatisticsBySeasonAsync-Nhl-Api-Models-Enumerations-Team-TeamEnum,System-Threading-CancellationToken-'></a>
GetTeamStatisticsBySeasonAsync(team,cancellationToken) method
Summary
Returns all the NHL team valid game types for all valid NHL seasons for the selected NHL team
Returns
Returns all the NHL team valid game types for all valid NHL seasons for the selected NHL team
Parameters
Name | Type | Description |
---|---|---|
team | Nhl.Api.Models.Enumerations.Team.TeamEnum | The team enumeration identifier, specifying which the NHL team, TeamEnum for more information |
cancellationToken | System.Threading.CancellationToken | A cancellation token that can be used by other objects or threads to receive notice of cancellation |
<a name='M-Nhl-Api-NhlApi-GetTeamStatisticsBySeasonAsync-System-Int32,System-Threading-CancellationToken-'></a>
GetTeamStatisticsBySeasonAsync(teamId,cancellationToken) method
Summary
Returns all the NHL team valid game types for all valid NHL seasons for the selected NHL team
Returns
Returns all the NHL team valid game types for all valid NHL seasons for the selected NHL team
Parameters
Name | Type | Description |
---|---|---|
teamId | System.Int32 | The NHL team identifier, specifying which the NHL team, Example: 55 - Seattle Kraken |
cancellationToken | System.Threading.CancellationToken | A cancellation token that can be used by other objects or threads to receive notice of cancellation |
<a name='M-Nhl-Api-NhlApi-GetTeamWeekScheduleByDateAsync-System-String,System-DateOnly,System-Threading-CancellationToken-'></a>
GetTeamWeekScheduleByDateAsync(teamAbbreviation,date,cancellationToken) method
Summary
This returns the NHL team schedule for a specific season and a specific team by the team abbreviation and season
Returns
A collection of all games in the requested season for the requested NHL team
Parameters
Name | Type | Description |
---|---|---|
teamAbbreviation | System.String | The required team abbreviation for the NHL team, Example: WSH - Washington Capitals |
date | System.DateOnly | The date in which the request schedule for the team and for the week is request for |
cancellationToken | System.Threading.CancellationToken | A cancellation token that can be used by other objects or threads to receive notice of cancellation |
<a name='M-Nhl-Api-NhlApi-GetTeamWeekScheduleByDateAsync-System-Int32,System-DateOnly,System-Threading-CancellationToken-'></a>
GetTeamWeekScheduleByDateAsync(teamId,date,cancellationToken) method
Summary
Returns the NHL team schedule for the specified team and the specified date and time
Returns
Returns the NHL team schedule for the specified team and the specified date and time
Parameters
Name | Type | Description |
---|---|---|
teamId | System.Int32 | The team identifier, Example: 10 - Toronto Maples Leafs |
date | System.DateOnly | The date and time, Example: 2020-10-02 |
cancellationToken | System.Threading.CancellationToken | A cancellation token that can be used by other objects or threads to receive notice of cancellation |
<a name='M-Nhl-Api-NhlApi-GetTeamWeekScheduleByDateAsync-Nhl-Api-Models-Enumerations-Team-TeamEnum,System-DateOnly,System-Threading-CancellationToken-'></a>
GetTeamWeekScheduleByDateAsync(team,date,cancellationToken) method
Summary
Returns the NHL team schedule for the specified team and the specified date and time
Returns
Returns the NHL team schedule for the specified team and the specified date and time
Parameters
Name | Type | Description |
---|---|---|
team | Nhl.Api.Models.Enumerations.Team.TeamEnum | The NHL team identifier, see TeamEnum for more information, Example: 54 - Vegas Golden Knights |
date | System.DateOnly | The date and time, Example: 2020-10-02 |
cancellationToken | System.Threading.CancellationToken | A cancellation token that can be used by other objects or threads to receive notice of cancellation |
<a name='M-Nhl-Api-NhlApi-GetTimeOnIcePlayerStatisticsBySeasonAndFilterExpressionAsync-System-String,Nhl-Api-Models-Player-ExpressionPlayerFilter,Nhl-Api-Models-Player-PlayerTimeOnIceStatisticsFilter,System-Int32,System-Int32,Nhl-Api-Enumerations-Game-GameType,System-Threading-CancellationToken-'></a>
GetTimeOnIcePlayerStatisticsBySeasonAndFilterExpressionAsync(seasonYear,expressionPlayerFilter,playerTimeOnIceStatisticsFilterToSortBy,limit,offsetStart,gameType,cancellationToken) method
Summary
Returns all the NHL time-on-ice player game center statistics for players matching the provided filter expression for a specified season, including even-strength time on ice, overtime time on ice, time on ice per game, and more
Returns
Returns all the NHL time-on-ice player game center statistics for players matching the filter expression for the specified season.
Parameters
Name | Type | Description |
---|---|---|
seasonYear | System.String | The NHL season year to retrieve the team statistics, see SeasonYear for more information on valid season years |
expressionPlayerFilter | Nhl.Api.Models.Player.ExpressionPlayerFilter | The expression player filter to filter the player statistics by, see PlayerFilterExpressionBuilder for more information on valid player filters |
playerTimeOnIceStatisticsFilterToSortBy | Nhl.Api.Models.Player.PlayerTimeOnIceStatisticsFilter | The player time-on-ice statistics filter to sort the player statistics by, see PlayerTimeOnIceStatisticsFilter for more information on valid player statistics filters |
limit | System.Int32 | The limit to the number of results returned when reviewing the NHL player statistics, by default -1 represents no limit applied to results |
offsetStart | System.Int32 | The offset to start the results from when reviewing the NHL player statistics |
gameType | Nhl.Api.Enumerations.Game.GameType | The game type for the NHL season for the player statistics |
cancellationToken | System.Threading.CancellationToken | A cancellation token to cancel the asynchronous operation |
<a name='M-Nhl-Api-NhlApi-GetTotalPlayerStatisticValueByTypeAndSeasonAsync-Nhl-Api-Models-Enumerations-Player-PlayerEnum,Nhl-Api-Enumerations-Statistic-PlayerGameCenterStatistic,System-String,System-Nullable{Nhl-Api-Enumerations-Game-GameType},System-Threading-CancellationToken-'></a>
GetTotalPlayerStatisticValueByTypeAndSeasonAsync(playerEnum,playerGameCenterStatistic,seasonYear,gameType,cancellationToken) method
Summary
Returns the number of total number of a player statistics for a player for a specific season
Returns
Returns the number of total number of a player statistics for a player for a specific season
Parameters
Name | Type | Description |
---|---|---|
playerEnum | Nhl.Api.Models.Enumerations.Player.PlayerEnum | The player enumeration identifier, specifying which the NHL player, PlayerEnum for more information |
playerGameCenterStatistic | Nhl.Api.Enumerations.Statistic.PlayerGameCenterStatistic | The NHL player game center statistic type, PlayerGameCenterStatistic for more information on valid game center statistics |
seasonYear | System.String | The NHL season year to retrieve the team statistics, see SeasonYear for more information on valid season years |
gameType | System.Nullable{Nhl.Api.Enumerations.Game.GameType} | The NHL game type to retrieve the team statistics, see GameType for more information on valid game types |
cancellationToken | System.Threading.CancellationToken | A cancellation token that can be used by other objects or threads to receive notice of cancellation |
<a name='M-Nhl-Api-NhlApi-GetTotalPlayerStatisticValueByTypeAndSeasonAsync-System-Int32,Nhl-Api-Enumerations-Statistic-PlayerGameCenterStatistic,System-String,System-Nullable{Nhl-Api-Enumerations-Game-GameType},System-Threading-CancellationToken-'></a>
GetTotalPlayerStatisticValueByTypeAndSeasonAsync(playerId,playerGameCenterStatistic,seasonYear,gameType,cancellationToken) method
Summary
Returns the number of total number of a player statistics for a player for a specific season
Returns
Returns the number of total number of a player statistics for a player for a specific season
Parameters
Name | Type | Description |
---|---|---|
playerId | System.Int32 | The NHL player identifier, Example: 8478402 - Connor McDavid |
playerGameCenterStatistic | Nhl.Api.Enumerations.Statistic.PlayerGameCenterStatistic | The NHL player game center statistic type, PlayerGameCenterStatistic for more information on valid game center statistics |
seasonYear | System.String | The NHL season year to retrieve the team statistics, see SeasonYear for more information on valid season years |
gameType | System.Nullable{Nhl.Api.Enumerations.Game.GameType} | The NHL game type to retrieve the team statistics, see GameType for more information on valid game types |
cancellationToken | System.Threading.CancellationToken | A cancellation token that can be used by other objects or threads to receive notice of cancellation |
<a name='M-Nhl-Api-NhlApi-GetTvScheduleBroadcastByDateAsync-System-DateOnly,System-Threading-CancellationToken-'></a>
GetTvScheduleBroadcastByDateAsync(date,cancellationToken) method
Summary
Returns the NHL TV broadcasts for the specified date with information about the broadcasts
Returns
Returns the NHL TV broadcasts for the specified date with information about the broadcasts
Parameters
Name | Type | Description |
---|---|---|
date | System.DateOnly | The date requested for the NHL TV broadcasts, Example: 2024-02-10 |
cancellationToken | System.Threading.CancellationToken | A cancellation token that can be used by other objects or threads to receive notice of cancellation |
<a name='M-Nhl-Api-NhlApi-IsLeagueActiveAsync-System-Threading-CancellationToken-'></a>
IsLeagueActiveAsync() method
Summary
Determines if the NHL league is active or inactive based on the current date and time
Returns
Returns true or false based on the current time and date
Parameters
This method has no parameters.
<a name='M-Nhl-Api-NhlApi-IsPlayoffSeasonActiveAsync-System-Threading-CancellationToken-'></a>
IsPlayoffSeasonActiveAsync(cancellationToken) method
Summary
Returns the true or false if the NHL playoff season is active or inactive
Returns
Returns a result of true or false if the NHL playoff season is active
Parameters
Name | Type | Description |
---|---|---|
cancellationToken | System.Threading.CancellationToken | A cancellation token that can be used by other objects or threads to receive notice of cancellation |
<a name='M-Nhl-Api-NhlApi-IsPreSeasonActiveAsync-System-Threading-CancellationToken-'></a>
IsPreSeasonActiveAsync(cancellationToken) method
Summary
Returns the true or false if the NHL playoff pre season is active or inactive
Returns
Returns a result of true or false if the NHL pre-season is active
Parameters
Name | Type | Description |
---|---|---|
cancellationToken | System.Threading.CancellationToken | A cancellation token that can be used by other objects or threads to receive notice of cancellation |
<a name='M-Nhl-Api-NhlApi-IsRegularSeasonActiveAsync-System-Threading-CancellationToken-'></a>
IsRegularSeasonActiveAsync(cancellationToken) method
Summary
Returns the true or false if the NHL regular season is active or inactive
Returns
Returns a result of true or false if the NHL regular season is active
Parameters
Name | Type | Description |
---|---|---|
cancellationToken | System.Threading.CancellationToken | A cancellation token that can be used by other objects or threads to receive notice of cancellation |
<a name='M-Nhl-Api-NhlApi-SearchAllActivePlayersAsync-System-String,System-Int32,System-Threading-CancellationToken-'></a>
SearchAllActivePlayersAsync(query,limit,cancellationToken) method
Summary
Returns only active NHL players based on the search query provided
Returns
A collection of all NHL players based on the search query provided
Parameters
Name | Type | Description |
---|---|---|
query | System.String | A search term to find NHL players, Example: "Owen Power" or "Carter Hart" or "Nathan MacKinnon" |
limit | System.Int32 | A parameter to limit the number of search results returned when searching for a player |
cancellationToken | System.Threading.CancellationToken | A cancellation token that can be used by other objects or threads to receive notice of cancellation |
<a name='M-Nhl-Api-NhlApi-SearchAllPlayersAsync-System-String,System-Int32,System-Threading-CancellationToken-'></a>
SearchAllPlayersAsync(query,limit,cancellationToken) method
Summary
Returns any active or inactive NHL players based on the search query provided
Returns
A collection of all NHL players based on the search query provided
Parameters
Name | Type | Description |
---|---|---|
query | System.String | A search term to find NHL players, Example: "Jack Adams" or "Wayne Gretzky" or "Mats Sundin" |
limit | System.Int32 | A parameter to limit the number of search results returned when searching for a player |
cancellationToken | System.Threading.CancellationToken | A cancellation token that can be used by other objects or threads to receive notice of cancellation |
<a name='T-Nhl-Api-NhlGameApi'></a>
NhlGameApi type
Namespace
Nhl.Api
Summary
The official unofficial NHL Game API providing various NHL information game information, game schedules, live game feeds and more
<a name='M-Nhl-Api-NhlGameApi-#ctor'></a>
#ctor() constructor
Summary
The official unofficial NHL Game API providing various NHL information game information, game schedules, live game feeds and more
Parameters
This constructor has no parameters.
<a name='M-Nhl-Api-NhlGameApi-GetBoxscoreByGameIdAsync-System-Int32,System-Threading-CancellationToken-'></a>
GetBoxscoreByGameIdAsync(gameId,cancellationToken) method
Summary
Returns the NHL game direct box score including information such as summaries, linescores, shots by period and more
Returns
Returns the NHL game direct box score including information such as summaries, linescores, shots by period and more
Parameters
Name | Type | Description |
---|---|---|
gameId | System.Int32 | The NHL game identifier, Example: 2023020204 |
cancellationToken | System.Threading.CancellationToken | A cancellation token that can be used by other objects or threads to receive notice of cancellation |
<a name='M-Nhl-Api-NhlGameApi-GetCurrentTeamScoreboardAsync-Nhl-Api-Models-Enumerations-Team-TeamEnum,System-Threading-CancellationToken-'></a>
GetCurrentTeamScoreboardAsync(team,cancellationToken) method
Summary
Returns the current NHL team scoreboard for the current date and time, with upcoming game scores and completed game scores
Returns
Returns the current NHL team scoreboard for the current date and time, with upcoming game scores and completed game scores
Parameters
Name | Type | Description |
---|---|---|
team | Nhl.Api.Models.Enumerations.Team.TeamEnum | The NHL team identifier, 55 - Seattle Kraken, see TeamEnum for more information |
cancellationToken | System.Threading.CancellationToken | A cancellation token that can be used by other objects or threads to receive notice of cancellation |
<a name='M-Nhl-Api-NhlGameApi-GetCurrentTeamScoreboardAsync-System-Int32,System-Threading-CancellationToken-'></a>
GetCurrentTeamScoreboardAsync(teamId,cancellationToken) method
Summary
Returns the current NHL team scoreboard for the current date and time, with upcoming game scores and completed game scores
Returns
Returns the current NHL team scoreboard for the current date and time, with upcoming game scores and completed game scores
Parameters
Name | Type | Description |
---|---|---|
teamId | System.Int32 | The team identifier, Example: 10 - Toronto Maples Leafs |
cancellationToken | System.Threading.CancellationToken | A cancellation token that can be used by other objects or threads to receive notice of cancellation |
<a name='M-Nhl-Api-NhlGameApi-GetGameCenterBoxScoreByGameIdAsync-System-Int32,System-Threading-CancellationToken-'></a>
GetGameCenterBoxScoreByGameIdAsync(gameId,cancellationToken) method
Summary
Returns the NHL game center box score for the specified game id, including the game information, game status, game venue and more
Returns
Returns the NHL game center box score for the specified game id, including the game information, game status, game venue and more
Parameters
Name | Type | Description |
---|---|---|
gameId | System.Int32 | The NHL game identifier, Example: 2023020204 |
cancellationToken | System.Threading.CancellationToken | A cancellation token that can be used by other objects or threads to receive notice of cancellation |
<a name='M-Nhl-Api-NhlGameApi-GetGameCenterLandingByGameIdAsync-System-Int32,System-Threading-CancellationToken-'></a>
GetGameCenterLandingByGameIdAsync(gameId,cancellationToken) method
Summary
Returns the NHL game center feed for the specified game id, including the game information, game status, game venue and more
Returns
Returns the NHL game center feed for the specified game id, including the game information, game status, game venue and more
Parameters
Name | Type | Description |
---|---|---|
gameId | System.Int32 | The NHL game identifier, Example: 2023020204 |
cancellationToken | System.Threading.CancellationToken | A cancellation token that can be used by other objects or threads to receive notice of cancellation |
<a name='M-Nhl-Api-NhlGameApi-GetGameCenterPlayByPlayByGameIdAsync-System-Int32,System-Boolean,System-Threading-CancellationToken-'></a>
GetGameCenterPlayByPlayByGameIdAsync(gameId,includeEventDateTime,cancellationToken) method
Summary
Returns the NHL game center feed for the specified game id, including the game information, game status, game venue and more
Returns
Returns the NHL game center feed for the specified game id, including the game information, game status, game venue and more
Parameters
Name | Type | Description |
---|---|---|
gameId | System.Int32 | The NHL game identifier, Example: 2023020204 |
includeEventDateTime | System.Boolean | A flag to determine whether the event timestamp for each play by play event is included |
cancellationToken | System.Threading.CancellationToken | A cancellation token that can be used by other objects or threads to receive notice of cancellation |
<a name='M-Nhl-Api-NhlGameApi-GetGameMetadataByGameIdAsync-System-Int32,System-Threading-CancellationToken-'></a>
GetGameMetadataByGameIdAsync(gameId,cancellationToken) method
Summary
Returns the NHL game meta data for the specified game id, including the teams, season states and more
Returns
Returns the NHL game meta data for the specified game id, including the teams, season states and more
Parameters
Name | Type | Description |
---|---|---|
gameId | System.Int32 | The NHL game identifier, Example: 2023020204 |
cancellationToken | System.Threading.CancellationToken | A cancellation token that can be used by other objects or threads to receive notice of cancellation |
<a name='M-Nhl-Api-NhlGameApi-GetGameScoreboardAsync-System-Threading-CancellationToken-'></a>
GetGameScoreboardAsync(cancellationToken) method
Summary
Returns the live NHL game scoreboard, including the game information, game status, game venue and more
Returns
Returns the live NHL game scoreboard, including the game information, game status, game venue and more
Parameters
Name | Type | Description |
---|---|---|
cancellationToken | System.Threading.CancellationToken | A cancellation token that can be used by other objects or threads to receive notice of cancellation |
<a name='M-Nhl-Api-NhlGameApi-GetGameScoresByDateAsync-System-DateOnly,System-Threading-CancellationToken-'></a>
GetGameScoresByDateAsync(date,cancellationToken) method
Summary
Returns all of the NHL game scores for the specified date, including the game id, game date and time, game status, game venue and more
Returns
Returns all of the NHL game scores for the specified date, including the game id, game date and time, game status, game venue and more
Parameters
Name | Type | Description |
---|---|---|
date | System.DateOnly | The date for the requested game scores, Example: 2020-10-02 |
cancellationToken | System.Threading.CancellationToken | A cancellation token that can be used by other objects or threads to receive notice of cancellation |
<a name='M-Nhl-Api-NhlGameApi-GetLiveGameFeedPlayerShiftsAsync-System-Int32,System-Threading-CancellationToken-'></a>
GetLiveGameFeedPlayerShiftsAsync(gameId,cancellationToken) method
Summary
Returns all of the individual shifts of each NHL player for a specific NHL game id
Returns
A collection of all the NHL player game shifts for a specific game, including start and end times, on ice duration and more
Parameters
Name | Type | Description |
---|---|---|
gameId | System.Int32 | The game id, Example: 2021020087 |
cancellationToken | System.Threading.CancellationToken | A cancellation token that can be used by other objects or threads to receive notice of cancellation |
<a name='M-Nhl-Api-NhlGameApi-GetTeamSeasonScheduleBySeasonYearAsync-System-Int32,System-String,System-Threading-CancellationToken-'></a>
GetTeamSeasonScheduleBySeasonYearAsync(teamId,seasonYear,cancellationToken) method
Summary
Returns the NHL team schedule for the specified team and season year
Returns
Returns the NHL team schedule for the specified team and season year
Parameters
Name | Type | Description |
---|---|---|
teamId | System.Int32 | The team identifier, Example: 10 - Toronto Maples Leafs |
seasonYear | System.String | The season year, see SeasonYear for more information, Example: 20202021 |
cancellationToken | System.Threading.CancellationToken | A cancellation token that can be used by other objects or threads to receive notice of cancellation |
<a name='M-Nhl-Api-NhlGameApi-GetTeamSeasonScheduleBySeasonYearAsync-Nhl-Api-Models-Enumerations-Team-TeamEnum,System-String,System-Threading-CancellationToken-'></a>
GetTeamSeasonScheduleBySeasonYearAsync(team,seasonYear,cancellationToken) method
Summary
Returns the NHL team schedule for the specified team and season year
Returns
Returns the NHL team schedule for the specified team and season year
Parameters
Name | Type | Description |
---|---|---|
team | Nhl.Api.Models.Enumerations.Team.TeamEnum | The NHL team identifier, see TeamEnum for more information, Example: 54 - Vegas Golden Knights |
seasonYear | System.String | The season year, see SeasonYear for more information, Example: 20202021 |
cancellationToken | System.Threading.CancellationToken | A cancellation token that can be used by other objects or threads to receive notice of cancellation |
<a name='M-Nhl-Api-NhlGameApi-GetTeamSeasonScheduleByYearAndMonthAsync-System-Int32,System-Int32,System-Int32,System-Threading-CancellationToken-'></a>
GetTeamSeasonScheduleByYearAndMonthAsync(teamId,year,month,cancellationToken) method
Summary
Returns the NHL team schedule for the specified team and season year and month
Returns
Returns the NHL team schedule for the specified team and season year and month
Parameters
Name | Type | Description |
---|---|---|
teamId | System.Int32 | The team identifier, Example: 10 - Toronto Maples Leafs |
year | System.Int32 | The year, Example: 2020 |
month | System.Int32 | The month, Example: 10 |
cancellationToken | System.Threading.CancellationToken | A cancellation token that can be used by other objects or threads to receive notice of cancellation |
<a name='M-Nhl-Api-NhlGameApi-GetTeamSeasonScheduleByYearAndMonthAsync-Nhl-Api-Models-Enumerations-Team-TeamEnum,System-Int32,System-Int32,System-Threading-CancellationToken-'></a>
GetTeamSeasonScheduleByYearAndMonthAsync(team,year,month,cancellationToken) method
Summary
Returns the NHL team schedule for the specified team and season year and month
Returns
Returns the NHL team schedule for the specified team and season year and month
Parameters
Name | Type | Description |
---|---|---|
team | Nhl.Api.Models.Enumerations.Team.TeamEnum | The NHL team identifier, see TeamEnum for more information, Example: 54 - Vegas Golden Knights |
year | System.Int32 | The year, Example: 2020 |
month | System.Int32 | The month, Example: 10 |
cancellationToken | System.Threading.CancellationToken | A cancellation token that can be used by other objects or threads to receive notice of cancellation |
<a name='M-Nhl-Api-NhlGameApi-GetTeamWeekScheduleByDateAsync-System-Int32,System-DateOnly,System-Threading-CancellationToken-'></a>
GetTeamWeekScheduleByDateAsync(teamId,date,cancellationToken) method
Summary
Returns the NHL team schedule for the specified team and the specified date and time
Returns
Returns the NHL team schedule for the specified team and the specified date and time
Parameters
Name | Type | Description |
---|---|---|
teamId | System.Int32 | The team identifier, Example: 10 - Toronto Maples Leafs |
date | System.DateOnly | The date and time, Example: 2020-10-02 |
cancellationToken | System.Threading.CancellationToken | A cancellation token that can be used by other objects or threads to receive notice of cancellation |
<a name='M-Nhl-Api-NhlGameApi-GetTeamWeekScheduleByDateAsync-Nhl-Api-Models-Enumerations-Team-TeamEnum,System-DateOnly,System-Threading-CancellationToken-'></a>
GetTeamWeekScheduleByDateAsync(team,date,cancellationToken) method
Summary
Returns the NHL team schedule for the specified team and the specified date and time
Returns
Returns the NHL team schedule for the specified team and the specified date and time
Parameters
Name | Type | Description |
---|---|---|
team | Nhl.Api.Models.Enumerations.Team.TeamEnum | The NHL team identifier, see TeamEnum for more information, Example: 54 - Vegas Golden Knights |
date | System.DateOnly | The date and time, Example: 2020-10-02 |
cancellationToken | System.Threading.CancellationToken | A cancellation token that can be used by other objects or threads to receive notice of cancellation |
<a name='T-Nhl-Api-NhlLeagueApi'></a>
NhlLeagueApi type
Namespace
Nhl.Api
Summary
The official unofficial NHL League API providing various NHL league information including teams, franchises, standings, awards and more
<a name='M-Nhl-Api-NhlLeagueApi-#ctor'></a>
#ctor() constructor
Summary
The official unofficial NHL League API providing various NHL league information including teams, franchises, standings, awards and more
Parameters
This constructor has no parameters.
<a name='M-Nhl-Api-NhlLeagueApi-GetAllRosterSeasonsByTeamAsync-System-Int32,System-Threading-CancellationToken-'></a>
GetAllRosterSeasonsByTeamAsync(teamId,cancellationToken) method
Summary
Returns every active season for an NHL team and their participation in the NHL
Returns
Returns every active season for an NHL team and their participation in the NHL
Parameters
Name | Type | Description |
---|---|---|
teamId | System.Int32 | The NHL team identifier, Example: 55 - Seattle Kraken |
cancellationToken | System.Threading.CancellationToken | A cancellation token that can be used by other objects or threads to receive notice of cancellation |
<a name='M-Nhl-Api-NhlLeagueApi-GetAllRosterSeasonsByTeamAsync-Nhl-Api-Models-Enumerations-Team-TeamEnum,System-Threading-CancellationToken-'></a>
GetAllRosterSeasonsByTeamAsync(team,cancellationToken) method
Summary
Returns every active season for an NHL team and their participation in the NHL
Returns
Returns every active season for an NHL team and their participation in the NHL
Parameters
Name | Type | Description |
---|---|---|
team | Nhl.Api.Models.Enumerations.Team.TeamEnum | The NHL team identifier, see TeamEnum for more information, Example: 9 - Ottawa Senators |
cancellationToken | System.Threading.CancellationToken | A cancellation token that can be used by other objects or threads to receive notice of cancellation |
<a name='M-Nhl-Api-NhlLeagueApi-GetAllSeasonsAsync-System-Threading-CancellationToken-'></a>
GetAllSeasonsAsync(cancellationToken) method
Summary
Returns all the NHL seasons for the NHL league
Returns
Returns all the NHL seasons for the NHL league
Parameters
Name | Type | Description |
---|---|---|
cancellationToken | System.Threading.CancellationToken | A cancellation token that can be used by other objects or threads to receive notice of cancellation |
<a name='M-Nhl-Api-NhlLeagueApi-GetLeagueGameWeekScheduleByDateAsync-System-DateOnly,System-Threading-CancellationToken-'></a>
GetLeagueGameWeekScheduleByDateAsync(date,cancellationToken) method
Summary
Returns the NHL team schedule for a specific date using the DateOnly
Returns
A result of the current NHL schedule by the specified date
Parameters
Name | Type | Description |
---|---|---|
date | System.DateOnly | A DateOnly for the specific date for the NHL schedule |
cancellationToken | System.Threading.CancellationToken | A cancellation token that can be used by other objects or threads to receive notice of cancellation |
<a name='M-Nhl-Api-NhlLeagueApi-GetLeagueMetadataInformationAsync-System-Collections-Generic-List{System-Int32},System-Collections-Generic-List{System-String},System-Threading-CancellationToken-'></a>
GetLeagueMetadataInformationAsync(playerIds,teamIds,cancellationToken) method
Summary
Returns the meta data information about the NHL league including players, teams and season states
Returns
Returns the meta data information about the NHL league including players, teams and season states
Parameters
Name | Type | Description |
---|---|---|
playerIds | System.Collections.Generic.List{System.Int32} | A collection of NHL player identifiers, Example: [8478402,8478403] |
teamIds | System.Collections.Generic.List{System.String} | A collection of NHL team identifiers, Example: [EDM, TOR] |
cancellationToken | System.Threading.CancellationToken | A cancellation token that can be used by other objects or threads to receive notice of cancellation |
<a name='M-Nhl-Api-NhlLeagueApi-GetLeagueMetadataInformationAsync-System-Collections-Generic-List{Nhl-Api-Models-Enumerations-Player-PlayerEnum},System-Collections-Generic-List{Nhl-Api-Models-Enumerations-Team-TeamEnum},System-Threading-CancellationToken-'></a>
GetLeagueMetadataInformationAsync(players,teams,cancellationToken) method
Summary
Returns the meta data information about the NHL league including players, teams and season states
Returns
Returns the meta data information about the NHL league including players, teams and season states
Parameters
Name | Type | Description |
---|---|---|
players | System.Collections.Generic.List{Nhl.Api.Models.Enumerations.Player.PlayerEnum} | A collection of NHL player identifiers, Example: [8478402,8478403] |
teams | System.Collections.Generic.List{Nhl.Api.Models.Enumerations.Team.TeamEnum} | A collection of NHL team identifiers, Example: [EDM, TOR] |
cancellationToken | System.Threading.CancellationToken | A cancellation token that can be used by other objects or threads to receive notice of cancellation |
<a name='M-Nhl-Api-NhlLeagueApi-GetLeagueScheduleCalendarByDateAsync-System-DateOnly,System-Threading-CancellationToken-'></a>
GetLeagueScheduleCalendarByDateAsync(date,cancellationToken) method
Summary
Returns the NHL league calendar schedule for the specified date and all applicable teams
Returns
Returns the NHL league calendar schedule for the specified date and all applicable teams
Parameters
Name | Type | Description |
---|---|---|
date | System.DateOnly | The date requested for the NHL league schedule, Example: 2024-02-10 |
cancellationToken | System.Threading.CancellationToken | A cancellation token that can be used by other objects or threads to receive notice of cancellation |
<a name='M-Nhl-Api-NhlLeagueApi-GetLeagueStandingsByDateAsync-System-DateOnly,System-Threading-CancellationToken-'></a>
GetLeagueStandingsByDateAsync(date,cancellationToken) method
Summary
Returns the NHL league standings for the current NHL season by the specified date
Returns
Return the NHL league standings for the specified date with specific team information
Parameters
Name | Type | Description |
---|---|---|
date | System.DateOnly | The date requested for the NHL season standing |
cancellationToken | System.Threading.CancellationToken | A cancellation token that can be used by other objects or threads to receive notice of cancellation |
<a name='M-Nhl-Api-NhlLeagueApi-GetLeagueStandingsSeasonInformationAsync-System-Threading-CancellationToken-'></a>
GetLeagueStandingsSeasonInformationAsync(cancellationToken) method
Summary
Returns the NHL league standings for the all NHL seasons with specific league season information
Returns
Returns the NHL league standings information for each season since 1917-1918
Parameters
Name | Type | Description |
---|---|---|
cancellationToken | System.Threading.CancellationToken | A cancellation token that can be used by other objects or threads to receive notice of cancellation |
<a name='M-Nhl-Api-NhlLeagueApi-GetLeagueWeekScheduleByDateAsync-System-DateOnly,System-Threading-CancellationToken-'></a>
GetLeagueWeekScheduleByDateAsync(date,cancellationToken) method
Summary
Returns the NHL league schedule for the specified date
Returns
Returns the NHL league schedule for the specified date
Parameters
Name | Type | Description |
---|---|---|
date | System.DateOnly | The date requested for the NHL league schedule, Example: 2024-02-10 |
cancellationToken | System.Threading.CancellationToken | A cancellation token that can be used by other objects or threads to receive notice of cancellation |
<a name='M-Nhl-Api-NhlLeagueApi-GetSourcesToWatchGamesAsync-System-Threading-CancellationToken-'></a>
GetSourcesToWatchGamesAsync(cancellationToken) method
Summary
Returns the collection of countries and where you can watch NHL games with links and more
Returns
Returns the collection of countries and where you can watch NHL games with links and more
Parameters
Name | Type | Description |
---|---|---|
cancellationToken | System.Threading.CancellationToken | A cancellation token that can be used by other objects or threads to receive notice of cancellation |
<a name='M-Nhl-Api-NhlLeagueApi-GetTeamColorsAsync-Nhl-Api-Models-Enumerations-Team-TeamEnum,System-Threading-CancellationToken-'></a>
GetTeamColorsAsync(team,cancellationToken) method
Summary
Returns the hexadecimal code for an NHL team's colors
Returns
An NHL team color scheme using hexadecimal codes
Parameters
Name | Type | Description |
---|---|---|
team | Nhl.Api.Models.Enumerations.Team.TeamEnum | The NHL team identifier, 55 - Seattle Kraken, see TeamEnum for more information |
cancellationToken | System.Threading.CancellationToken | A cancellation token that can be used by other objects or threads to receive notice of cancellation |
<a name='M-Nhl-Api-NhlLeagueApi-GetTeamColorsAsync-System-Int32,System-Threading-CancellationToken-'></a>
GetTeamColorsAsync(teamId,cancellationToken) method
Summary
Returns the hexadecimal code for an NHL team's colors
Returns
An NHL team color scheme using hexadecimal codes
Parameters
Name | Type | Description |
---|---|---|
teamId | System.Int32 | The NHL team identifier - Seattle Kraken: 55 |
cancellationToken | System.Threading.CancellationToken | A cancellation token that can be used by other objects or threads to receive notice of cancellation |
<a name='M-Nhl-Api-NhlLeagueApi-GetTeamLogoAsync-Nhl-Api-Models-Enumerations-Team-TeamEnum,Nhl-Api-Models-Team-TeamLogoType,System-Threading-CancellationToken-'></a>
GetTeamLogoAsync(team,teamLogoType,cancellationToken) method
Summary
Returns an the NHL team logo based a dark or light preference using the NHL team enumeration
Returns
Returns NHL team logo information including a byte array, base64 encoded string and the Uri endpoint
Parameters
Name | Type | Description |
---|---|---|
team | Nhl.Api.Models.Enumerations.Team.TeamEnum | The NHL team identifier, 55 - Seattle Kraken, see TeamEnum for more information |
teamLogoType | Nhl.Api.Models.Team.TeamLogoType | The NHL team logo image type, based on the background of light or dark |
cancellationToken | System.Threading.CancellationToken | A cancellation token that can be used by other objects or threads to receive notice of cancellation |
<a name='M-Nhl-Api-NhlLeagueApi-GetTeamLogoAsync-System-Int32,Nhl-Api-Models-Team-TeamLogoType,System-Threading-CancellationToken-'></a>
GetTeamLogoAsync(teamId,teamLogoType,cancellationToken) method
Summary
Returns an the NHL team logo based a dark or light preference using the NHL team id
Returns
Returns NHL team logo information including a byte array, base64 encoded string and the Uri endpoint
Parameters
Name | Type | Description |
---|---|---|
teamId | System.Int32 | The NHL team identifier - Seattle Kraken: 55 |
teamLogoType | Nhl.Api.Models.Team.TeamLogoType | The NHL team logo image type, based on the background of light or dark |
cancellationToken | System.Threading.CancellationToken | A cancellation token that can be used by other objects or threads to receive notice of cancellation |
<a name='M-Nhl-Api-NhlLeagueApi-GetTeamProspectsByTeamAsync-System-Int32,System-Threading-CancellationToken-'></a>
GetTeamProspectsByTeamAsync(teamId,cancellationToken) method
Summary
Returns all the NHL prospects for the specified NHL team including forwards, defense men and goalies
Returns
Returns all the NHL prospects for the specified NHL team including forwards, defense men and goalies
Parameters
Name | Type | Description |
---|---|---|
teamId | System.Int32 | The NHL team identifier, Example: 55 - Seattle Kraken |
cancellationToken | System.Threading.CancellationToken | A cancellation token that can be used by other objects or threads to receive notice of cancellation |
<a name='M-Nhl-Api-NhlLeagueApi-GetTeamProspectsByTeamAsync-Nhl-Api-Models-Enumerations-Team-TeamEnum,System-Threading-CancellationToken-'></a>
GetTeamProspectsByTeamAsync(team,cancellationToken) method
Summary
Returns all the NHL prospects for the specified NHL team including forwards, defense men and goalies
Returns
Returns all the NHL prospects for the specified NHL team including forwards, defense men and goalies
Parameters
Name | Type | Description |
---|---|---|
team | Nhl.Api.Models.Enumerations.Team.TeamEnum | The NHL team identifier, see TeamEnum for more information, Example: 10 - Toronto Maple Leafs |
cancellationToken | System.Threading.CancellationToken | A cancellation token that can be used by other objects or threads to receive notice of cancellation |
<a name='M-Nhl-Api-NhlLeagueApi-GetTeamRosterBySeasonYearAsync-System-Int32,System-String,System-Threading-CancellationToken-'></a>
GetTeamRosterBySeasonYearAsync(teamId,seasonYear,cancellationToken) method
Summary
Returns the NHL team roster for a specific team by the team identifier and season year
Returns
Returns the NHL team roster for a specific team by the team identifier and season year
Parameters
Name | Type | Description |
---|---|---|
teamId | System.Int32 | The NHL team identifier, Example: 55 - Seattle Kraken |
seasonYear | System.String | The eight digit number format for the season, see SeasonYear for more information, Example: 20232024 |
cancellationToken | System.Threading.CancellationToken | A cancellation token that can be used by other objects or threads to receive notice of cancellation |
<a name='M-Nhl-Api-NhlLeagueApi-GetTeamRosterBySeasonYearAsync-Nhl-Api-Models-Enumerations-Team-TeamEnum,System-String,System-Threading-CancellationToken-'></a>
GetTeamRosterBySeasonYearAsync(team,seasonYear,cancellationToken) method
Summary
Returns the NHL team roster for a specific team by the team and season year
Returns
Returns the NHL team roster for a specific team by the team identifier and season year
Parameters
Name | Type | Description |
---|---|---|
team | Nhl.Api.Models.Enumerations.Team.TeamEnum | The NHL team identifier, see TeamEnum for more information, Example: 9 - Ottawa Senators |
seasonYear | System.String | The eight digit number format for the season, see SeasonYear for more information, Example: 20232024 |
cancellationToken | System.Threading.CancellationToken | A cancellation token that can be used by other objects or threads to receive notice of cancellation |
<a name='M-Nhl-Api-NhlLeagueApi-GetTeamScheduleBySeasonAsync-System-String,System-String,System-Threading-CancellationToken-'></a>
GetTeamScheduleBySeasonAsync(teamAbbreviation,seasonYear,cancellationToken) method
Summary
This returns the NHL team schedule for a specific season and a specific team by the team abbreviation and season
Returns
A collection of all games in the requested season for the requested NHL team
Parameters
Name | Type | Description |
---|---|---|
teamAbbreviation | System.String | The required team abbreviation for the NHL team, Example: WSH - Washington |
seasonYear | System.String | The eight digit number format for the season, Example: 20232024 |
cancellationToken | System.Threading.CancellationToken | A cancellation token that can be used by other objects or threads to receive notice of cancellation |
<a name='M-Nhl-Api-NhlLeagueApi-GetTeamWeekScheduleByDateAsync-System-String,System-DateOnly,System-Threading-CancellationToken-'></a>
GetTeamWeekScheduleByDateAsync(teamAbbreviation,date,cancellationToken) method
Summary
This returns the NHL team schedule for a specific season and a specific team by the team abbreviation and season
Returns
A collection of all games in the requested season for the requested NHL team
Parameters
Name | Type | Description |
---|---|---|
teamAbbreviation | System.String | The required team abbreviation for the NHL team, Example: WSH - Washington |
date | System.DateOnly | The date in which the request schedule for the team and for the week is request for |
cancellationToken | System.Threading.CancellationToken | A cancellation token that can be used by other objects or threads to receive notice of cancellation |
<a name='M-Nhl-Api-NhlLeagueApi-GetTvScheduleBroadcastByDateAsync-System-DateOnly,System-Threading-CancellationToken-'></a>
GetTvScheduleBroadcastByDateAsync(date,cancellationToken) method
Summary
Returns the NHL TV broadcasts for the specified date with information about the broadcasts
Returns
Returns the NHL TV broadcasts for the specified date with information about the broadcasts
Parameters
Name | Type | Description |
---|---|---|
date | System.DateOnly | The date requested for the NHL TV broadcasts, Example: 2024-02-10 |
cancellationToken | System.Threading.CancellationToken | A cancellation token that can be used by other objects or threads to receive notice of cancellation |
<a name='M-Nhl-Api-NhlLeagueApi-IsLeagueActiveAsync-System-Threading-CancellationToken-'></a>
IsLeagueActiveAsync(cancellationToken) method
Summary
Determines if the NHL league is active or inactive based on the current date and time
Returns
Returns true or false based on the current time and date
Parameters
Name | Type | Description |
---|---|---|
cancellationToken | System.Threading.CancellationToken | A cancellation token that can be used by other objects or threads to receive notice of cancellation |
<a name='M-Nhl-Api-NhlLeagueApi-IsPlayoffSeasonActiveAsync-System-Threading-CancellationToken-'></a>
IsPlayoffSeasonActiveAsync(cancellationToken) method
Summary
Returns the true or false if the NHL playoff season is active
Returns
Returns a result of true or false if the NHL playoff season is active
Parameters
Name | Type | Description |
---|---|---|
cancellationToken | System.Threading.CancellationToken | A cancellation token that can be used by other objects or threads to receive notice of cancellation |
<a name='M-Nhl-Api-NhlLeagueApi-IsPreSeasonActiveAsync-System-Threading-CancellationToken-'></a>
IsPreSeasonActiveAsync(cancellationToken) method
Summary
Returns the true or false if the NHL playoff pre season is active or inactive
Returns
Returns a result of true or false if the NHL pre-season is active
Parameters
Name | Type | Description |
---|---|---|
cancellationToken | System.Threading.CancellationToken | A cancellation token that can be used by other objects or threads to receive notice of cancellation |
<a name='M-Nhl-Api-NhlLeagueApi-IsRegularSeasonActiveAsync-System-Threading-CancellationToken-'></a>
IsRegularSeasonActiveAsync(cancellationToken) method
Summary
Returns the true or false if the NHL regular season is active or inactive
Returns
Returns a result of true or false if the NHL regular season is active
Parameters
Name | Type | Description |
---|---|---|
cancellationToken | System.Threading.CancellationToken | A cancellation token that can be used by other objects or threads to receive notice of cancellation |
<a name='T-Nhl-Api-NhlPlayerApi'></a>
NhlPlayerApi type
Namespace
Nhl.Api
Summary
The official unofficial NHL Player API providing various NHL information about players, draft prospects, rosters and more
<a name='M-Nhl-Api-NhlPlayerApi-#ctor'></a>
#ctor() constructor
Summary
The official unofficial NHL Player API providing various NHL information about players, draft prospects, rosters and more
Parameters
This constructor has no parameters.
<a name='M-Nhl-Api-NhlPlayerApi-Dispose'></a>
Dispose() method
Summary
Disposes and releases all unneeded resources for the NHL player API
Parameters
This method has no parameters.
<a name='M-Nhl-Api-NhlPlayerApi-GetAllPlayersAsync-System-Threading-CancellationToken-'></a>
GetAllPlayersAsync(cancellationToken) method
Summary
Returns all the NHL players to ever play in the NHL
Returns
Returns all the NHL players to ever play in the NHL
Parameters
Name | Type | Description |
---|---|---|
cancellationToken | System.Threading.CancellationToken | A cancellation token that can be used by other objects or threads to receive notice of cancellation |
<a name='M-Nhl-Api-NhlPlayerApi-GetGoalieInformationAsync-System-Int32,System-Threading-CancellationToken-'></a>
GetGoalieInformationAsync(playerId,cancellationToken) method
Summary
Returns the NHL goalie's profile information including their birth date, birth city, height, weight, position and much more
Returns
Returns the NHL player's profile information
Parameters
Name | Type | Description |
---|---|---|
playerId | System.Int32 | An NHL player id, Example: 8480313 - Logan Thompson |
cancellationToken | System.Threading.CancellationToken | A cancellation token that can be used by other objects or threads to receive notice of cancellation |
<a name='M-Nhl-Api-NhlPlayerApi-GetGoalieInformationAsync-Nhl-Api-Models-Enumerations-Player-PlayerEnum,System-Threading-CancellationToken-'></a>
GetGoalieInformationAsync(player,cancellationToken) method
Summary
Returns the NHL goalie's profile information including their birth date, birth city, height, weight, position and much more
Returns
Returns the NHL player's profile information
Parameters
Name | Type | Description |
---|---|---|
player | Nhl.Api.Models.Enumerations.Player.PlayerEnum | An NHL player id, Example: 8480313 - Logan Thompson, see PlayerEnum for more information on NHL players |
cancellationToken | System.Threading.CancellationToken | A cancellation token that can be used by other objects or threads to receive notice of cancellation |
<a name='M-Nhl-Api-NhlPlayerApi-GetGoalieSeasonGameLogsBySeasonAndGameTypeAsync-Nhl-Api-Models-Enumerations-Player-PlayerEnum,System-String,Nhl-Api-Enumerations-Game-GameType,System-Threading-CancellationToken-'></a>
GetGoalieSeasonGameLogsBySeasonAndGameTypeAsync(player,seasonYear,gameType,cancellationToken) method
Summary
The player season game log for an NHL player for a specific season and game type including stats such as goals, assists, points, plus/minus and more
Returns
The collection of player season game logs with each game played including statistics, all available season and more
Parameters
Name | Type | Description |
---|---|---|
player | Nhl.Api.Models.Enumerations.Player.PlayerEnum | An NHL player id, Example: 8478402 - Connor McDavid, see PlayerEnum for more information on NHL players |
seasonYear | System.String | The season year parameter for determining the season for the season, SeasonYear for all available seasons |
gameType | Nhl.Api.Enumerations.Game.GameType | The game type parameter for determining the game type for the type of player season logs |
cancellationToken | System.Threading.CancellationToken | A cancellation token that can be used by other objects or threads to receive notice of cancellation |
<a name='M-Nhl-Api-NhlPlayerApi-GetGoalieSeasonGameLogsBySeasonAndGameTypeAsync-System-Int32,System-String,Nhl-Api-Enumerations-Game-GameType,System-Threading-CancellationToken-'></a>
GetGoalieSeasonGameLogsBySeasonAndGameTypeAsync(playerId,seasonYear,gameType,cancellationToken) method
Summary
The player season game log for an NHL player for a specific season and game type including stats such as goals, assists, points, plus/minus and more
Returns
The collection of player season game logs with each game played including statistics, all available season and more
Parameters
Name | Type | Description |
---|---|---|
playerId | System.Int32 | An NHL player id, Example: 8478402 - Connor McDavid |
seasonYear | System.String | The season year parameter for determining the season for the season, SeasonYear for all available seasons |
gameType | Nhl.Api.Enumerations.Game.GameType | The game type parameter for determining the game type for the type of player season logs |
cancellationToken | System.Threading.CancellationToken | A cancellation token that can be used by other objects or threads to receive notice of cancellation |
<a name='M-Nhl-Api-NhlPlayerApi-GetPlayerDraftRankingByYearAsync-System-String,System-Int32,System-Threading-CancellationToken-'></a>
GetPlayerDraftRankingByYearAsync(seasonYear,startingPosition,cancellationToken) method
Summary
Returns the NHL draft ranking by the specified year and starting position for the draft year
Returns
Returns the NHL draft ranking by the specified year and starting position for the draft year
Parameters
Name | Type | Description |
---|---|---|
seasonYear | System.String | The NHL draft year |
startingPosition | System.Int32 | The starting position of the NHL draft by the year |
cancellationToken | System.Threading.CancellationToken | A cancellation token that can be used by other objects or threads to receive notice of cancellation |
<a name='M-Nhl-Api-NhlPlayerApi-GetPlayerHeadshotImageAsync-Nhl-Api-Models-Enumerations-Player-PlayerEnum,System-String,System-Threading-CancellationToken-'></a>
GetPlayerHeadshotImageAsync(player,seasonYear,cancellationToken) method
Summary
Returns the NHL player's head shot image by season year
Returns
A URI endpoint with the image of an NHL player head shot image
Parameters
Name | Type | Description |
---|---|---|
player | Nhl.Api.Models.Enumerations.Player.PlayerEnum | An NHL player id, Example: 8478402 - Connor McDavid, see PlayerEnum for more information on NHL players |
seasonYear | System.String | The season year parameter for determining the season for the season, SeasonYear for all available seasons |
cancellationToken | System.Threading.CancellationToken | A cancellation token that can be used by other objects or threads to receive notice of cancellation |
<a name='M-Nhl-Api-NhlPlayerApi-GetPlayerHeadshotImageAsync-System-Int32,System-String,System-Threading-CancellationToken-'></a>
GetPlayerHeadshotImageAsync(playerId,seasonYear,cancellationToken) method
Summary
Returns the NHL player's head shot image by season year
Returns
A URI endpoint with the image of an NHL player head shot image
Parameters
Name | Type | Description |
---|---|---|
playerId | System.Int32 | An NHL player id, Example: 8478402 - Connor McDavid |
seasonYear | System.String | The season year parameter for determining the season for the season, SeasonYear for all available seasons |
cancellationToken | System.Threading.CancellationToken | A cancellation token that can be used by other objects or threads to receive notice of cancellation |
<a name='M-Nhl-Api-NhlPlayerApi-GetPlayerInformationAsync-System-Int32,System-Threading-CancellationToken-'></a>
GetPlayerInformationAsync(playerId,cancellationToken) method
Summary
Returns the NHL player's profile information including their birth date, birth city, height, weight, position and much more
Returns
Returns the NHL player's profile information
Parameters
Name | Type | Description |
---|---|---|
playerId | System.Int32 | An NHL player id, Example: 8478402 - Connor McDavid |
cancellationToken | System.Threading.CancellationToken | A cancellation token that can be used by other objects or threads to receive notice of cancellation |
<a name='M-Nhl-Api-NhlPlayerApi-GetPlayerInformationAsync-Nhl-Api-Models-Enumerations-Player-PlayerEnum,System-Threading-CancellationToken-'></a>
GetPlayerInformationAsync(player,cancellationToken) method
Summary
Returns the NHL player's profile information including their birth date, birth city, height, weight, position and much more
Returns
Returns the NHL player's profile information
Parameters
Name | Type | Description |
---|---|---|
player | Nhl.Api.Models.Enumerations.Player.PlayerEnum | An NHL player id, Example: 8478402 - Connor McDavid, see PlayerEnum for more information on NHL players |
cancellationToken | System.Threading.CancellationToken | A cancellation token that can be used by other objects or threads to receive notice of cancellation |
<a name='M-Nhl-Api-NhlPlayerApi-GetPlayerSeasonGameLogsBySeasonAndGameTypeAsync-Nhl-Api-Models-Enumerations-Player-PlayerEnum,System-String,Nhl-Api-Enumerations-Game-GameType,System-Threading-CancellationToken-'></a>
GetPlayerSeasonGameLogsBySeasonAndGameTypeAsync(player,seasonYear,gameType,cancellationToken) method
Summary
The player season game log for an NHL player for a specific season and game type including stats such as goals, assists, points, plus/minus and more
Returns
The collection of player season game logs with each game played including statistics, all available season and more
Parameters
Name | Type | Description |
---|---|---|
player | Nhl.Api.Models.Enumerations.Player.PlayerEnum | An NHL player id, Example: 8478402 - Connor McDavid, see PlayerEnum for more information on NHL players |
seasonYear | System.String | The season year parameter for determining the season for the season, SeasonYear for all available seasons |
gameType | Nhl.Api.Enumerations.Game.GameType | The game type parameter for determining the game type for the type of player season logs |
cancellationToken | System.Threading.CancellationToken | A cancellation token that can be used by other objects or threads to receive notice of cancellation |
<a name='M-Nhl-Api-NhlPlayerApi-GetPlayerSeasonGameLogsBySeasonAndGameTypeAsync-System-Int32,System-String,Nhl-Api-Enumerations-Game-GameType,System-Threading-CancellationToken-'></a>
GetPlayerSeasonGameLogsBySeasonAndGameTypeAsync(playerId,seasonYear,gameType,cancellationToken) method
Summary
The player season game log for an NHL player for a specific season and game type including stats such as goals, assists, points, plus/minus and more
Returns
The collection of player season game logs with each game played including statistics, all available season and more
Parameters
Name | Type | Description |
---|---|---|
playerId | System.Int32 | An NHL player id, Example: 8478402 - Connor McDavid |
seasonYear | System.String | The season year parameter for determining the season for the season, SeasonYear for all available seasons |
gameType | Nhl.Api.Enumerations.Game.GameType | The game type parameter for determining the game type for the type of player season logs |
cancellationToken | System.Threading.CancellationToken | A cancellation token that can be used by other objects or threads to receive notice of cancellation |
<a name='M-Nhl-Api-NhlPlayerApi-GetPlayerSpotlightAsync-System-Threading-CancellationToken-'></a>
GetPlayerSpotlightAsync(cancellationToken) method
Summary
Returns the NHL player's in the spotlight based on their recent performances
Returns
A collection of players and their information for players in the NHL spotlight
Parameters
Name | Type | Description |
---|---|---|
cancellationToken | System.Threading.CancellationToken | A cancellation token that can be used by other objects or threads to receive notice of cancellation |
<a name='M-Nhl-Api-NhlPlayerApi-SearchAllActivePlayersAsync-System-String,System-Int32,System-Threading-CancellationToken-'></a>
SearchAllActivePlayersAsync(query,limit,cancellationToken) method
Summary
Returns only active NHL players based on the search query provided
Returns
A collection of all NHL players based on the search query provided
Parameters
Name | Type | Description |
---|---|---|
query | System.String | A search term to find NHL players, Example: "Owen Power" or "Carter Hart" or "Nathan MacKinnon" |
limit | System.Int32 | A parameter to limit the number of search results returned when searching for a player |
cancellationToken | System.Threading.CancellationToken | A cancellation token that can be used by other objects or threads to receive notice of cancellation |
<a name='M-Nhl-Api-NhlPlayerApi-SearchAllPlayersAsync-System-String,System-Int32,System-Threading-CancellationToken-'></a>
SearchAllPlayersAsync(query,limit,cancellationToken) method
Summary
Returns any active or inactive NHL players based on the search query provided
Returns
A collection of all NHL players based on the search query provided
Parameters
Name | Type | Description |
---|---|---|
query | System.String | A search term to find NHL players, Example: "Jack Adams" or "Wayne Gretzky" or "Mats Sundin" |
limit | System.Int32 | A parameter to limit the number of search results returned when searching for a player |
cancellationToken | System.Threading.CancellationToken | A cancellation token that can be used by other objects or threads to receive notice of cancellation |
<a name='T-Nhl-Api-NhlStatisticsApi'></a>
NhlStatisticsApi type
Namespace
Nhl.Api
Summary
The official unofficial NHL Statistics API providing various NHL information about in-depth player statistics, team statistics and more
<a name='M-Nhl-Api-NhlStatisticsApi-#ctor'></a>
#ctor() constructor
Summary
The official unofficial NHL Statistics API providing various NHL information about in-depth player statistics, team statistics and more
Parameters
This constructor has no parameters.
<a name='M-Nhl-Api-NhlStatisticsApi-GetAllPlayersStatisticValuesBySeasonAsync-System-String,System-Nullable{Nhl-Api-Enumerations-Game-GameType},System-Threading-CancellationToken-'></a>
GetAllPlayersStatisticValuesBySeasonAsync(seasonYear,gameType,cancellationToken) method
Summary
Returns the all the NHL players game center statistics for the entire NHL league for a specific season and game type
Returns
Returns the all the NHL player statistics for all of a players for a specific season
Parameters
Name | Type | Description |
---|---|---|
seasonYear | System.String | The NHL season year to retrieve the team statistics, see SeasonYear for more information on valid season years |
gameType | System.Nullable{Nhl.Api.Enumerations.Game.GameType} | The NHL game type to retrieve the team statistics, see GameType for more information on valid game types |
cancellationToken | System.Threading.CancellationToken | A cancellation token to cancel the asynchronous operation |
<a name='M-Nhl-Api-NhlStatisticsApi-GetAllTotalPlayerStatisticValuesBySeasonAsync-Nhl-Api-Models-Enumerations-Player-PlayerEnum,System-String,System-Nullable{Nhl-Api-Enumerations-Game-GameType},System-Threading-CancellationToken-'></a>
GetAllTotalPlayerStatisticValuesBySeasonAsync(playerEnum,seasonYear,gameType,cancellationToken) method
Summary
Returns the all the NHL player game center statistics for a specific player for a specific season and game type
Returns
Returns the number of total number of a player statistics for a player for a specific season
Parameters
Name | Type | Description |
---|---|---|
playerEnum | Nhl.Api.Models.Enumerations.Player.PlayerEnum | The player enumeration identifier, specifying which the NHL player, PlayerEnum for more information |
seasonYear | System.String | The NHL season year to retrieve the team statistics, see SeasonYear for more information on valid season years |
gameType | System.Nullable{Nhl.Api.Enumerations.Game.GameType} | The NHL game type to retrieve the team statistics, see GameType for more information on valid game types |
cancellationToken | System.Threading.CancellationToken | A cancellation token that can be used by other objects or threads to receive notice of cancellation |
<a name='M-Nhl-Api-NhlStatisticsApi-GetAllTotalPlayerStatisticValuesBySeasonAsync-System-Int32,System-String,System-Nullable{Nhl-Api-Enumerations-Game-GameType},System-Threading-CancellationToken-'></a>
GetAllTotalPlayerStatisticValuesBySeasonAsync(playerId,seasonYear,gameType,cancellationToken) method
Summary
Returns the all the NHL player game center statistics for a specific player for a specific season and game type
Returns
Returns the number of total number of a player statistics for a player for a specific season
Parameters
Name | Type | Description |
---|---|---|
playerId | System.Int32 | The NHL player identifier, specifying which the NHL player, Example: 8478402 - Connor McDavid |
seasonYear | System.String | The NHL season year to retrieve the team statistics, see SeasonYear for more information on valid season years |
gameType | System.Nullable{Nhl.Api.Enumerations.Game.GameType} | The NHL game type to retrieve the team statistics, see GameType for more information on valid game types |
cancellationToken | System.Threading.CancellationToken | A cancellation token to cancel the asynchronous operation |
<a name='M-Nhl-Api-NhlStatisticsApi-GetGoalieStatisticsBySeasonAndFilterExpressionAsync-System-String,Nhl-Api-Models-Player-ExpressionGoalieFilter,Nhl-Api-Models-Player-GoalieStatisticsFilter,System-Int32,System-Int32,Nhl-Api-Enumerations-Game-GameType,System-Threading-CancellationToken-'></a>
GetGoalieStatisticsBySeasonAndFilterExpressionAsync(seasonYear,expressionGoalieFilter,goalieStatisticsFilterToSortBy,limit,offsetStart,gameType,cancellationToken) method
Summary
Returns all the NHL goalie statistics for a specific player for a specific season including face off percentage, points per game, overtime goals, short handed points , power play points, shooting percentage, shots, time on ice per game and more
Returns
Returns all the NHL goalie statistics for a specific goalie for a specific season including face off percentage, points per game, overtime goals, short handed points , power play points, shooting percentage, shots, time on ice per game and more
Parameters
Name | Type | Description |
---|---|---|
seasonYear | System.String | The NHL season year to retrieve the team statistics, see SeasonYear for more information on valid season years |
expressionGoalieFilter | Nhl.Api.Models.Player.ExpressionGoalieFilter | The expression goalie filter to filter the goalie statistics by, see GoalieFilterExpressionBuilder for more information on valid goalie filters |
goalieStatisticsFilterToSortBy | Nhl.Api.Models.Player.GoalieStatisticsFilter | The goalie statistics filter to sort the goalie statistics by, see GoalieStatisticsFilter for more information on valid goalie statistics filters |
limit | System.Int32 | The limit to the number of results returned when reviewing the NHL player statistics, by default -1 represents no limit applied to results |
offsetStart | System.Int32 | The offset to start the results from when reviewing the NHL goalie statistics |
gameType | Nhl.Api.Enumerations.Game.GameType | The game type for the NHL season for the player statistics |
cancellationToken | System.Threading.CancellationToken | A cancellation token to cancel the asynchronous operation |
<a name='M-Nhl-Api-NhlStatisticsApi-GetGoalieStatisticsLeadersAsync-Nhl-Api-Enumerations-Statistic-GoalieStatisticsType,Nhl-Api-Enumerations-Game-GameType,System-String,System-Int32,System-Threading-CancellationToken-'></a>
GetGoalieStatisticsLeadersAsync(goalieStatisticsType,seasonYear,gameType,limit,cancellationToken) method
Summary
Returns the NHL goalie statistics leaders in the NHL for a specific goalie statistic type based on the game type and season year
Returns
Returns the current NHL player statistics leaders in the NHL for a specific player statistic type
Parameters
Name | Type | Description |
---|---|---|
goalieStatisticsType | Nhl.Api.Enumerations.Statistic.GoalieStatisticsType | A player statistics type, GoalieStatisticsType for all the types of statistics |
seasonYear | Nhl.Api.Enumerations.Game.GameType | The NHL season year to retrieve the player statistics leaders for, see SeasonYear for more information on valid season years |
gameType | System.String | The NHL game type to retrieve the player statistics leaders for, see GameType for more information on valid game types |
limit | System.Int32 | The limit to the number of results returned when reviewing the NHL player statistics |
cancellationToken | System.Threading.CancellationToken | A cancellation token that can be used by other objects or threads to receive notice of cancellation |
<a name='M-Nhl-Api-NhlStatisticsApi-GetPlayerStatisticsBySeasonAndFilterExpressionAsync-System-String,Nhl-Api-Models-Player-ExpressionPlayerFilter,Nhl-Api-Models-Player-PlayerStatisticsFilter,System-Int32,System-Int32,Nhl-Api-Enumerations-Game-GameType,System-Threading-CancellationToken-'></a>
GetPlayerStatisticsBySeasonAndFilterExpressionAsync(seasonYear,expressionPlayerFilter,playerStatisticsFilterToSortBy,limit,offsetStart,gameType,cancellationToken) method
Summary
Returns all the NHL player game center statistics for a specific player for a specific season including face off percentage, points per game, overtime goals, short handed points , power play points, shooting percentage, shots, time on ice per game and more
Returns
Returns all the NHL player game center statistics for a specific player for a specific season including face off percentage, points per game, overtime goals, short handed points , power play points, shooting percentage, shots, time on ice per game and more
Parameters
Name | Type | Description |
---|---|---|
seasonYear | System.String | The NHL season year to retrieve the team statistics, see SeasonYear for more information on valid season years |
expressionPlayerFilter | Nhl.Api.Models.Player.ExpressionPlayerFilter | The expression player filter to filter the player statistics by, see PlayerFilterExpressionBuilder for more information on valid player filters |
playerStatisticsFilterToSortBy | Nhl.Api.Models.Player.PlayerStatisticsFilter | The player statistics filter to sort the player statistics by, see PlayerStatisticsFilter for more information on valid player statistics filters |
limit | System.Int32 | The limit to the number of results returned when reviewing the NHL player statistics, by default -1 represents no limit applied to results |
offsetStart | System.Int32 | The offset to start the results from when reviewing the NHL player statistics |
gameType | Nhl.Api.Enumerations.Game.GameType | The game type for the NHL season for the player statistics |
cancellationToken | System.Threading.CancellationToken | A cancellation token to cancel the asynchronous operation |
<a name='M-Nhl-Api-NhlStatisticsApi-GetRealtimePlayerStatisticsBySeasonAndFilterExpressionAsync-System-String,Nhl-Api-Models-Player-ExpressionPlayerFilter,Nhl-Api-Models-Player-PlayerRealtimeStatisticsFilter,System-Int32,System-Int32,Nhl-Api-Enumerations-Game-GameType,System-Threading-CancellationToken-'></a>
GetRealtimePlayerStatisticsBySeasonAndFilterExpressionAsync(seasonYear,expressionPlayerFilter,playerRealtimeStatisticsFilterToSortBy,limit,offsetStart,gameType,cancellationToken) method
Summary
Returns all the NHL real time player game center statistics for a specific player for a specific season including face off percentage, points per game, overtime goals, short handed points, power play points, shooting percentage, shots, time on ice per game and more
Returns
Returns all the NHL player game center statistics for a specific player for a specific season including face off percentage, points per game, overtime goals, short handed points , power play points, shooting percentage, shots, time on ice per game and more
Parameters
Name | Type | Description |
---|---|---|
seasonYear | System.String | The NHL season year to retrieve the team statistics, see SeasonYear for more information on valid season years |
expressionPlayerFilter | Nhl.Api.Models.Player.ExpressionPlayerFilter | The expression player filter to filter the player statistics by, see PlayerFilterExpressionBuilder for more information on valid player filters |
playerRealtimeStatisticsFilterToSortBy | Nhl.Api.Models.Player.PlayerRealtimeStatisticsFilter | The player statistics filter to sort the player statistics by, see PlayerRealtimeStatisticsFilter for more information on valid player statistics filters |
limit | System.Int32 | The limit to the number of results returned when reviewing the NHL player statistics, by default -1 represents no limit applied to results |
offsetStart | System.Int32 | The offset to start the results from when reviewing the NHL player statistics |
gameType | Nhl.Api.Enumerations.Game.GameType | The game type for the NHL season for the player statistics |
cancellationToken | System.Threading.CancellationToken | A cancellation token to cancel the asynchronous operation |
<a name='M-Nhl-Api-NhlStatisticsApi-GetSkaterStatisticsLeadersAsync-Nhl-Api-Enumerations-Statistic-PlayerStatisticsType,Nhl-Api-Enumerations-Game-GameType,System-String,System-Int32,System-Threading-CancellationToken-'></a>
GetSkaterStatisticsLeadersAsync(playerStatisticsType,seasonYear,gameType,limit,cancellationToken) method
Summary
Returns the current NHL player statistics leaders in the NHL for a specific player statistic type
Returns
Returns the current NHL player statistics leaders in the NHL for a specific player statistic type
Parameters
Name | Type | Description |
---|---|---|
playerStatisticsType | Nhl.Api.Enumerations.Statistic.PlayerStatisticsType | A player statistics type, PlayerStatisticsType for all the types of statistics |
seasonYear | Nhl.Api.Enumerations.Game.GameType | The NHL season year to retrieve the player statistics leaders for, see SeasonYear for more information on valid season years |
gameType | System.String | The NHL game type to retrieve the player statistics leaders for, see GameType for more information on valid game types |
limit | System.Int32 | The limit to the number of results returned when reviewing the NHL player statistics |
cancellationToken | System.Threading.CancellationToken | A cancellation token that can be used by other objects or threads to receive notice of cancellation |
<a name='M-Nhl-Api-NhlStatisticsApi-GetTeamStatisticsBySeasonAndGameTypeAsync-Nhl-Api-Models-Enumerations-Team-TeamEnum,System-String,Nhl-Api-Enumerations-Game-GameType,System-Threading-CancellationToken-'></a>
GetTeamStatisticsBySeasonAndGameTypeAsync(team,seasonYear,gameType,cancellationToken) method
Summary
Returns the NHL team statistics for individual players for a specific NHL team statistic type based on the game type and season year
Returns
The NHL team season statistics for the specified season and game type
Parameters
Name | Type | Description |
---|---|---|
team | Nhl.Api.Models.Enumerations.Team.TeamEnum | The team enumeration identifier, specifying which the NHL team, TeamEnum for more information |
seasonYear | System.String | The NHL season year to retrieve the team statistics, see SeasonYear for more information on valid season years |
gameType | Nhl.Api.Enumerations.Game.GameType | The NHL game type to retrieve the team statistics, see GameType for more information on valid game types |
cancellationToken | System.Threading.CancellationToken | A cancellation token that can be used by other objects or threads to receive notice of cancellation |
<a name='M-Nhl-Api-NhlStatisticsApi-GetTeamStatisticsBySeasonAndGameTypeAsync-System-Int32,System-String,Nhl-Api-Enumerations-Game-GameType,System-Threading-CancellationToken-'></a>
GetTeamStatisticsBySeasonAndGameTypeAsync(teamId,seasonYear,gameType,cancellationToken) method
Summary
Returns the NHL team statistics for individual players for a specific NHL team statistic type based on the game type and season year
Returns
The NHL team season statistics for the specified season and game type
Parameters
Name | Type | Description |
---|---|---|
teamId | System.Int32 | The NHL team identifier, specifying which the NHL team, Example: 55 - Seattle Kraken |
seasonYear | System.String | The NHL season year to retrieve the team statistics, see SeasonYear for more information on valid season years |
gameType | Nhl.Api.Enumerations.Game.GameType | The NHL game type to retrieve the team statistics, see GameType for more information on valid game types |
cancellationToken | System.Threading.CancellationToken | A cancellation token that can be used by other objects or threads to receive notice of cancellation |
<a name='M-Nhl-Api-NhlStatisticsApi-GetTeamStatisticsBySeasonAsync-Nhl-Api-Models-Enumerations-Team-TeamEnum,System-Threading-CancellationToken-'></a>
GetTeamStatisticsBySeasonAsync(team,cancellationToken) method
Summary
Returns all the NHL team valid game types for all valid NHL seasons for the selected NHL team
Returns
Returns all the NHL team valid game types for all valid NHL seasons for the selected NHL team
Parameters
Name | Type | Description |
---|---|---|
team | Nhl.Api.Models.Enumerations.Team.TeamEnum | The team enumeration identifier, specifying which the NHL team, TeamEnum for more information |
cancellationToken | System.Threading.CancellationToken | A cancellation token that can be used by other objects or threads to receive notice of cancellation |
<a name='M-Nhl-Api-NhlStatisticsApi-GetTeamStatisticsBySeasonAsync-System-Int32,System-Threading-CancellationToken-'></a>
GetTeamStatisticsBySeasonAsync(teamId,cancellationToken) method
Summary
Returns all the NHL team valid game types for all valid NHL seasons for the selected NHL team
Returns
Returns all the NHL team valid game types for all valid NHL seasons for the selected NHL team
Parameters
Name | Type | Description |
---|---|---|
teamId | System.Int32 | The NHL team identifier, specifying which the NHL team, Example: 55 - Seattle Kraken |
cancellationToken | System.Threading.CancellationToken | A cancellation token that can be used by other objects or threads to receive notice of cancellation |
<a name='M-Nhl-Api-NhlStatisticsApi-GetTimeOnIcePlayerStatisticsBySeasonAndFilterExpressionAsync-System-String,Nhl-Api-Models-Player-ExpressionPlayerFilter,Nhl-Api-Models-Player-PlayerTimeOnIceStatisticsFilter,System-Int32,System-Int32,Nhl-Api-Enumerations-Game-GameType,System-Threading-CancellationToken-'></a>
GetTimeOnIcePlayerStatisticsBySeasonAndFilterExpressionAsync(seasonYear,expressionPlayerFilter,playerTimeOnIceStatisticsFilterToSortBy,limit,offsetStart,gameType,cancellationToken) method
Summary
Returns all the NHL time on ice player game center statistics for a specific player for a specific season including even time on ice, overtime time on ice, over time on ice per over time game time on ice per game and more
Returns
Returns all the NHL player game center statistics for a specific player for a specific season including face off percentage, points per game, overtime goals, short handed points , power play points, shooting percentage, shots, time on ice per game and more
Parameters
Name | Type | Description |
---|---|---|
seasonYear | System.String | The NHL season year to retrieve the team statistics, see SeasonYear for more information on valid season years |
expressionPlayerFilter | Nhl.Api.Models.Player.ExpressionPlayerFilter | The expression player filter to filter the player statistics by, see PlayerFilterExpressionBuilder for more information on valid player filters |
playerTimeOnIceStatisticsFilterToSortBy | Nhl.Api.Models.Player.PlayerTimeOnIceStatisticsFilter | The player statistics filter to sort the player statistics by, see PlayerTimeOnIceStatisticsFilter for more information on valid player statistics filters |
limit | System.Int32 | The limit to the number of results returned when reviewing the NHL player statistics, by default -1 represents no limit applied to results |
offsetStart | System.Int32 | The offset to start the results from when reviewing the NHL player statistics |
gameType | Nhl.Api.Enumerations.Game.GameType | The game type for the NHL season for the player statistics |
cancellationToken | System.Threading.CancellationToken | A cancellation token to cancel the asynchronous operation |
<a name='M-Nhl-Api-NhlStatisticsApi-GetTotalPlayerStatisticValueByTypeAndSeasonAsync-Nhl-Api-Models-Enumerations-Player-PlayerEnum,Nhl-Api-Enumerations-Statistic-PlayerGameCenterStatistic,System-String,System-Nullable{Nhl-Api-Enumerations-Game-GameType},System-Threading-CancellationToken-'></a>
GetTotalPlayerStatisticValueByTypeAndSeasonAsync(playerEnum,playerGameCenterStatistic,seasonYear,gameType,cancellationToken) method
Summary
Returns the number of total number of a player statistics for a player for a specific season
Returns
Returns the number of total number of a player statistics for a player for a specific season
Parameters
Name | Type | Description |
---|---|---|
playerEnum | Nhl.Api.Models.Enumerations.Player.PlayerEnum | The player enumeration identifier, specifying which the NHL player, PlayerEnum for more information |
playerGameCenterStatistic | Nhl.Api.Enumerations.Statistic.PlayerGameCenterStatistic | The NHL player game center statistic type, PlayerGameCenterStatistic for more information on valid game center statistics |
seasonYear | System.String | The NHL season year to retrieve the team statistics, see SeasonYear for more information on valid season years |
gameType | System.Nullable{Nhl.Api.Enumerations.Game.GameType} | The NHL game type to retrieve the team statistics, see GameType for more information on valid game types |
cancellationToken | System.Threading.CancellationToken | A cancellation token that can be used by other objects or threads to receive notice of cancellation |
<a name='M-Nhl-Api-NhlStatisticsApi-GetTotalPlayerStatisticValueByTypeAndSeasonAsync-System-Int32,Nhl-Api-Enumerations-Statistic-PlayerGameCenterStatistic,System-String,System-Nullable{Nhl-Api-Enumerations-Game-GameType},System-Threading-CancellationToken-'></a>
GetTotalPlayerStatisticValueByTypeAndSeasonAsync(playerId,playerGameCenterStatistic,seasonYear,gameType,cancellationToken) method
Summary
Returns the number of total number of a player statistics for a player for a specific season
Returns
Returns the number of total number of a player statistics for a player for a specific season
Parameters
Name | Type | Description |
---|---|---|
playerId | System.Int32 | The NHL player identifier, specifying which the NHL player, Example: 8478402 - Connor McDavid |
playerGameCenterStatistic | Nhl.Api.Enumerations.Statistic.PlayerGameCenterStatistic | The NHL player game center statistic type, PlayerGameCenterStatistic for more information on valid game center statistics |
seasonYear | System.String | The NHL season year to retrieve the team statistics, see SeasonYear for more information on valid season years |
gameType | System.Nullable{Nhl.Api.Enumerations.Game.GameType} | The NHL game type to retrieve the team statistics, see GameType for more information on valid game types |
cancellationToken | System.Threading.CancellationToken | A cancellation token to cancel the asynchronous operation |
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
-
net8.0
- Newtonsoft.Json (>= 13.0.1)
NuGet packages (1)
Showing the top 1 NuGet packages that depend on Nhl.Api:
Package | Downloads |
---|---|
Nhl.Api.Extensions.Microsoft.DependencyInjection
The Microsoft .NET dependency injection library extension for the official unofficial .NET NHL API |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated | |
---|---|---|---|
3.6.0 | 158 | 11/5/2024 | |
3.5.0 | 503 | 9/30/2024 | |
3.4.2 | 477 | 8/9/2024 | |
3.4.1 | 203 | 3/28/2024 | |
3.4.0 | 166 | 3/8/2024 | |
3.3.0 | 259 | 2/24/2024 | |
3.2.2 | 162 | 1/30/2024 | |
3.2.1 | 128 | 1/30/2024 | |
3.2.0 | 152 | 1/24/2024 | |
3.1.0 | 208 | 1/5/2024 | |
3.0.0 | 202 | 12/31/2023 | |
2.2.1 | 2,655 | 10/9/2023 | |
2.2.0 | 5,180 | 9/1/2023 | |
2.1.0 | 13,410 | 10/18/2022 | |
2.0.0 | 1,812 | 7/28/2022 | |
1.9.2 | 706 | 3/17/2022 | |
1.9.1 | 697 | 2/20/2022 | |
1.9.0 | 735 | 1/28/2022 | |
1.8.0 | 391 | 12/30/2021 | |
1.7.0 | 415 | 12/21/2021 | |
1.6.1 | 461 | 12/12/2021 | |
1.6.0 | 621 | 12/11/2021 | |
1.5.1 | 2,036 | 11/26/2021 | |
1.5.0 | 1,925 | 11/26/2021 | |
1.4.0 | 1,242 | 11/15/2021 | |
1.3.0 | 532 | 10/28/2021 | |
1.2.0 | 328 | 10/14/2021 | |
1.1.3 | 355 | 10/8/2021 | |
1.1.2 | 346 | 10/8/2021 | |
1.1.1 | 315 | 10/8/2021 | |
1.1.0 | 349 | 10/8/2021 | |
1.0.2 | 338 | 9/30/2021 | |
1.0.1 | 353 | 9/30/2021 | |
1.0.0 | 424 | 9/30/2021 |