Skip to main content

StandingsService

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

MethodsDescription
GetCurrentStandingsAsyncRetrieve the standings as of the current moment.
GetStandingsByDateAsyncRetrieve the standings for a specific date.
GetStandingsSeasonAsyncRetrieves information for each season's standings.

GetCurrentStandingsAsync

Retrieve the standings as of the current moment.

  • HTTP Method: GET
  • Endpoint: /v1/standings/now

Return Type

object

Example Usage Code Snippet

using NhlClient;

var client = new NhlClientClient();

var response = await client.Standings.GetCurrentStandingsAsync();

Console.WriteLine(response);

GetStandingsByDateAsync

Retrieve the standings for a specific date.

  • HTTP Method: GET
  • Endpoint: /v1/standings/{date}

Parameters

NameTypeRequiredDescription
datestringDate in YYYY-MM-DD format

Return Type

object

Example Usage Code Snippet

using NhlClient;

var client = new NhlClientClient();

var response = await client.Standings.GetStandingsByDateAsync("date");

Console.WriteLine(response);

GetStandingsSeasonAsync

Retrieves information for each season's standings.

  • HTTP Method: GET
  • Endpoint: /v1/standings-season

Return Type

object

Example Usage Code Snippet

using NhlClient;

var client = new NhlClientClient();

var response = await client.Standings.GetStandingsSeasonAsync();

Console.WriteLine(response);

Build Your Own SDKs with  liblab

Build developer friendly SDKs in minutes from your APIs

Start for Free →