Update stats with venues endpoint, fix typo in records

This commit is contained in:
Philip Bulsink
2019-03-06 03:25:35 +00:00
committed by Drew Hynes
parent 042eaa5956
commit 7a6c2ead51
2 changed files with 21 additions and 1 deletions

View File

@@ -29,6 +29,8 @@
[Awards](#awards)
[Venues](#venues)
---
### <a name="teams"></a>Teams
@@ -1149,3 +1151,21 @@ Ex:
}]
}
```
### <a name="venues">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
} ]
}
```