NHL API – All-Star & Outdoor Game Flags
August 17th, 2026
We've added boolean flags for NHL All-Star games and games played at outdoor venues in our NHL API.
Find these new attributes under the game element in all relevant Schedule and Game endpoints.
is_all_star_game–truewhen the game is an All-Star Gameis_outdoors–truewhen the game is played at an outdoor venue
Both flags may be present on a game and default to false, so a standard indoor, non-All-Star game returns false for each.
⭐ Benefit
Identify All-Star and outdoor games directly from the schedule, so you can label or filter these special events in your product without maintaining your own list.
📋 Recommended Actions
- Read the
is_all_star_gameandis_outdoorsflags from thegameelement in the Schedule and Game endpoints. - Use the flags to label or filter special events in your schedules and game views, rather than maintaining your own list of All-Star or outdoor games.
- Treat both as standard booleans — expect
falsefor typical indoor, non-All-Star games.
☑️ Sample Requests:
Game Summary (Outdoor Game)
curl --request GET \
--url https://api.sportradar.com/nhl/trial/v7/en/games/6c5d2c0f-a18f-43cd-9c9c-df9d3288dfd0/summary.json \
--header 'accept: application/json' \
--header 'x-api-key: YOUR_API_KEY'Schedule (2026 Regular Season)
curl --request GET \
--url https://api.sportradar.com/nhl/trial/v7/en/games/2026/REG/schedule.json \
--header 'accept: application/json' \
--header 'x-api-key: YOUR_API_KEY'🔢 Products
| Sport | Product | Version(s) |
|---|---|---|
| Ice Hockey | NHL API | v7 |
🔁 Endpoints Affected
Game
- Game Analytics
- Game Boxscore
- Game Faceoffs
- Game Play-by-Play
- Game Shot Zones
- Game Summary
- Game Time on Ice
Schedule
- Daily Schedule
- Schedule
- Series Schedule
Push
- Push Clock
- Push Events
- Push Statistics
⚙️ Return Samples
<game id="6c5d2c0f-a18f-43cd-9c9c-df9d3288dfd0" status="scheduled" coverage="full" scheduled="2026-10-25T23:00:00+00:00" sr_id="sr:match:72909210" reference="20182" is_outdoors="true" is_all_star_game="false" home_team="44180e55-0f24-11e2-8525-18a905767e44" away_team="441713b7-0f24-11e2-8525-18a905767e44">
<venue id="4d51a3b3-9057-49dd-bb0e-afa82d065532" name="Princess Auto Stadium" capacity="33500" address="315 Chancellor Matheson Road" city="Winnipeg" state="MB" zip="R3T 1Z2" country="CAN" time_zone="US/Central" sr_id="sr:venue:16376">
<location lat="49.80776" lng="-97.14289"/>
</venue>
<season id="7feada34-0b0d-44f2-8d0d-cb9d2ce14a2e" year="2026" type="REG"/>
<time_zones venue="US/Central" home="US/Central" away="US/Eastern"/>
<home id="44180e55-0f24-11e2-8525-18a905767e44" name="Winnipeg Jets" alias="WPG" sr_id="sr:team:3676" reference="52">
</home>
<away id="441713b7-0f24-11e2-8525-18a905767e44" name="Montreal Canadiens" alias="MTL" sr_id="sr:team:3690" reference="8">
</away>
</game>{
"id": "6c5d2c0f-a18f-43cd-9c9c-df9d3288dfd0",
"status": "scheduled",
"coverage": "full",
"scheduled": "2026-10-25T23:00:00+00:00",
"sr_id": "sr:match:72909210",
"reference": "20182",
"is_outdoors": true,
"is_all_star_game": false,
"season": {
"id": "7feada34-0b0d-44f2-8d0d-cb9d2ce14a2e",
"year": 2026,
"type": "REG"
},