Docs
Coverage MatrixDocumentationRelease LogLog InContact Us

Push Clock

NHL Push Clock provides a game clock feed with high level scoring and strength information, including the most recent game event.

Syntax

https://api.sportradar.com/nhl/{access_level}/stream/{language_code}/clock/subscribe?api_key={your_api_key}

Replace placeholders with the following query parameters:

ParameterDescription
access_levelDefines the access level of your API key as Production (production) or Trial (trial).
language_codeOptional code for supported languages: en (English) or translations (Any other language translations. See optional query string parameters for locale.)
your_api_keyYour API key.

Optional Query String Parameters

In addition to the URL parameters listed above, you can filter the Events information with one or more of the following optional query string parameters.

📘

Optional query string parameters must be added after your API key with an ampersand (&). If you are filtering for more than one result, separate the results with a comma (,) and no spaces.

Replace placeholders with the following query parameters:

ParameterDescription
localeLocale expressed as 2 letter code: locale={language_code}
Example: locale:en
matchMatch id expressed as: sd:match:{match_id}.
Example: match=sd:match:4d1c4eb9-69d4-46fc-a42b-12be98227964
statusStatus type expressed as: inprogress or created.
Example: status=inprogress

Code Samples

require 'uri'
require 'net/http'
require 'openssl'

url = URI("https://api.sportradar.us/nhl/trial/stream/en/clock/subscribe?api_key={your_api_key}")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
http.verify_mode = OpenSSL::SSL::VERIFY_NONE

request = Net::HTTP::Get.new(url)

response = http.request(request)
puts response.read_body
import requests
import json

r = requests.get("https://api.sportradar.com/nhl/trial/stream/en/clock/subscribe",
    params = {'api_key': 'your_api_key'},
    allow_redirects=False)

redirect_url = r.headers['Location']
r = requests.get(redirect_url, stream=True)

for line in r.iter_lines():
    # filter out keep-alive new lines
    if line:
        decoded_line = line.decode('utf-8')
        print(json.loads(decoded_line))
curl -L GET 'api.sportradar.us/nhl/trial/stream/en/clock/subscribe?api_key={your_api_key}'

Samples with Query String Params

require 'uri'
require 'net/http'
require 'openssl'

url = URI("https://api.sportradar.us/nhl/trial/stream/en/clock/subscribe?api_key={your_api_key}&status=inprogress&match=sd:match:4d1c4eb9-69d4-46fc-a42b-12be98227964")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
http.verify_mode = OpenSSL::SSL::VERIFY_NONE

request = Net::HTTP::Get.new(url)

response = http.request(request)
puts response.read_body
import requests
import json

r = requests.get("https://api.sportradar.com/nhl/trial/stream/en/clock/subscribe",
    params = {'api_key': 'your_api_key', 'status': 'inprogress', 'match': 'sd:match:4d1c4eb9-69d4-46fc-a42b-12be98227964'},
    allow_redirects=False)

redirect_url = r.headers['Location']
r = requests.get(redirect_url, stream=True)

for line in r.iter_lines():
    # filter out keep-alive new lines
    if line:
        decoded_line = line.decode('utf-8')
        print(json.loads(decoded_line))
curl -L GET 'api.sportradar.us/nhl/trial/stream/en/clock/subscribe?api_key={your_api_key}&status=inprogress&match=sd:match:4d1c4eb9-69d4-46fc-a42b-12be98227964'

Response Sample

{
   "payload":{
      "clocks":{
         "game":"01:40.000",
         "wall":"2023-10-31T00:38:09+00:00",
         "running":false,
         "game_decimal":"01:40.000"
      },
      "game":{
         "id":"4c2c22af-6755-42c8-adb5-0058da782d02",
         "status":"inprogress",
         "coverage":"full",
         "reference":"20132",
         "scheduled":"2023-10-30T23:00:00+00:00",
         "period":2,
         "sr_id":"sr:match:41971169",
         "home":{
            "name":"Penguins",
            "market":"Pittsburgh",
            "reference":"5",
            "id":"4417b7d7-0f24-11e2-8525-18a905767e44",
            "points":1,
            "sr_id":"sr:team:3697",
            "scoring":[
               {
                  "number":1,
                  "sequence":1,
                  "points":1,
                  "type":"period"
               },
               {
                  "number":2,
                  "sequence":2,
                  "points":0,
                  "type":"period"
               }
            ]
         },
         "away":{
            "name":"Ducks",
            "market":"Anaheim",
            "reference":"24",
            "id":"441862de-0f24-11e2-8525-18a905767e44",
            "points":2,
            "sr_id":"sr:team:3675",
            "scoring":[
               {
                  "number":1,
                  "sequence":1,
                  "points":1,
                  "type":"period"
               },
               {
                  "number":2,
                  "sequence":2,
                  "points":1,
                  "type":"period"
               }
            ]
         }
      },
      "event":{
         "id":"9e88e94a-07d7-47e6-b12f-f6972fc5db1d",
         "event_type":"substitution",
         "sequence":1698712595315,
         "clock":"1:40",
         "clock_decimal":"1:40",
         "official":true,
         "wall_clock":"2023-10-31T00:36:35Z",
         "updated":"2023-10-31T00:38:08Z",
         "description":"Ducks substitution (Frank Vatrano,Ryan Strome,Cam Fowler,Sam Carrick,Jackson LaCombe)",
         "attribution":{
            "name":"Ducks",
            "market":"Anaheim",
            "reference":"24",
            "id":"441862de-0f24-11e2-8525-18a905767e44",
            "team_goal":"left",
            "sr_id":"sr:team:3675"
         },
         "period":{
            "id":"372ab8ba-e48e-4026-b740-18371b445dea",
            "number":2,
            "sequence":2,
            "type":"Period"
         },
         "players":[
            {
               "full_name":"Sam Carrick",
               "jersey_number":"39",
               "reference":"8475842",
               "id":"e448f557-fb48-4816-ab7a-dd32b92f7d5c",
               "sr_id":"sr:player:608376"
            },
            {
               "full_name":"Jackson LaCombe",
               "jersey_number":"60",
               "reference":"8481605",
               "id":"7dc4b5ce-2ab4-499e-a117-2ee6685476a8",
               "sr_id":"sr:player:1770268"
            },
            {
               "full_name":"Ryan Strome",
               "jersey_number":"16",
               "reference":"8476458",
               "id":"4325c36b-0f24-11e2-8525-18a905767e44",
               "sr_id":"sr:player:185265"
            },
            {
               "full_name":"Cam Fowler",
               "jersey_number":"4",
               "reference":"8475764",
               "id":"4279f848-0f24-11e2-8525-18a905767e44",
               "sr_id":"sr:player:137878"
            },
            {
               "full_name":"Frank Vatrano",
               "jersey_number":"77",
               "reference":"8478366",
               "id":"20695dc0-765f-4208-b2c4-8bf1df4bf88a",
               "sr_id":"sr:player:865064"
            }
         ]
      }
   },
   "locale":"en",
   "metadata":{
      "league":"NHL",
      "match":"sd:match:4c2c22af-6755-42c8-adb5-0058da782d02,sr:match:41971169",
      "status":"inprogress",
      "locale":"en",
      "operation":"update",
      "version":"v5"
   }
}{
   "payload":{
      "clocks":{
         "game":"18:38.000",
         "wall":"2023-10-31T00:38:12+00:00",
         "running":true,
         "strength":"01:44",
         "game_decimal":"18:38.000"
      },
      "game":{
         "id":"b6a16ac2-4348-4139-9a21-1b99bb443dfa",
         "status":"inprogress",
         "coverage":"full",
         "reference":"20135",
         "scheduled":"2023-10-30T23:30:00+00:00",
         "period":2,
         "sr_id":"sr:match:41971173",
         "home":{
            "name":"Jets",
            "market":"Winnipeg",
            "reference":"52",
            "id":"44180e55-0f24-11e2-8525-18a905767e44",
            "points":1,
            "sr_id":"sr:team:3676",
            "scoring":[
               {
                  "number":1,
                  "sequence":1,
                  "points":1,
                  "type":"period"
               },
               {
                  "number":2,
                  "sequence":2,
                  "points":0,
                  "type":"period"
               }
            ]
         },
         "away":{
            "name":"Rangers",
            "market":"New York",
            "reference":"3",
            "id":"441781b9-0f24-11e2-8525-18a905767e44",
            "points":1,
            "sr_id":"sr:team:3701",
            "scoring":[
               {
                  "number":1,
                  "sequence":1,
                  "points":1,
                  "type":"period"
               },
               {
                  "number":2,
                  "sequence":2,
                  "points":0,
                  "type":"period"
               }
            ]
         }
      },
      "event":{
         "id":"21e80bc1-b45f-4dec-91fc-2d81c71bb371",
         "event_type":"faceoff",
         "zone":"neutral",
         "sequence":1698712687196,
         "clock":"18:43",
         "clock_decimal":"18:43",
         "official":true,
         "wall_clock":"2023-10-31T00:38:07Z",
         "updated":"2023-10-31T00:38:12Z",
         "description":"Mika Zibanejad won faceoff against Adam Lowry in neutral zone",
         "attribution":{
            "name":"Rangers",
            "market":"New York",
            "reference":"3",
            "id":"441781b9-0f24-11e2-8525-18a905767e44",
            "team_goal":"right",
            "sr_id":"sr:team:3701"
         },
         "location":{
            "coord_x":948,
            "coord_y":240,
            "action_area":"neutralzone"
         },
         "period":{
            "id":"891b0ecd-56bd-4696-ad4e-85263d4ce28a",
            "number":2,
            "sequence":2,
            "type":"Period"
         },
         "statistics":[
            {
               "type":"faceoff",
               "zone":"neutral",
               "team":{
                  "name":"Jets",
                  "market":"Winnipeg",
                  "reference":"52",
                  "id":"44180e55-0f24-11e2-8525-18a905767e44",
                  "sr_id":"sr:team:3676"
               },
               "player":{
                  "full_name":"Adam Lowry",
                  "jersey_number":"17",
                  "reference":"8476392",
                  "id":"f2d03d98-f350-42c3-bbd3-cd6d704a0401",
                  "sr_id":"sr:player:610322"
               }
            },
            {
               "type":"faceoff",
               "win":true,
               "zone":"neutral",
               "team":{
                  "name":"Rangers",
                  "market":"New York",
                  "reference":"3",
                  "id":"441781b9-0f24-11e2-8525-18a905767e44",
                  "sr_id":"sr:team:3701"
               },
               "player":{
                  "full_name":"Mika Zibanejad",
                  "jersey_number":"93",
                  "reference":"8476459",
                  "id":"42f5f2cc-0f24-11e2-8525-18a905767e44",
                  "sr_id":"sr:player:145201"
               }
            }
         ],
         "on_ice":[
            {
               "team":{
                  "name":"Rangers",
                  "market":"New York",
                  "reference":"3",
                  "id":"441781b9-0f24-11e2-8525-18a905767e44",
                  "sr_id":"sr:team:3701",
                  "players":[
                     {
                        "full_name":"Chris Kreider",
                        "jersey_number":"20",
                        "reference":"8475184",
                        "position":"F",
                        "primary_position":"LW",
                        "id":"43700779-0f24-11e2-8525-18a905767e44",
                        "sr_id":"sr:player:115645"
                     },
                     {
                        "full_name":"Adam Fox",
                        "jersey_number":"23",
                        "reference":"8479323",
                        "position":"D",
                        "primary_position":"D",
                        "id":"9309562d-2fde-4678-8e5a-3ed1cad45d2a",
                        "sr_id":"sr:player:984105"
                     },
                     {
                        "full_name":"Igor Shesterkin",
                        "jersey_number":"31",
                        "reference":"8478048",
                        "position":"G",
                        "primary_position":"G",
                        "id":"30d3b91d-c0d2-40e0-ba17-2a21882c43af",
                        "sr_id":"sr:player:884434"
                     },
                     {
                        "full_name":"Artemi Panarin",
                        "jersey_number":"10",
                        "reference":"8478550",
                        "position":"F",
                        "primary_position":"LW",
                        "id":"019e74ad-95fb-478a-bff7-b549fceadabf",
                        "sr_id":"sr:player:104807"
                     },
                     {
                        "full_name":"Mika Zibanejad",
                        "jersey_number":"93",
                        "reference":"8476459",
                        "position":"F",
                        "primary_position":"C",
                        "id":"42f5f2cc-0f24-11e2-8525-18a905767e44",
                        "sr_id":"sr:player:145201"
                     },
                     {
                        "full_name":"Vincent Trocheck",
                        "jersey_number":"16",
                        "reference":"8476389",
                        "position":"F",
                        "primary_position":"C",
                        "id":"16bf9f68-95f9-4789-a811-80fe6838e632",
                        "sr_id":"sr:player:352050"
                     }
                  ]
               }
            },
            {
               "team":{
                  "name":"Jets",
                  "market":"Winnipeg",
                  "reference":"52",
                  "id":"44180e55-0f24-11e2-8525-18a905767e44",
                  "sr_id":"sr:team:3676",
                  "players":[
                     {
                        "full_name":"Dylan DeMelo",
                        "jersey_number":"2",
                        "reference":"8476331",
                        "position":"D",
                        "primary_position":"D",
                        "id":"ae16bfdc-77e0-4465-973f-7eba0214c882",
                        "sr_id":"sr:player:794662"
                     },
                     {
                        "full_name":"Morgan Barron",
                        "jersey_number":"36",
                        "reference":"8480289",
                        "position":"F",
                        "primary_position":"C",
                        "id":"7cd24817-f89e-49c0-9f77-364098df5c18",
                        "sr_id":"sr:player:1120109"
                     },
                     {
                        "full_name":"Adam Lowry",
                        "jersey_number":"17",
                        "reference":"8476392",
                        "position":"F",
                        "primary_position":"C",
                        "id":"f2d03d98-f350-42c3-bbd3-cd6d704a0401",
                        "sr_id":"sr:player:610322"
                     },
                     {
                        "full_name":"Connor Hellebuyck",
                        "jersey_number":"37",
                        "reference":"8476945",
                        "position":"G",
                        "primary_position":"G",
                        "id":"416485a7-f978-4189-8d7e-c2a55b823d3c",
                        "sr_id":"sr:player:556426"
                     },
                     {
                        "full_name":"Brenden Dillon",
                        "jersey_number":"5",
                        "reference":"8475455",
                        "position":"D",
                        "primary_position":"D",
                        "id":"42976da2-0f24-11e2-8525-18a905767e44",
                        "sr_id":"sr:player:308052"
                     }
                  ]
               }
            }
         ],
         "in_penalty":[
            {
               "team":{
                  "name":"Jets",
                  "market":"Winnipeg",
                  "reference":"52",
                  "id":"44180e55-0f24-11e2-8525-18a905767e44",
                  "sr_id":"sr:team:3676",
                  "players":[
                     {
                        "full_name":"Nino Niederreiter",
                        "jersey_number":"62",
                        "reference":"8475799",
                        "position":"F",
                        "primary_position":"RW",
                        "id":"4327f191-0f24-11e2-8525-18a905767e44",
                        "sr_id":"sr:player:115750"
                     }
                  ]
               }
            }
         ]
      }
   },
   "locale":"en",
   "metadata":{
      "league":"NHL",
      "match":"sd:match:b6a16ac2-4348-4139-9a21-1b99bb443dfa,sr:match:41971173",
      "status":"inprogress",
      "locale":"en",
      "operation":"update",
      "version":"v5"
   }
}{
   "payload":{
      "clocks":{
         "game":"03:41.000",
         "wall":"2023-10-31T00:38:13+00:00",
         "running":false,
         "game_decimal":"03:41.000"
      },
      "game":{
         "id":"8fc62fdb-962c-4999-9885-ac63c95d8080",
         "status":"inprogress",
         "coverage":"full",
         "reference":"20130",
         "scheduled":"2023-10-30T23:00:00+00:00",
         "period":2,
         "sr_id":"sr:match:41971165",
         "home":{
            "name":"Bruins",
            "market":"Boston",
            "reference":"6",
            "id":"4416ba1a-0f24-11e2-8525-18a905767e44",
            "points":1,
            "sr_id":"sr:team:3677",
            "scoring":[
               {
                  "number":1,
                  "sequence":1,
                  "points":0,
                  "type":"period"
               },
               {
                  "number":2,
                  "sequence":2,
                  "points":1,
                  "type":"period"
               }
            ]
         },
         "away":{
            "name":"Panthers",
            "market":"Florida",
            "reference":"13",
            "id":"4418464d-0f24-11e2-8525-18a905767e44",
            "points":2,
            "sr_id":"sr:team:3687",
            "scoring":[
               {
                  "number":1,
                  "sequence":1,
                  "points":2,
                  "type":"period"
               },
               {
                  "number":2,
                  "sequence":2,
                  "points":0,
                  "type":"period"
               }
            ]
         }
      },
      "event":{
         "id":"9c3fe4d0-e7a3-445a-bfd2-c7728371e757",
         "event_type":"stoppage",
         "stoppage_type":"Goalie Stopped (after SOG)",
         "sequence":1698712676665,
         "clock":"3:41",
         "clock_decimal":"3:41",
         "official":true,
         "wall_clock":"2023-10-31T00:37:56Z",
         "updated":"2023-10-31T00:38:14Z",
         "description":"Stoppage - Goalie Stopped (after SOG)",
         "period":{
            "id":"5806749e-75ce-496e-9264-f819f8c99d1f",
            "number":2,
            "sequence":2,
            "type":"Period"
         },
         "details":{
            "stoppage_type":"Goalie Stopped (after SOG)"
         },
         "on_ice":[
            {
               "team":{
                  "name":"Panthers",
                  "market":"Florida",
                  "reference":"13",
                  "id":"4418464d-0f24-11e2-8525-18a905767e44",
                  "sr_id":"sr:team:3687",
                  "players":[
                     {
                        "full_name":"Sam Reinhart",
                        "jersey_number":"13",
                        "reference":"8477933",
                        "position":"F",
                        "primary_position":"C",
                        "id":"d4fb4274-a59f-4705-821e-dba04967570f",
                        "sr_id":"sr:player:610972"
                     },
                     {
                        "full_name":"Gustav Forsling",
                        "jersey_number":"42",
                        "reference":"8478055",
                        "position":"D",
                        "primary_position":"D",
                        "id":"a24e0f46-9cad-49dd-b07f-7835e0848d99",
                        "sr_id":"sr:player:600624"
                     },
                     {
                        "full_name":"Aleksander Barkov",
                        "jersey_number":"16",
                        "reference":"8477493",
                        "position":"F",
                        "primary_position":"C",
                        "id":"0cd5158e-f92b-11e2-a133-f4ce4684ea4c",
                        "sr_id":"sr:player:184453"
                     },
                     {
                        "full_name":"Nick Cousins",
                        "jersey_number":"21",
                        "reference":"8476393",
                        "position":"F",
                        "primary_position":"C",
                        "id":"195e4587-4f5e-47b0-bffc-88f0106561b9",
                        "sr_id":"sr:player:351830"
                     },
                     {
                        "full_name":"Oliver Ekman-Larsson",
                        "jersey_number":"91",
                        "reference":"8475171",
                        "position":"D",
                        "primary_position":"D",
                        "id":"4289ec26-0f24-11e2-8525-18a905767e44",
                        "sr_id":"sr:player:47945"
                     },
                     {
                        "full_name":"Sergei Bobrovsky",
                        "jersey_number":"72",
                        "reference":"8475683",
                        "position":"G",
                        "primary_position":"G",
                        "id":"433d0416-0f24-11e2-8525-18a905767e44",
                        "sr_id":"sr:player:88027"
                     }
                  ]
               }
            },
            {
               "team":{
                  "name":"Bruins",
                  "market":"Boston",
                  "reference":"6",
                  "id":"4416ba1a-0f24-11e2-8525-18a905767e44",
                  "sr_id":"sr:team:3677",
                  "players":[
                     {
                        "full_name":"James van Riemsdyk",
                        "jersey_number":"21",
                        "reference":"8474037",
                        "position":"F",
                        "primary_position":"LW",
                        "id":"4337ce91-0f24-11e2-8525-18a905767e44",
                        "sr_id":"sr:player:93491"
                     },
                     {
                        "full_name":"Hampus Lindholm",
                        "jersey_number":"27",
                        "reference":"8476854",
                        "position":"D",
                        "primary_position":"D",
                        "id":"671bbc9e-99ea-4c1f-b871-f8efd53b0d8f",
                        "sr_id":"sr:player:215040"
                     },
                     {
                        "full_name":"Brandon Carlo",
                        "jersey_number":"25",
                        "reference":"8478443",
                        "position":"D",
                        "primary_position":"D",
                        "id":"a78b4782-c5d4-4bad-a765-3e4b95a7fb90",
                        "sr_id":"sr:player:852958"
                     },
                     {
                        "full_name":"Pavel Zacha",
                        "jersey_number":"18",
                        "reference":"8478401",
                        "position":"F",
                        "primary_position":"C",
                        "id":"aafb1b09-91ab-49b6-a1ff-a171a480c5c1",
                        "sr_id":"sr:player:350310"
                     },
                     {
                        "full_name":"Trent Frederic",
                        "jersey_number":"11",
                        "reference":"8479365",
                        "position":"F",
                        "primary_position":"C",
                        "id":"41acc046-28ad-430f-94e5-604d7f35daff",
                        "sr_id":"sr:player:984013"
                     },
                     {
                        "full_name":"Linus Ullmark",
                        "jersey_number":"35",
                        "reference":"8476999",
                        "position":"G",
                        "primary_position":"G",
                        "id":"d4dd5956-5c99-4e69-b21f-713b64327eca",
                        "sr_id":"sr:player:350972"
                     }
                  ]
               }
            }
         ]
      }
   },
   "locale":"en",
   "metadata":{
      "league":"NHL",
      "match":"sd:match:8fc62fdb-962c-4999-9885-ac63c95d8080,sr:match:41971165",
      "status":"inprogress",
      "locale":"en",
      "operation":"update",
      "version":"v5"
   }
}{
   "payload":{
      "clocks":{
         "game":"03:41.000",
         "wall":"2023-10-31T00:38:16+00:00",
         "running":false,
         "game_decimal":"03:41.000"
      },
      "game":{
         "id":"8fc62fdb-962c-4999-9885-ac63c95d8080",
         "status":"inprogress",
         "coverage":"full",
         "reference":"20130",
         "scheduled":"2023-10-30T23:00:00+00:00",
         "period":2,
         "sr_id":"sr:match:41971165",
         "home":{
            "name":"Bruins",
            "market":"Boston",
            "reference":"6",
            "id":"4416ba1a-0f24-11e2-8525-18a905767e44",
            "points":1,
            "sr_id":"sr:team:3677",
            "scoring":[
               {
                  "number":1,
                  "sequence":1,
                  "points":0,
                  "type":"period"
               },
               {
                  "number":2,
                  "sequence":2,
                  "points":1,
                  "type":"period"
               }
            ]
         },
         "away":{
            "name":"Panthers",
            "market":"Florida",
            "reference":"13",
            "id":"4418464d-0f24-11e2-8525-18a905767e44",
            "points":2,
            "sr_id":"sr:team:3687",
            "scoring":[
               {
                  "number":1,
                  "sequence":1,
                  "points":2,
                  "type":"period"
               },
               {
                  "number":2,
                  "sequence":2,
                  "points":0,
                  "type":"period"
               }
            ]
         }
      },
      "event":{
         "id":"9c3fe4d0-e7a3-445a-bfd2-c7728371e757",
         "event_type":"stoppage",
         "stoppage_type":"Goalie Stopped (after SOG)",
         "sequence":1698712676665,
         "clock":"3:41",
         "clock_decimal":"3:41",
         "official":true,
         "wall_clock":"2023-10-31T00:37:56Z",
         "updated":"2023-10-31T00:38:14Z",
         "description":"Stoppage - Goalie Stopped (after SOG)",
         "period":{
            "id":"5806749e-75ce-496e-9264-f819f8c99d1f",
            "number":2,
            "sequence":2,
            "type":"Period"
         },
         "details":{
            "stoppage_type":"Goalie Stopped (after SOG)"
         },
         "on_ice":[
            {
               "team":{
                  "name":"Panthers",
                  "market":"Florida",
                  "reference":"13",
                  "id":"4418464d-0f24-11e2-8525-18a905767e44",
                  "sr_id":"sr:team:3687",
                  "players":[
                     {
                        "full_name":"Sam Reinhart",
                        "jersey_number":"13",
                        "reference":"8477933",
                        "position":"F",
                        "primary_position":"C",
                        "id":"d4fb4274-a59f-4705-821e-dba04967570f",
                        "sr_id":"sr:player:610972"
                     },
                     {
                        "full_name":"Gustav Forsling",
                        "jersey_number":"42",
                        "reference":"8478055",
                        "position":"D",
                        "primary_position":"D",
                        "id":"a24e0f46-9cad-49dd-b07f-7835e0848d99",
                        "sr_id":"sr:player:600624"
                     },
                     {
                        "full_name":"Aleksander Barkov",
                        "jersey_number":"16",
                        "reference":"8477493",
                        "position":"F",
                        "primary_position":"C",
                        "id":"0cd5158e-f92b-11e2-a133-f4ce4684ea4c",
                        "sr_id":"sr:player:184453"
                     },
                     {
                        "full_name":"Nick Cousins",
                        "jersey_number":"21",
                        "reference":"8476393",
                        "position":"F",
                        "primary_position":"C",
                        "id":"195e4587-4f5e-47b0-bffc-88f0106561b9",
                        "sr_id":"sr:player:351830"
                     },
                     {
                        "full_name":"Oliver Ekman-Larsson",
                        "jersey_number":"91",
                        "reference":"8475171",
                        "position":"D",
                        "primary_position":"D",
                        "id":"4289ec26-0f24-11e2-8525-18a905767e44",
                        "sr_id":"sr:player:47945"
                     },
                     {
                        "full_name":"Sergei Bobrovsky",
                        "jersey_number":"72",
                        "reference":"8475683",
                        "position":"G",
                        "primary_position":"G",
                        "id":"433d0416-0f24-11e2-8525-18a905767e44",
                        "sr_id":"sr:player:88027"
                     }
                  ]
               }
            },
            {
               "team":{
                  "name":"Bruins",
                  "market":"Boston",
                  "reference":"6",
                  "id":"4416ba1a-0f24-11e2-8525-18a905767e44",
                  "sr_id":"sr:team:3677",
                  "players":[
                     {
                        "full_name":"James van Riemsdyk",
                        "jersey_number":"21",
                        "reference":"8474037",
                        "position":"F",
                        "primary_position":"LW",
                        "id":"4337ce91-0f24-11e2-8525-18a905767e44",
                        "sr_id":"sr:player:93491"
                     },
                     {
                        "full_name":"Hampus Lindholm",
                        "jersey_number":"27",
                        "reference":"8476854",
                        "position":"D",
                        "primary_position":"D",
                        "id":"671bbc9e-99ea-4c1f-b871-f8efd53b0d8f",
                        "sr_id":"sr:player:215040"
                     },
                     {
                        "full_name":"Brandon Carlo",
                        "jersey_number":"25",
                        "reference":"8478443",
                        "position":"D",
                        "primary_position":"D",
                        "id":"a78b4782-c5d4-4bad-a765-3e4b95a7fb90",
                        "sr_id":"sr:player:852958"
                     },
                     {
                        "full_name":"Pavel Zacha",
                        "jersey_number":"18",
                        "reference":"8478401",
                        "position":"F",
                        "primary_position":"C",
                        "id":"aafb1b09-91ab-49b6-a1ff-a171a480c5c1",
                        "sr_id":"sr:player:350310"
                     },
                     {
                        "full_name":"Trent Frederic",
                        "jersey_number":"11",
                        "reference":"8479365",
                        "position":"F",
                        "primary_position":"C",
                        "id":"41acc046-28ad-430f-94e5-604d7f35daff",
                        "sr_id":"sr:player:984013"
                     },
                     {
                        "full_name":"Linus Ullmark",
                        "jersey_number":"35",
                        "reference":"8476999",
                        "position":"G",
                        "primary_position":"G",
                        "id":"d4dd5956-5c99-4e69-b21f-713b64327eca",
                        "sr_id":"sr:player:350972"
                     }
                  ]
               }
            }
         ]
      }
   },
   "locale":"en",
   "metadata":{
      "league":"NHL",
      "match":"sd:match:8fc62fdb-962c-4999-9885-ac63c95d8080,sr:match:41971165",
      "status":"inprogress",
      "locale":"en",
      "operation":"update",
      "version":"v5"
   }
}{
   "payload":{
      "clocks":{
         "game":"01:08.000",
         "wall":"2023-10-31T00:38:18+00:00",
         "running":true,
         "game_decimal":"01:08.000"
      },
      "game":{
         "id":"065f948d-471b-47b4-a971-001dc9004371",
         "status":"inprogress",
         "coverage":"full",
         "reference":"20133",
         "scheduled":"2023-10-30T23:00:00+00:00",
         "period":2,
         "sr_id":"sr:match:41971171",
         "home":{
            "name":"Lightning",
            "market":"Tampa Bay",
            "reference":"14",
            "id":"4417d3cb-0f24-11e2-8525-18a905767e44",
            "points":2,
            "sr_id":"sr:team:3694",
            "scoring":[
               {
                  "number":1,
                  "sequence":1,
                  "points":1,
                  "type":"period"
               },
               {
                  "number":2,
                  "sequence":2,
                  "points":1,
                  "type":"period"
               }
            ]
         },
         "away":{
            "name":"Kraken",
            "market":"Seattle",
            "reference":"55",
            "id":"1fb48e65-9688-4084-8868-02173525c3e1",
            "points":3,
            "sr_id":"sr:team:794340",
            "scoring":[
               {
                  "number":1,
                  "sequence":1,
                  "points":3,
                  "type":"period"
               },
               {
                  "number":2,
                  "sequence":2,
                  "points":0,
                  "type":"period"
               }
            ]
         }
      },
      "event":{
         "id":"4b735927-73cf-479c-9186-c4de3880d8f0",
         "event_type":"substitution",
         "sequence":1698712688493,
         "clock":"1:18",
         "clock_decimal":"1:18",
         "official":true,
         "wall_clock":"2023-10-31T00:38:08Z",
         "updated":"2023-10-31T00:38:18Z",
         "description":"Kraken substitution (Eeli Tolvanen,Matty Beniers,Will Borgen,Oliver Bjorkstrand,Jamie Oleksiak)",
         "attribution":{
            "name":"Kraken",
            "market":"Seattle",
            "reference":"55",
            "id":"1fb48e65-9688-4084-8868-02173525c3e1",
            "team_goal":"left",
            "sr_id":"sr:team:794340"
         },
         "period":{
            "id":"fb2b2506-ddb1-47c5-b928-e5a8ce8fabd2",
            "number":2,
            "sequence":2,
            "type":"Period"
         },
         "players":[
            {
               "full_name":"Will Borgen",
               "jersey_number":"3",
               "reference":"8478840",
               "id":"e198a0bf-fcb3-4638-8f7c-955a55532cbd",
               "sr_id":"sr:player:1215232"
            },
            {
               "full_name":"Eeli Tolvanen",
               "jersey_number":"20",
               "reference":"8480009",
               "id":"c8ab94f6-42f3-47d6-99c7-d2445fe2abf9",
               "sr_id":"sr:player:1088330"
            },
            {
               "full_name":"Jamie Oleksiak",
               "jersey_number":"24",
               "reference":"8476467",
               "id":"22620d9f-c834-41d2-8898-6c62a6c868fb",
               "sr_id":"sr:player:312224"
            },
            {
               "full_name":"Oliver Bjorkstrand",
               "jersey_number":"22",
               "reference":"8477416",
               "id":"404beff3-3b28-4a47-b60e-89349c572eff",
               "sr_id":"sr:player:895840"
            },
            {
               "full_name":"Matty Beniers",
               "jersey_number":"10",
               "reference":"8482665",
               "id":"a84cbaed-fc8d-42a3-9f1b-b231d8dc426d",
               "sr_id":"sr:player:2056459"
            }
         ]
      }
   },
   "locale":"en",
   "metadata":{
      "league":"NHL",
      "match":"sd:match:065f948d-471b-47b4-a971-001dc9004371,sr:match:41971171",
      "status":"inprogress",
      "locale":"en",
      "operation":"update",
      "version":"v5"
   }
}{
   "payload":{
      "clocks":{
         "game":"18:29.000",
         "wall":"2023-10-31T00:38:21+00:00",
         "running":true,
         "strength":"01:35",
         "game_decimal":"18:29.000"
      },
      "game":{
         "id":"b6a16ac2-4348-4139-9a21-1b99bb443dfa",
         "status":"inprogress",
         "coverage":"full",
         "reference":"20135",
         "scheduled":"2023-10-30T23:30:00+00:00",
         "period":2,
         "sr_id":"sr:match:41971173",
         "home":{
            "name":"Jets",
            "market":"Winnipeg",
            "reference":"52",
            "id":"44180e55-0f24-11e2-8525-18a905767e44",
            "points":1,
            "sr_id":"sr:team:3676",
            "scoring":[
               {
                  "number":1,
                  "sequence":1,
                  "points":1,
                  "type":"period"
               },
               {
                  "number":2,
                  "sequence":2,
                  "points":0,
                  "type":"period"
               }
            ]
         },
         "away":{
            "name":"Rangers",
            "market":"New York",
            "reference":"3",
            "id":"441781b9-0f24-11e2-8525-18a905767e44",
            "points":1,
            "sr_id":"sr:team:3701",
            "scoring":[
               {
                  "number":1,
                  "sequence":1,
                  "points":1,
                  "type":"period"
               },
               {
                  "number":2,
                  "sequence":2,
                  "points":0,
                  "type":"period"
               }
            ]
         }
      },
      "event":{
         "id":"21e80bc1-b45f-4dec-91fc-2d81c71bb371",
         "event_type":"faceoff",
         "zone":"neutral",
         "strength":"powerplay",
         "sequence":1698712687196,
         "clock":"18:43",
         "clock_decimal":"18:43",
         "official":true,
         "wall_clock":"2023-10-31T00:38:07Z",
         "updated":"2023-10-31T00:38:20Z",
         "description":"Power play - Mika Zibanejad won faceoff against Adam Lowry in neutral zone",
         "attribution":{
            "name":"Rangers",
            "market":"New York",
            "reference":"3",
            "id":"441781b9-0f24-11e2-8525-18a905767e44",
            "team_goal":"right",
            "sr_id":"sr:team:3701"
         },
         "location":{
            "coord_x":948,
            "coord_y":240,
            "action_area":"neutralzone"
         },
         "period":{
            "id":"891b0ecd-56bd-4696-ad4e-85263d4ce28a",
            "number":2,
            "sequence":2,
            "type":"Period"
         },
         "statistics":[
            {
               "type":"faceoff",
               "win":true,
               "strength":"powerplay",
               "zone":"neutral",
               "team":{
                  "name":"Rangers",
                  "market":"New York",
                  "reference":"3",
                  "id":"441781b9-0f24-11e2-8525-18a905767e44",
                  "sr_id":"sr:team:3701"
               },
               "player":{
                  "full_name":"Mika Zibanejad",
                  "jersey_number":"93",
                  "reference":"8476459",
                  "id":"42f5f2cc-0f24-11e2-8525-18a905767e44",
                  "sr_id":"sr:player:145201"
               }
            },
            {
               "type":"faceoff",
               "strength":"shorthanded",
               "zone":"neutral",
               "team":{
                  "name":"Jets",
                  "market":"Winnipeg",
                  "reference":"52",
                  "id":"44180e55-0f24-11e2-8525-18a905767e44",
                  "sr_id":"sr:team:3676"
               },
               "player":{
                  "full_name":"Adam Lowry",
                  "jersey_number":"17",
                  "reference":"8476392",
                  "id":"f2d03d98-f350-42c3-bbd3-cd6d704a0401",
                  "sr_id":"sr:player:610322"
               }
            }
         ],
         "on_ice":[
            {
               "team":{
                  "name":"Rangers",
                  "market":"New York",
                  "reference":"3",
                  "id":"441781b9-0f24-11e2-8525-18a905767e44",
                  "sr_id":"sr:team:3701",
                  "players":[
                     {
                        "full_name":"Chris Kreider",
                        "jersey_number":"20",
                        "reference":"8475184",
                        "position":"F",
                        "primary_position":"LW",
                        "id":"43700779-0f24-11e2-8525-18a905767e44",
                        "sr_id":"sr:player:115645"
                     },
                     {
                        "full_name":"Adam Fox",
                        "jersey_number":"23",
                        "reference":"8479323",
                        "position":"D",
                        "primary_position":"D",
                        "id":"9309562d-2fde-4678-8e5a-3ed1cad45d2a",
                        "sr_id":"sr:player:984105"
                     },
                     {
                        "full_name":"Igor Shesterkin",
                        "jersey_number":"31",
                        "reference":"8478048",
                        "position":"G",
                        "primary_position":"G",
                        "id":"30d3b91d-c0d2-40e0-ba17-2a21882c43af",
                        "sr_id":"sr:player:884434"
                     },
                     {
                        "full_name":"Artemi Panarin",
                        "jersey_number":"10",
                        "reference":"8478550",
                        "position":"F",
                        "primary_position":"LW",
                        "id":"019e74ad-95fb-478a-bff7-b549fceadabf",
                        "sr_id":"sr:player:104807"
                     },
                     {
                        "full_name":"Mika Zibanejad",
                        "jersey_number":"93",
                        "reference":"8476459",
                        "position":"F",
                        "primary_position":"C",
                        "id":"42f5f2cc-0f24-11e2-8525-18a905767e44",
                        "sr_id":"sr:player:145201"
                     },
                     {
                        "full_name":"Vincent Trocheck",
                        "jersey_number":"16",
                        "reference":"8476389",
                        "position":"F",
                        "primary_position":"C",
                        "id":"16bf9f68-95f9-4789-a811-80fe6838e632",
                        "sr_id":"sr:player:352050"
                     }
                  ]
               }
            },
            {
               "team":{
                  "name":"Jets",
                  "market":"Winnipeg",
                  "reference":"52",
                  "id":"44180e55-0f24-11e2-8525-18a905767e44",
                  "sr_id":"sr:team:3676",
                  "players":[
                     {
                        "full_name":"Dylan DeMelo",
                        "jersey_number":"2",
                        "reference":"8476331",
                        "position":"D",
                        "primary_position":"D",
                        "id":"ae16bfdc-77e0-4465-973f-7eba0214c882",
                        "sr_id":"sr:player:794662"
                     },
                     {
                        "full_name":"Morgan Barron",
                        "jersey_number":"36",
                        "reference":"8480289",
                        "position":"F",
                        "primary_position":"C",
                        "id":"7cd24817-f89e-49c0-9f77-364098df5c18",
                        "sr_id":"sr:player:1120109"
                     },
                     {
                        "full_name":"Adam Lowry",
                        "jersey_number":"17",
                        "reference":"8476392",
                        "position":"F",
                        "primary_position":"C",
                        "id":"f2d03d98-f350-42c3-bbd3-cd6d704a0401",
                        "sr_id":"sr:player:610322"
                     },
                     {
                        "full_name":"Connor Hellebuyck",
                        "jersey_number":"37",
                        "reference":"8476945",
                        "position":"G",
                        "primary_position":"G",
                        "id":"416485a7-f978-4189-8d7e-c2a55b823d3c",
                        "sr_id":"sr:player:556426"
                     },
                     {
                        "full_name":"Brenden Dillon",
                        "jersey_number":"5",
                        "reference":"8475455",
                        "position":"D",
                        "primary_position":"D",
                        "id":"42976da2-0f24-11e2-8525-18a905767e44",
                        "sr_id":"sr:player:308052"
                     }
                  ]
               }
            }
         ],
         "in_penalty":[
            {
               "team":{
                  "name":"Jets",
                  "market":"Winnipeg",
                  "reference":"52",
                  "id":"44180e55-0f24-11e2-8525-18a905767e44",
                  "sr_id":"sr:team:3676",
                  "players":[
                     {
                        "full_name":"Nino Niederreiter",
                        "jersey_number":"62",
                        "reference":"8475799",
                        "position":"F",
                        "primary_position":"RW",
                        "id":"4327f191-0f24-11e2-8525-18a905767e44",
                        "sr_id":"sr:player:115750"
                     }
                  ]
               }
            }
         ]
      }
   },
   "locale":"en",
   "metadata":{
      "league":"NHL",
      "match":"sd:match:b6a16ac2-4348-4139-9a21-1b99bb443dfa,sr:match:41971173",
      "status":"inprogress",
      "locale":"en",
      "operation":"update",
      "version":"v5"
   }
}


Data Points

Boxscore:
AttributeParent ElementTypeDescription
pointsgame - home / awayIntegerNumber of points for a team
pointsgame - home / away - scoringIntegerNumber of points in a period for a team
periodgameIntegerCurrent period of a game
idevent - overtimeGUIDUnique ID of an overtime period
ex. 65c87f65-47a8-4341-a34f-a9036582aa79
numberevent - overtimeIntegerOvertime number
sequenceevent - overtimeIntegerOvertime sequence number
idevent - periodGUIDUnique ID of a period
ex. 65c87f65-47a8-4341-a34f-a9036582aa79
numberevent - periodIntegerPeriod number
sequenceevent - periodIntegerPeriod sequence number
typeevent - periodStringType of a period
ex. Period
Clock:
AttributeParent ElementTypeDescription
gameclocksTimeGame clock value for a payload/event
ex. 18:38.000
game_decimalclocksStringGame clock value for a payload/event
ex. 18:38.000
runningclocksBooleanSignifies the game clock is currently running
strengthclocksStringTime remaining of a strength event
ex. 00:51
wallclocksdateTimeTimestamp of an event
ex. 2022-12-14T02:12:41+00:00
Game:
AttributeParent ElementTypeDescription
idgameGUIDUnique ID of a game
ex. 10b9ce0f-fd31-4d1f-828b-4f20d628f14f
referencegameStringLeague reference ID of a game
ex. 20393
scheduledgamedateTimeScheduled date and time of a game
ex. 2022-12-04T20:00:00Z
sr_idgameGUIDUnique Sportradar ID of a game
ex. sr:match:34542743
statusgameStringThe status of a game
scheduled, created, inprogress, complete, closed, cancelled, delayed, postponed, time-tbd, if-necessary, unnecessary

Please see our FAQ section for a list of game status definitions
idgame - awayGUIDUnique ID of the away team
ex. 4416091c-0f24-11e2-8525-18a905767e44
namegame - awayStringTeam name of the away team
ex. Wild
marketgame - awayStringMarket of the away team
ex. Minnesota
referencegame - awayStringLeague reference ID of the away team
ex. 30
sr_idgame - awayGUIDUnique Sportradar ID of the away team
ex. sr:team:3689
coveragegameStringCoverage level of a game
full, boxscore
idgame - homeGUIDUnique ID of the home team
ex. 4416091c-0f24-11e2-8525-18a905767e44
namegame - homeStringTeam name of the home team
ex. Wild
marketgame - homeStringMarket of the home team
ex. Minnesota
referencegame - homeStringLeague reference ID of the home team
ex. 30
sr_idgame - homeGUIDUnique Sportradar ID of the home team
ex. sr:team:3689
Metadata:
AttributeParent ElementTypeDescription
leaguemetadataStringAlias of a league
ex. NHL
localemetadataStringLanguage code
ex. en (English)
matchmetadataGUIDUnique ID(s) of a game
ex. sd:match:2de3fad5-a527-4c49-9093-9243d2135352,sr:match:34542877
operationmetadataStringOperation of an update
update, delete
statusmetadataStringThe status of a game
scheduled, created, inprogress, halftime, complete, closed, cancelled, delayed, postponed, time-tbd, if-necessary, unnecessary
Please see our FAQ section for a list of game status definitions
versionmetadataStringVersion of the API
ex. v5
Play-by-Play - Event Attribution:
AttributeParent ElementTypeDescription
team_goalevent - attributionStringSide of the rink a team is defending
left, right
idevent - attributionGUIDUnique ID of a team
ex. 441713b7-0f24-11e2-8525-18a905767e44
marketevent - attributionStringMarket name of a team
ex. Minnesota
nameevent - attributionStringTeam name
ex. Wild
referenceevent - attributionStringLeague reference ID of a team
ex. 30
sr_idevent - attributionGUIDUnique Sportradar ID of a team
ex. sr:team:3689
Play-by-Play - Event:
AttributeParent ElementTypeDescription
clockeventStringClock value of an event
ex. 12:37
descriptioneventStringText description of an event
ex. Goal scored by Cole Caufield assisted by Jordan Harris
ideventGUIDUnique ID of an event
ex. d26ba273-2391-4248-be29-dea193092c5a
event_typeeventStringType of event
ex. goal or shotsaved
See our FAQ for a complete list of types
zoneeventStringZone of an event
defensive, offensive, neutral
officialeventBooleanSignifies an event is official and will count towards the statistical record
updatedeventdateTimeTimestamp of the last update to an event
ex. 2022-12-06T17:09:15Z
wall_clockeventdateTimeTimestamp of an event
ex. 2022-12-06T05:04:22Z
Play-by-Play - Event Details:
AttributeParent ElementTypeDescription
goal_zoneevent - detailsStringZone of a made goal (from the shooter's perspective)
upper left, upper middle, upper right, lower left, lower middle, lower right
penalty_codeevent - detailsStringLeague penalty reference ID/code
ex. 55, 80
durationevent - detailsIntegerDuration of a penalty in minutes
penalty_typeevent - detailsStringType of penalty
ex. Charging

See our FAQ for a list of valid penalty types
reasonevent - detailsStringEvent detail description
ex. wide of net, goalpost, TV timeout
distanceevent - detailsIntegerDistance of a shot on goal in feet
shot_typeevent - detailsIntegerType of a shot
wrist, slap, backhand, tip, snap, wrap-around, bat, cradle, poke, between_legs
stoppage_typeevent - detailsIntegerType of a stopp
ex. Referee or Linesman, Puck Frozen, Icing
Play-by-Play - Event Location:
AttributeParent ElementTypeDescription
action_areaevent - locationStringRink area of action for an event
ex. outsideleftcircle
coord_xevent - locationIntegerX coordinate of an event. The rink we use is 2400 by 1020; the scale is in inches.
coord_yevent - locationIntegerY coordinate of an event. The rink we use is 2400 by 1020; the scale is in inches.
Play-by-Play - Event Participants:

Players and teams will appear within each event in different contexts. This will include: substitutions, on ice info, faceoffs, and event statistics such as missed shots or goals.

AttributeParent ElementTypeDescription
full_nameevent - playersStringFull name of a player
ex. Sidney Crosby
idevent - playersGUIDUnique ID of a player
ex. 433de553-0f24-11e2-8525-18a905767e44
jersey_numberevent - playersIntegerNumber of a player's jersey
referenceevent - playersStringLeague reference ID of a player
ex. 8471675
sr_idevent - playersGUIDUnique Sportradar ID of a player
ex. sr:player:31007
idevent - teamGUIDUnique ID of a team
ex. bdc11650-6f74-49c4-875e-778aeb7632d9
marketevent - teamStringMarket name of a team
ex. Minnesota
nameevent - teamStringTeam name
ex. Wild
referenceevent - teamStringLeague reference ID of a team
ex. 30
sr_idevent - teamGUIDUnique Sportradar ID of a team
ex. sr:team:3689
Play-by-Play - On Ice:
AttributeParent ElementTypeDescription
full_nameevent - on-ice - team - playersStringFull name of a player
ex. Sidney Crosby
idevent - on-ice - team - playersGUIDUnique ID of a player
ex. 433de553-0f24-11e2-8525-18a905767e44
jersey_numberevent - on-ice - team - playersIntegerNumber of a player's jersey
referenceevent - on-ice - team - playersStringLeague reference ID of a player
ex. 8471675
sr_idevent - on-ice - team - playersGUIDUnique Sportradar ID of a player
ex. sr:player:31007
idevent - on-ice - teamGUIDUnique ID of a team
ex. bdc11650-6f74-49c4-875e-778aeb7632d9
marketevent - on-ice - teamStringMarket name of a team
ex. Minnesota
nameevent - on-ice - teamStringTeam name
ex. Wild
referenceevent - on-ice - teamStringLeague reference ID of a team
ex. 30
sr_idevent - on-ice - teamGUIDUnique Sportradar ID of a team
ex. sr:team:3689
Play Statistics:
AttributeParent ElementTypeDescription
strengthevent - statistics - assistStringStrength for an assist event
even, powerplay, shorthanded
assist_typeevent - statistics - assistStringType of assist
primary, secondary
zoneevent - statistics - assistStringZone of an assist event
defensive, offensive, neutral
strengthevent - statistics - blockStringStrength for a block event
even, powerplay, shorthanded
zoneevent - statistics - blockStringZone of a block event
defensive, offensive, neutral
strengthevent - statistics - faceoffStringStrength for a faceoff event
even, powerplay, shorthanded
winevent - statistics - faceoffBooleanSignifies a won faceoff
zoneevent - statistics - blfaceoffockStringZone of a faceoff event
defensive, offensive, neutral
strengthevent - statistics - giveawayStringStrength for a giveaway event
even, powerplay, shorthanded
zoneevent - statistics - giveawayStringZone of a giveaway event
defensive, offensive, neutral
strengthevent - statistics - hitStringStrength for the hitter a hit event
even, powerplay, shorthanded
zoneevent - statistics - hitStringZone of the hitter a hit event
defensive, offensive, neutral
strengthevent - statistics - hitteeStringStrength for the player hit in a hit event
even, powerplay, shorthanded
zoneevent - statistics - hitteeStringZone of the player hit in a hit event
defensive, offensive, neutral
penaltyevent - statistics - shotmissedBooleanSignifies a missed penalty shot
shootoutevent - statistics - shotmissedBooleanSignifies a missed shootout shot
strengthevent - statistics - shotmissedStringStrength for a missed shot event
even, powerplay, shorthanded
zoneevent - statistics - shotmissedStringZone for a missed shot event
defensive, offensive, neutral
minutesevent - statistics - penaltyIntegerNumber of penalty minutes
severityevent - statistics - penaltyStringSeverity of a penalty
Minor, Major, Double Minor, Misconduct
strengthevent - statistics - penaltyStringStrength for a penalty event
even, powerplay, shorthanded
minutesevent - statistics - penaltydrawnIntegerNumber of penalty minutes for a player drawing a penalty
severityevent - statistics - penaltydrawnStringSeverity of a penalty for a player drawing a penalty
Minor, Major, Double Minor, Misconduct
strengthevent - statistics - penaltydrawnStringStrength of a penalty event for a player drawing a penalty
even, powerplay, shorthanded
minutesevent - statistics - penaltyservedIntegerNumber of penalty minutes served
severityevent - statistics - penaltyservedStringSeverity of a penalty served
Minor, Major, Double Minor, Misconduct
strengthevent - statistics - penaltyservedStringStrength of a penalty served event
even, powerplay, shorthanded
awardedevent - statistics - shotBooleanSignifies an awarded shot
goalevent - statistics - shotBooleanSignifies a goal score
penaltyevent - statistics - shotBooleanSignifies a penalty shot
shootoutevent - statistics - shotBooleanSignifies a shootout shot
strengthevent - statistics - shotStringStrength of a shot event
even, powerplay, shorthanded
zoneevent - statistics - shotStringZone for a shot event
defensive, offensive, neutral
awardedevent - statistics - shotagainstBooleanSignifies an awarded shot against
goalevent - statistics - shotagainstBooleanSignifies a goal score against
penaltyevent - statistics - shotagainstBooleanSignifies a penalty shot against
shootoutevent - statistics - shotagainstBooleanSignifies a shootout shot against
strengthevent - statistics - shotagainstStringStrength of a shot event for the defense
even, powerplay, shorthanded
zoneevent - statistics - shotagainstStringZone for a shot event for the defense
defensive, offensive, neutral
strengthevent - statistics - takeawayStringStrength of a takeaway event
even, powerplay, shorthanded
zoneevent - statistics - takeawayStringZone for a takeaway event
defensive, offensive, neutral
Player:
AttributeParent ElementTypeDescription
full_nameplayerStringFull name of a player
ex. Sidney Crosby
idplayerGUIDUnique ID of a player
ex. 433de553-0f24-11e2-8525-18a905767e44
jersey_numberplayerIntegerNumber of a player's jersey
referenceplayerStringLeague reference ID of a player
ex. 8471675
sr_idplayerGUIDUnique Sportradar ID of a player
ex. sr:player:31007
Team:
AttributeParent ElementTypeDescription
idteamGUIDUnique ID of a team
ex. bdc11650-6f74-49c4-875e-778aeb7632d9
marketteamStringMarket name of a team
ex. Minnesota
nameteamStringTeam name
ex. Wild
referenceteamStringLeague reference ID of a team
ex. 30
sr_idteamGUIDUnique Sportradar ID of a team
ex. sr:team:3689