Skip to main content

GoalieStatsService

A list of all methods in the GoalieStatsService service. Click on the method name to view detailed information about that method.

MethodsDescription
GetCurrentGoalieStatsLeadersAsyncRetrieve current goalie stats leaders.
GetGoalieStatsLeadersAsyncRetrieve goalie stats leaders for a specific season and game type.

GetCurrentGoalieStatsLeadersAsync

Retrieve current goalie stats leaders.

  • HTTP Method: GET
  • Endpoint: /v1/goalie-stats-leaders/current

Parameters

NameTypeRequiredDescription
categoriesstringCategories to filter by
limitlongLimit results (Note: a limit of -1 will return all results)

Return Type

object

Example Usage Code Snippet

using NhlClient;

var client = new NhlClientClient();

var response = await client.GoalieStats.GetCurrentGoalieStatsLeadersAsync("categories", 2);

Console.WriteLine(response);

GetGoalieStatsLeadersAsync

Retrieve goalie stats leaders for a specific season and game type.

  • HTTP Method: GET
  • Endpoint: /v1/goalie-stats-leaders/{season}/{game-type}

Parameters

NameTypeRequiredDescription
seasonlongSeason in YYYYYYYY format
gameTypelongGame type (2 for regular season, 3 for playoffs)
categoriesstringCategories to filter by
limitlongLimit results (Note: a limit of -1 will return all results)

Return Type

object

Example Usage Code Snippet

using NhlClient;

var client = new NhlClientClient();

var response = await client.GoalieStats.GetGoalieStatsLeadersAsync(8, 1, "categories", 3);

Console.WriteLine(response);

Build Your Own SDKs with  liblab

Build developer friendly SDKs in minutes from your APIs

Start for Free →