Skip to content

Instantly share code, notes, and snippets.

@zouhair
Created January 9, 2018 23:35
Show Gist options
  • Save zouhair/a2ccb548af24c8eef04603360faad8cc to your computer and use it in GitHub Desktop.
Save zouhair/a2ccb548af24c8eef04603360faad8cc to your computer and use it in GitHub Desktop.
> $mtl_roster_json = Invoke-WebRequest -Uri "https://statsapi.web.nhl.com/api/v1/teams/8?expand=team.roster"
> $mtl_roster = ConvertFrom-Json -InputObject $mtl_roster_json
> $mtl_roster.teams.roster.roster
person jerseyNumber position
------ ------------ --------
@{id=8469466; fullName=Ales Hemsky; link=/api/v1/people/8469466} 83 @{code=R; name=Right Wing; type=Forward; abbreviation=RW}
@{id=8470642; fullName=Shea Weber; link=/api/v1/people/8470642} 6 @{code=D; name=Defenseman; type=Defenseman; abbreviation=D}
@{id=8469521; fullName=Tomas Plekanec; link=/api/v1/people/8469521} 14 @{code=C; name=Center; type=Forward; abbreviation=C}
@{id=8471679; fullName=Carey Price; link=/api/v1/people/8471679} 31 @{code=G; name=Goalie; type=Goalie; abbreviation=G}
@{id=8473507; fullName=Jeff Petry; link=/api/v1/people/8473507} 26 @{code=D; name=Defenseman; type=Defenseman; abbreviation=D}
@{id=8473673; fullName=David Schlemko; link=/api/v1/people/8473673} 21 @{code=D; name=Defenseman; type=Defenseman; abbreviation=D}
@{id=8473991; fullName=Karl Alzner; link=/api/v1/people/8473991} 22 @{code=D; name=Defenseman; type=Defenseman; abbreviation=D}
@{id=8474038; fullName=Paul Byron; link=/api/v1/people/8474038} 41 @{code=L; name=Left Wing; type=Forward; abbreviation=LW}
@{id=8474157; fullName=Max Pacioretty; link=/api/v1/people/8474157} 67 @{code=L; name=Left Wing; type=Forward; abbreviation=LW}
@{id=8474550; fullName=Antti Niemi; link=/api/v1/people/8474550} 37 @{code=G; name=Goalie; type=Goalie; abbreviation=G}
@{id=8474818; fullName=Jordie Benn; link=/api/v1/people/8474818} 8 @{code=D; name=Defenseman; type=Defenseman; abbreviation=D}
@{id=8475235; fullName=Nicolas Deslauriers; link=/api/v1/people/8475235} 20 @{code=L; name=Left Wing; type=Forward; abbreviation=LW}
@{id=8475278; fullName=Byron Froese; link=/api/v1/people/8475278} 42 @{code=C; name=Center; type=Forward; abbreviation=C}
@{id=8475848; fullName=Brendan Gallagher; link=/api/v1/people/8475848} 11 @{code=R; name=Right Wing; type=Forward; abbreviation=RW}
@{id=8476381; fullName=Andrew Shaw; link=/api/v1/people/8476381} 65 @{code=R; name=Right Wing; type=Forward; abbreviation=RW}
@{id=8476476; fullName=Joe Morrow; link=/api/v1/people/8476476} 45 @{code=D; name=Defenseman; type=Defenseman; abbreviation=D}
@{id=8476479; fullName=Phillip Danault; link=/api/v1/people/8476479} 24 @{code=C; name=Center; type=Forward; abbreviation=C}
@{id=8476851; fullName=Alex Galchenyuk; link=/api/v1/people/8476851} 27 @{code=L; name=Left Wing; type=Forward; abbreviation=LW}
@{id=8476948; fullName=Charles Hudon; link=/api/v1/people/8476948} 54 @{code=L; name=Left Wing; type=Forward; abbreviation=LW}
@{id=8477455; fullName=Jacob de la Rose; link=/api/v1/people/8477455} 25 @{code=L; name=Left Wing; type=Forward; abbreviation=LW}
@{id=8477476; fullName=Artturi Lehkonen; link=/api/v1/people/8477476} 62 @{code=L; name=Left Wing; type=Forward; abbreviation=LW}
@{id=8477494; fullName=Jonathan Drouin; link=/api/v1/people/8477494} 92 @{code=C; name=Center; type=Forward; abbreviation=C}
@{id=8477901; fullName=Daniel Carr; link=/api/v1/people/8477901} 43 @{code=L; name=Left Wing; type=Forward; abbreviation=LW}
@{id=8479376; fullName=Victor Mete; link=/api/v1/people/8479376} 53 @{code=D; name=Defenseman; type=Defenseman; abbreviation=D}
@{id=8480143; fullName=Jakub Jerabek; link=/api/v1/people/8480143} 28 @{code=D; name=Defenseman; type=Defenseman; abbreviation=D}
> $mtl_roster.teams.roster.roster | sort -Property jerseyNumber
person jerseyNumber position
------ ------------ --------
@{id=8475848; fullName=Brendan Gallagher; link=/api/v1/people/8475848} 11 @{code=R; name=Right Wing; type=Forward; abbreviation=RW}
@{id=8469521; fullName=Tomas Plekanec; link=/api/v1/people/8469521} 14 @{code=C; name=Center; type=Forward; abbreviation=C}
@{id=8475235; fullName=Nicolas Deslauriers; link=/api/v1/people/8475235} 20 @{code=L; name=Left Wing; type=Forward; abbreviation=LW}
@{id=8473673; fullName=David Schlemko; link=/api/v1/people/8473673} 21 @{code=D; name=Defenseman; type=Defenseman; abbreviation=D}
@{id=8473991; fullName=Karl Alzner; link=/api/v1/people/8473991} 22 @{code=D; name=Defenseman; type=Defenseman; abbreviation=D}
@{id=8476479; fullName=Phillip Danault; link=/api/v1/people/8476479} 24 @{code=C; name=Center; type=Forward; abbreviation=C}
@{id=8477455; fullName=Jacob de la Rose; link=/api/v1/people/8477455} 25 @{code=L; name=Left Wing; type=Forward; abbreviation=LW}
@{id=8473507; fullName=Jeff Petry; link=/api/v1/people/8473507} 26 @{code=D; name=Defenseman; type=Defenseman; abbreviation=D}
@{id=8476851; fullName=Alex Galchenyuk; link=/api/v1/people/8476851} 27 @{code=L; name=Left Wing; type=Forward; abbreviation=LW}
@{id=8480143; fullName=Jakub Jerabek; link=/api/v1/people/8480143} 28 @{code=D; name=Defenseman; type=Defenseman; abbreviation=D}
@{id=8471679; fullName=Carey Price; link=/api/v1/people/8471679} 31 @{code=G; name=Goalie; type=Goalie; abbreviation=G}
@{id=8474550; fullName=Antti Niemi; link=/api/v1/people/8474550} 37 @{code=G; name=Goalie; type=Goalie; abbreviation=G}
@{id=8474038; fullName=Paul Byron; link=/api/v1/people/8474038} 41 @{code=L; name=Left Wing; type=Forward; abbreviation=LW}
@{id=8475278; fullName=Byron Froese; link=/api/v1/people/8475278} 42 @{code=C; name=Center; type=Forward; abbreviation=C}
@{id=8477901; fullName=Daniel Carr; link=/api/v1/people/8477901} 43 @{code=L; name=Left Wing; type=Forward; abbreviation=LW}
@{id=8476476; fullName=Joe Morrow; link=/api/v1/people/8476476} 45 @{code=D; name=Defenseman; type=Defenseman; abbreviation=D}
@{id=8479376; fullName=Victor Mete; link=/api/v1/people/8479376} 53 @{code=D; name=Defenseman; type=Defenseman; abbreviation=D}
@{id=8476948; fullName=Charles Hudon; link=/api/v1/people/8476948} 54 @{code=L; name=Left Wing; type=Forward; abbreviation=LW}
@{id=8470642; fullName=Shea Weber; link=/api/v1/people/8470642} 6 @{code=D; name=Defenseman; type=Defenseman; abbreviation=D}
@{id=8477476; fullName=Artturi Lehkonen; link=/api/v1/people/8477476} 62 @{code=L; name=Left Wing; type=Forward; abbreviation=LW}
@{id=8476381; fullName=Andrew Shaw; link=/api/v1/people/8476381} 65 @{code=R; name=Right Wing; type=Forward; abbreviation=RW}
@{id=8474157; fullName=Max Pacioretty; link=/api/v1/people/8474157} 67 @{code=L; name=Left Wing; type=Forward; abbreviation=LW}
@{id=8474818; fullName=Jordie Benn; link=/api/v1/people/8474818} 8 @{code=D; name=Defenseman; type=Defenseman; abbreviation=D}
@{id=8469466; fullName=Ales Hemsky; link=/api/v1/people/8469466} 83 @{code=R; name=Right Wing; type=Forward; abbreviation=RW}
@{id=8477494; fullName=Jonathan Drouin; link=/api/v1/people/8477494} 92 @{code=C; name=Center; type=Forward; abbreviation=C}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment