StandingsService
A list of all methods in the StandingsService
service. Click on the method name to view detailed information about that method.
Methods | Description |
---|---|
GetCurrentStandingsAsync | Retrieve the standings as of the current moment. |
GetStandingsByDateAsync | Retrieve the standings for a specific date. |
GetStandingsSeasonAsync | Retrieves 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
Name | Type | Required | Description |
---|---|---|---|
date | string | ✅ | Date 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