From 7a6c2ead51c1820381a90631251e7450a810437a Mon Sep 17 00:00:00 2001 From: Philip Bulsink Date: Wed, 6 Mar 2019 03:25:35 +0000 Subject: [PATCH] Update stats with venues endpoint, fix typo in records --- records-api.md | 2 +- stats-api.md | 20 ++++++++++++++++++++ 2 files changed, 21 insertions(+), 1 deletion(-) diff --git a/records-api.md b/records-api.md index 3e729ab..a6c56be 100644 --- a/records-api.md +++ b/records-api.md @@ -65,7 +65,7 @@ and lastSeasonId and name of every team in the history of the nhl `/franchise-team-totals` Total stats for every franchise (ex roadTies, roadWins, etc) -`/site/api/franchise-season-records?cayenneExp=franchiseId=ID` Drill-down into season records for a specific franhise +`/site/api/franchise-season-records?cayenneExp=franchiseId=ID` Drill-down into season records for a specific franchise `/franchise-season-results?cayenneExp=franchiseId=24&sort=seasonId&dir=DESC` Returns every season result for a specified team, sorted by seasonId in descending order diff --git a/stats-api.md b/stats-api.md index 1ddf92a..849c030 100644 --- a/stats-api.md +++ b/stats-api.md @@ -29,6 +29,8 @@ [Awards](#awards) +[Venues](#venues) + --- ### Teams @@ -1149,3 +1151,21 @@ Ex: }] } ``` + +### Venues + +`GET https://statsapi.web.nhl.com/api/v1/venues` Get all NHL Venues in API database. + +`GET https://statsapi.web.nhl.com/api/v1/venues/ID` Get an NHL Venue. + +```json +{ + "copyright" : "NHL and the NHL Shield are registered trademarks of the National Hockey League. NHL and NHL team marks are the property of the NHL and its teams. © NHL 2019. All Rights Reserved.", + "venues" : [ { + "id" : 5064, + "name" : "Pepsi Center", + "link" : "/api/v1/venues/5064", + "appEnabled" : true + } ] +} +```