cURL
curl --request GET \ --url https://v1.hockey.sportsapipro.com/standings \ --header 'x-api-key: <api-key>'
{ "standings": [ { "competitor": { "id": 123, "name": "<string>", "score": 123, "imageUrl": "<string>" }, "position": 123, "points": 123, "played": 123, "wins": 123, "losses": 123 } ] }
Get standings for hockey leagues and conferences
# NHL Standings (Competition ID: 55) curl -X GET "https://v1.hockey.sportsapipro.com/standings?competitions=55" \ -H "x-api-key: YOUR_API_KEY"
seasonNum
Your SportsAPI Pro API key
Competition ID (e.g., 55 for NHL)
55
Season number for historical standings
Standings retrieved successfully
Show child attributes
Was this page helpful?