Subscription to this function is not available for your account. To upgrade and receive access to this contact sales@datasportsgroup.com
v3 GET /luge/get_results
Returns the results of the specific round/discipline
Request URL
https://dsg-api.com/clients/{client_name}/luge/get_results?id={season_id}&type=season&client={client_name}&authkey={client_authkey}
API Threshold
  • 10k calls per hour (2.78 calls per second)
  • This threshold applies to ALL your calls you do across the API.
  • Your number of calls get reset every hour at :00
  • If the thresold is reached within the hour you will get a xml/json message accordingly (which is gone when the next hour starts, see previous point)
Parameters
authkey
string Required
client authentification key
client
string Required
unique client ID
discipline_id
int
unique identifier for a discipline
ftype
string
changes feed type from XML to json (ftype=json or ftype=json_array)
id
int Required
season or round id to return
lang
string
two-character language code, defaults to 'en'
type
string Required
type is either "season" or "round"
Nodes
competition
details about competition
area_id
unique identifier for an area
area_name
name of the area
competition_id
unique identifier for a competition
format
competition format (domestic_league, domestic_cup, domestic_league_cup, domestic_super_cup, international_cup, international_super_cup, playoff, tournament, race, unofficial)
gender
determines the gender of the competition (male or female)
last_updated
When record was last updated. Format YYYY-MM-DD HH:MM:SS in CET timezone.
name
name of the competition
type
determines if a competition is between club teams (club) or national teams (international)
contestant
luge results for the contestant
bib_number
bib number of the contestant for this round
common_name
common name of the person
contestant_team_id
unique identifier for the contestant team/double
first_name
first name of the person
last_name
last name of the person
nationality_area_code
three character area code
nationality_area_id
unique identifier for an area
nationality_area_name
area name of peoples nationality
order
number of order in which the contestant competed in this round
people_id
unique identifier for person
position
position value
record
type of record for the contestant or team (SB,PB,WR,OR etc)
run_1
points for the 1st run
run_2
points for the 2nd run
run_3
points for the 3rd run
run_4
points for the 4th run
short_name
shortened name of the person
status
status abbreviations of the contestant (like Q, R, DNF, DNS etc)
time
total time for this round
datasportsgroup
details about the API version, sport, language and generation timestamp
generated_utc
UTC timestamp when the API output was generated
lang
language of the API call
sport
sport value
version
version of the API
discipline
basic information about the discipline
discipline_id
unique identifier of the discipline
name
name of the discipline
type
type of discipline (contestant, contestant_team or team)
gender
details about the gender
age_group
defines the age group (senior,u23,u22,u21....)
value
gender type (male, female or mixed)
method
details about the API function
method_id
unique ID of method
name
name of method
people
basic information about the contestant team member
common_name
common name of the person
first_name
first name of the person
last_name
last name of the person
nationality_area_code
three character area code
nationality_area_id
unique identifier for an area
nationality_area_name
area name of peoples nationality
people_id
unique identifier for person
short_name
shortened name of the person
round
details about the round
end_date
end date, format 'yyyy-mm-dd'
end_date_utc
end date in UTC timezone, format 'yyyy-mm-dd'
end_time
end time, format 'HH:mm:ss'
end_time_utc
end time in UTC timezone, format 'HH:mm:ss'
last_updated
When record was last updated. Format YYYY-MM-DD HH:MM:SS in CET timezone.
name
name of round
round_id
unique identifier of round
start_date
start date, format 'yyyy-mm-dd'
start_date_utc
start date in UTC timezone, format 'yyyy-mm-dd'.
start_time
start time, format 'HH:mm:ss'
start_time_utc
start time in UTC timezone, format 'HH:mm:ss'
type
determines if the round contains a table or a cup structure (knock-out)
round_extra
extra round details
medal_round
indicates if medals are awarded in this round
status
status of the round (Scheduled,Live,Played,Postponed,Cancelled,Break)
season
details about the season
end_date
end date, format 'yyyy-mm-dd'
last_updated
When record was last updated. Format YYYY-MM-DD HH:MM:SS in CET timezone.
logo
full path URL of logo for particular season
original_name
competition name during this season
season_id
unique identifier for season
start_date
start date, format 'yyyy-mm-dd'
title
title of season
tour
details about the tour
gender
gender of the tour
name
name of the particular tour
tour_id
unique tour identifier
tour_type
defines if the tournament is part of a tour or not. If not then value "non-tour"
tour_season
details about a tour season
logo
full path URL of logo for particular tour_season
name
name of the tour_season
title
title of the particular tour season
tour_season_id
unique identifier of a tour season
venue
basic details about the venue
venue_area_id
unique identifier for an area
venue_area_name
name of the area
venue_city
city where the venue is based
venue_id
unique identifier of the venue
venue_image
full path URL of venue or circuit image
venue_name
current name of the venue
Response Headers
200
Success
401
Unauthorized
429
Too Many Requests
Code Samples
<?php
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "https://dsg-api.com/clients/{client_name}/luge/get_results?id={season_id}&type=season&client={client_name}&authkey={client_authkey}");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_USERPWD, "{User}:{Password}");
$content = curl_exec($ch);
curl_close($ch);
?>
curl GET -u "User:Password" "https://dsg-api.com/clients/{client_name}/luge/get_results?id={season_id}&type=season&client={client_name}&authkey={client_authkey}"
Imports System
Imports System.Net	
Imports System.IO
Imports System.Text

Public Module Module1
	Public Sub Main()
		Dim url As String = "https://dsg-api.com/clients/{client_name}/luge/get_results?id={season_id}&type=season&client={client_name}&authkey={client_authkey}"
		Dim myReq As WebRequest = WebRequest.Create(url)
		myReq.Credentials = new System.Net.NetworkCredential("{User}", "{Password}")
		Dim wr As WebResponse = myReq.GetResponse()
		Dim receiveStream As Stream = wr.GetResponseStream()
		Dim reader As StreamReader = New StreamReader(receiveStream, Encoding.UTF8)
		Dim content As String = reader.ReadToEnd()
	End Sub
End Module
response = requests.get("https://dsg-api.com/clients/{client_name}/luge/get_results?id={season_id}&type=season&client={client_name}&authkey={client_authkey}", auth=("User", "Password"))
Response Example
200 Success
{"datasportsgroup":{"version":"2.960.3","sport":"luge","lang":"en","generated_utc":"2025-08-01T15:14:01+00:00","method":{"method_id":"960","name":"get_results"},"tour":{"tour_id":"","name":"","gender":"","tour_type":"non-tour","tour_season":{"tour_season_id":"","title":"","name":"","logo":"","competition":{"competition_id":"3186","name":"Winter Olympics","gender":"both","type":"player","format":"race","area_id":"1","area_name":"World","last_updated":"2021-09-07 11:40:47","season":{"season_id":"64036","title":"2022 Beijing","original_name":"Winter Olympics","start_date":"2022-02-04","end_date":"2022-02-10","logo":"https:\/\/www.dsg-images.com\/comps\/200x200\/3185_1.png","last_updated":"2021-12-22 12:07:16","season_extra":{"status":"Scheduled","surface":"","type":"","city":{"city_id":"","city_name":""},"venue":{"venue_id":"","venue_name":"","venue_image":""}},"discipline":[{"discipline_id":"378","name":"Singles","type":"contestant","gender":[{"value":"female","age_group":"senior","round":{"round_id":"61687","name":"Final","type":"table","start_date":"2022-02-07","start_time":"12:50:00","start_date_utc":"2022-02-07","start_time_utc":"11:50:00","end_date":"2022-02-08","end_time":"14:50:00","end_date_utc":"2022-02-07","end_time_utc":"13:50:00","last_updated":"2021-12-22 12:08:44","broadcasters":[],"round_extra":{"medal_round":"all"},"referees":[],"list":{"type":"regular","id":"","name":"","contestants":{"contestant":[{"position":"1","people_id":"7746575","first_name":"Natalie","last_name":"Geisenberger","short_name":"N. Geisenberger","common_name":"Natalie Geisenberger","nationality_area_id":"80","nationality_area_code":"DEU","nationality_area_name":"Germany","bib_number":"","order":"1","record":"","run_1":"58.402","run_2":"58.423","run_3":"58.226","run_4":"58.403","status":"","time":"0:03:53.454"},{"position":"2","people_id":"7752183","first_name":"Anna","last_name":"Berreiter","short_name":"A. Berreiter","common_name":"Anna Berreiter","nationality_area_id":"80","nationality_area_code":"DEU","nationality_area_name":"Germany","bib_number":"","order":"3","record":"","run_1":"58.525","run_2":"58.508","run_3":"58.348","run_4":"58.566","status":"","time":"0:03:53.947"},{"position":"3","people_id":"7752193","first_name":"Tatyana","last_name":"Ivanova","short_name":"T. Ivanova","common_name":"Tatyana Ivanova","nationality_area_id":"297","nationality_area_code":"ROC","nationality_area_name":"Russian Olympic Committee","bib_number":"","order":"6","record":"","run_1":"58.733","run_2":"58.683","run_3":"58.461","run_4":"58.630","status":"","time":"0:03:54.507"},{"position":"4","people_id":"7746566","first_name":"Madeleine","last_name":"Egle","short_name":"M. Egle","common_name":"Madeleine Egle","nationality_area_id":"20","nationality_area_code":"AUT","nationality_area_name":"Austria","bib_number":"","order":"2","record":"","run_1":"59.324","run_2":"58.493","run_3":"58.542","run_4":"58.432","status":"","time":"0:03:54.809"},{"position":"5","people_id":"7746568","first_name":"Hannah","last_name":"Prock","short_name":"H. Prock","common_name":"Hannah Prock","nationality_area_id":"20","nationality_area_code":"AUT","nationality_area_name":"Austria","bib_number":"","order":"12","record":"","run_1":"58.762","run_2":"58.732","run_3":"58.532","run_4":"58.796","status":"","time":"0:03:54.824"},{"position":"6","people_id":"7752176","first_name":"Lisa","last_name":"Schulte","short_name":"L. Schulte","common_name":"Lisa Schulte","nationality_area_id":"20","nationality_area_code":"AUT","nationality_area_name":"Austria","bib_number":"","order":"10","record":"","run_1":"58.523","run_2":"59.074","run_3":"58.646","run_4":"58.642","status":"","time":"0:03:54.885"},{"position":"7","people_id":"7752184","first_name":"Julia","last_name":"Taubitz","short_name":"J. Taubitz","common_name":"Julia Taubitz","nationality_area_id":"80","nationality_area_code":"DEU","nationality_area_name":"Germany","bib_number":"","order":"5","record":"","run_1":"58.435","run_2":"1:00.075","run_3":"58.655","run_4":"58.358","status":"","time":"0:03:55.433"},{"position":"8","people_id":"7752188","first_name":"Eliza","last_name":"Tiruma","short_name":"E. Tiruma","common_name":"Eliza Tiruma","nationality_area_id":"111","nationality_area_code":"LVA","nationality_area_name":"Latvia","bib_number":"","order":"9","record":"","run_1":"58.956","run_2":"58.849","run_3":"58.865","run_4":"58.771","status":"","time":"0:03:55.441"},{"position":"9","people_id":"7752196","first_name":"Natalie","last_name":"Maag","short_name":"N. Maag","common_name":"Natalie Maag","nationality_area_id":"185","nationality_area_code":"CHE","nationality_area_name":"Switzerland","bib_number":"","order":"18","record":"","run_1":"59.018","run_2":"59.117","run_3":"58.913","run_4":"58.892","status":"","time":"0:03:55.94"},{"position":"10","people_id":"7746578","first_name":"Andrea","last_name":"Voetter","short_name":"A. Voetter","common_name":"Andrea Voetter","nationality_area_id":"100","nationality_area_code":"ITA","nationality_area_name":"Italy","bib_number":"","order":"8","record":"","run_1":"59.145","run_2":"59.045","run_3":"58.852","run_4":"58.935","status":"","time":"0:03:55.977"},{"position":"11","people_id":"7746581","first_name":"Kendija","last_name":"Aparjode","short_name":"K. Aparjode","common_name":"Kendija Aparjode","nationality_area_id":"111","nationality_area_code":"LVA","nationality_area_name":"Latvia","bib_number":"","order":"28","record":"","run_1":"59.107","run_2":"59.020","run_3":"58.928","run_4":"59.084","status":"","time":"0:03:56.139"},{"position":"12","people_id":"7752198","first_name":"Ashley","last_name":"Farquharson","short_name":"A. Farquharson","common_name":"Ashley Farquharson","nationality_area_id":"203","nationality_area_code":"USA","nationality_area_name":"United States","bib_number":"","order":"24","record":"","run_1":"59.972","run_2":"59.024","run_3":"58.768","run_4":"58.643","status":"","time":"0:03:56.407"},{"position":"13","people_id":"7752186","first_name":"Verena","last_name":"Hofer","short_name":"V. Hofer","common_name":"Verena Hofer","nationality_area_id":"100","nationality_area_code":"ITA","nationality_area_name":"Italy","bib_number":"","order":"19","record":"","run_1":"58.960","run_2":"59.037","run_3":"58.961","run_4":"59.584","status":"","time":"0:03:56.542"},{"position":"14","people_id":"7752178","first_name":"Trinity","last_name":"Ellis","short_name":"T. Ellis","common_name":"Trinity Ellis","nationality_area_id":"43","nationality_area_code":"CAN","nationality_area_name":"Canada","bib_number":"","order":"15","record":"","run_1":"59.219","run_2":"59.053","run_3":"58.888","run_4":"59.704","status":"","time":"0:03:56.864"},{"position":"15","people_id":"7752187","first_name":"Nina","last_name":"Zoeggeler","short_name":"N. Zoeggeler","common_name":"Nina Zoeggeler","nationality_area_id":"100","nationality_area_code":"ITA","nationality_area_name":"Italy","bib_number":"","order":"13","record":"","run_1":"59.464","run_2":"59.160","run_3":"59.085","run_4":"59.275","status":"","time":"0:03:56.984"},{"position":"16","people_id":"7752177","first_name":"Natalie","last_name":"Corless","short_name":"N. Corless","common_name":"Natalie Corless","nationality_area_id":"43","nationality_area_code":"CAN","nationality_area_name":"Canada","bib_number":"","order":"29","record":"","run_1":"59.193","run_2":"59.316","run_3":"59.176","run_4":"59.570","status":"","time":"0:03:57.255"},{"position":"17","people_id":"7752179","first_name":"Makena","last_name":"Hodgson","short_name":"M. Hodgson","common_name":"Makena Hodgson","nationality_area_id":"43","nationality_area_code":"CAN","nationality_area_name":"Canada","bib_number":"","order":"17","record":"","run_1":"59.505","run_2":"59.477","run_3":"59.286","run_4":"59.268","status":"","time":"0:03:57.536"},{"position":"18","people_id":"7752189","first_name":"Elina","last_name":"Vitola","short_name":"E. Vitola","common_name":"Elina Vitola","nationality_area_id":"111","nationality_area_code":"LVA","nationality_area_name":"Latvia","bib_number":"","order":"4","record":"","run_1":"59.025","run_2":"59.140","run_3":"59.029","run_4":"1:00.957","status":"","time":"0:03:58.151"},{"position":"19","people_id":"7746579","first_name":"Aileen Christina","last_name":"Frisch","short_name":"A. Frisch","common_name":"Aileen Frisch","nationality_area_id":"107","nationality_area_code":"KOR","nationality_area_name":"Korea Republic","bib_number":"","order":"26","record":"","run_1":"59.776","run_2":"59.642","run_3":"59.055","run_4":"1:01.811","status":"","time":"0:04:00.284"},{"position":"20","people_id":"7752195","first_name":"Tove","last_name":"Kohala","short_name":"T. Kohala","common_name":"Tove Kohala","nationality_area_id":"184","nationality_area_code":"SWE","nationality_area_name":"Sweden","bib_number":"","order":"30","record":"","run_1":"59.533","run_2":"59.776","run_3":"59.333","run_4":"1:02.431","status":"","time":"0:04:01.073"},{"position":"21","people_id":"7752197","first_name":"Yulianna","last_name":"Tunytska","short_name":"Y. Tunytska","common_name":"Yulianna Tunytska","nationality_area_id":"201","nationality_area_code":"UKR","nationality_area_name":"Ukraine","bib_number":"","order":"25","record":"","run_1":"59.690","run_2":"59.844","run_3":"59.571","run_4":"","status":"","time":"0:02:59.105"},{"position":"22","people_id":"7746594","first_name":"Olena","last_name":"Stetskiv","short_name":"O. Stetskiv","common_name":"Olena Stetskiv","nationality_area_id":"201","nationality_area_code":"UKR","nationality_area_name":"Ukraine","bib_number":"","order":"20","record":"","run_1":"59.663","run_2":"59.586","run_3":"59.963","run_4":"","status":"","time":"0:02:59.212"},{"position":"23","people_id":"7746595","first_name":"Summer","last_name":"Britcher","short_name":"S. Britcher","common_name":"Summer Britcher","nationality_area_id":"203","nationality_area_code":"USA","nationality_area_name":"United States","bib_number":"","order":"23","record":"","run_1":"1:00.986","run_2":"59.156","run_3":"59.152","run_4":"","status":"","time":"0:02:59.294"},{"position":"24","people_id":"7746564","first_name":"Veronica Maria","last_name":"Ravenna","short_name":"Veronica Ravenna","common_name":"Veronica Ravenna","nationality_area_id":"16","nationality_area_code":"ARG","nationality_area_name":"Argentina","bib_number":"","order":"34","record":"","run_1":"59.81","run_2":"59.780","run_3":"59.719","run_4":"","status":"","time":"0:02:59.31"},{"position":"25","people_id":"7746592","first_name":"Katarina","last_name":"Simonakova","short_name":"K. Simonakova","common_name":"Katarina Simonakova","nationality_area_id":"171","nationality_area_code":"SVK","nationality_area_name":"Slovakia","bib_number":"","order":"21","record":"","run_1":"1:00.124","run_2":"59.851","run_3":"59.761","run_4":"","status":"","time":"0:02:59.736"},{"position":"26","people_id":"7746597","first_name":"Emily","last_name":"Sweeney","short_name":"E. Sweeney","common_name":"Emily Sweeney","nationality_area_id":"203","nationality_area_code":"USA","nationality_area_name":"United States","bib_number":"","order":"14","record":"","run_1":"58.971","run_2":"1:02.439","run_3":"58.882","run_4":"","status":"","time":"0:03:00.292"},{"position":"27","people_id":"7752190","first_name":"Klaudia","last_name":"Domaradzka","short_name":"K. Domaradzka","common_name":"Klaudia Domaradzka","nationality_area_id":"155","nationality_area_code":"POL","nationality_area_name":"Poland","bib_number":"","order":"22","record":"","run_1":"59.871","run_2":"59.892","run_3":"1:01.313","run_4":"","status":"","time":"0:03:01.076"},{"position":"28","people_id":"7752192","first_name":"Viktoriia","last_name":"Demchenko","short_name":"V. Demchenko","common_name":"Viktoriia Demchenko","nationality_area_id":"297","nationality_area_code":"ROC","nationality_area_name":"Russian Olympic Committee","bib_number":"","order":"11","record":"","run_1":"58.869","run_2":"1:03.466","run_3":"58.838","run_4":"","status":"","time":"0:03:01.173"},{"position":"29","people_id":"7752180","first_name":"Peixuan","last_name":"Wang","short_name":"Wang Peixuan","common_name":"Wang Peixuan","nationality_area_id":"49","nationality_area_code":"CHN","nationality_area_name":"China PR","bib_number":"","order":"32","record":"","run_1":"1:00.986","run_2":"1:00.391","run_3":"1:00.025","run_4":"","status":"","time":"0:03:01.402"},{"position":"30","people_id":"7752182","first_name":"Anna","last_name":"Cezikova","short_name":"A. Cezikova","common_name":"Anna Cezikova","nationality_area_id":"59","nationality_area_code":"CZE","nationality_area_name":"Czechia","bib_number":"","order":"31","record":"","run_1":"1:00.392","run_2":"1:01.169","run_3":"1:00.101","run_4":"","status":"","time":"0:03:01.662"},{"position":"31","people_id":"7752181","first_name":"Sin-Rong","last_name":"Lin","short_name":"Lin Sin-Rong","common_name":"Lin Sin-Rong","nationality_area_id":"50","nationality_area_code":"TPE","nationality_area_name":"Chinese Taipei","bib_number":"","order":"33","record":"","run_1":"1:01.550","run_2":"1:01.057","run_3":"1:01.004","run_4":"","status":"","time":"0:03:03.611"},{"position":"32","people_id":"7752191","first_name":"Doina","last_name":"Descalui","short_name":"D. Descalui","common_name":"Doina Descalui","nationality_area_id":"130","nationality_area_code":"MHL","nationality_area_name":"Moldova","bib_number":"","order":"35","record":"","run_1":"1:01.928","run_2":"1:02.192","run_3":"1:02.174","run_4":"","status":"","time":"0:03:06.294"},{"position":"33","people_id":"7752185","first_name":"Elsa","last_name":"Desmond","short_name":"E. Desmond","common_name":"Elsa Desmond","nationality_area_id":"98","nationality_area_code":"IRL","nationality_area_name":"Republic of Ireland","bib_number":"","order":"27","record":"","run_1":"1:01.608","run_2":"1:03.857","run_3":"1:02.254","run_4":"","status":"","time":"0:03:07.719"},{"position":"","people_id":"7746589","first_name":"Raluca","last_name":"Stramaturaru","short_name":"R. Stramaturaru","common_name":"Raluca Stramaturaru","nationality_area_id":"159","nationality_area_code":"ROU","nationality_area_name":"Romania","bib_number":"","order":"16","record":"","run_1":"1:01.357","run_2":"1:00.305","run_3":"DNF","run_4":"","status":"DNF","time":"0:02:01.662"}]}}}},{"value":"male","age_group":"senior","round":{"round_id":"61686","name":"Final","type":"table","start_date":"2022-02-05","start_time":"12:10:00","start_date_utc":"2022-02-05","start_time_utc":"11:10:00","end_date":"2022-02-06","end_time":"15:00:00","end_date_utc":"2022-02-05","end_time_utc":"14:00:00","last_updated":"2021-12-22 12:08:44","broadcasters":[],"round_extra":{"medal_round":"all"},"referees":[],"list":{"type":"regular","id":"","name":"","contestants":{"contestant":[{"position":"1","people_id":"508722","first_name":"Johannes","last_name":"Ludwig","short_name":"J. Ludwig","common_name":"Johannes Ludwig","nationality_area_id":"80","nationality_area_code":"DEU","nationality_area_name":"Germany","bib_number":"","order":"4","record":"","run_1":"57.063","run_2":"57.438","run_3":"57.043","run_4":"57.191","status":"","time":"0:03:48.735"},{"position":"2","people_id":"508711","first_name":"Wolfgang","last_name":"Kindl","short_name":"W. Kindl","common_name":"Wolfgang Kindl","nationality_area_id":"20","nationality_area_code":"AUT","nationality_area_name":"Austria","bib_number":"","order":"1","record":"","run_1":"57.110","run_2":"57.430","run_3":"57.117","run_4":"57.238","status":"","time":"0:03:48.895"},{"position":"3","people_id":"508724","first_name":"Dominik","last_name":"Fischnaller","short_name":"D. Fischnaller","common_name":"Dominik Fischnaller","nationality_area_id":"100","nationality_area_code":"ITA","nationality_area_name":"Italy","bib_number":"","order":"10","record":"","run_1":"57.361","run_2":"57.444","run_3":"57.461","run_4":"57.420","status":"","time":"0:03:49.686"},{"position":"4","people_id":"508721","first_name":"Felix","last_name":"Loch","short_name":"F. Loch","common_name":"Felix Loch","nationality_area_id":"80","nationality_area_code":"DEU","nationality_area_name":"Germany","bib_number":"","order":"2","record":"","run_1":"57.383","run_2":"57.500","run_3":"57.510","run_4":"57.485","status":"","time":"0:03:49.878"},{"position":"5","people_id":"508731","first_name":"Kristers","last_name":"Aparjods","short_name":"K. Aparjods","common_name":"Kristers Aparjods","nationality_area_id":"111","nationality_area_code":"LVA","nationality_area_name":"Latvia","bib_number":"","order":"3","record":"","run_1":"57.364","run_2":"57.597","run_3":"57.399","run_4":"57.693","status":"","time":"0:03:50.053"},{"position":"6","people_id":"7752168","first_name":"Max","last_name":"Langenhahn","short_name":"M. Langenhahn","common_name":"Max Langenhahn","nationality_area_id":"80","nationality_area_code":"DEU","nationality_area_name":"Germany","bib_number":"","order":"5","record":"","run_1":"57.606","run_2":"57.536","run_3":"57.521","run_4":"57.429","status":"","time":"0:03:50.092"},{"position":"7","people_id":"7752171","first_name":"Gints","last_name":"Berzins","short_name":"G. Berzins","common_name":"Gints Berzins","nationality_area_id":"111","nationality_area_code":"LVA","nationality_area_name":"Latvia","bib_number":"","order":"7","record":"","run_1":"57.414","run_2":"57.709","run_3":"57.480","run_4":"57.570","status":"","time":"0:03:50.173"},{"position":"8","people_id":"508746","first_name":"Christopher","last_name":"Mazdzer","short_name":"C. Mazdzer","common_name":"Chris Mazdzer","nationality_area_id":"203","nationality_area_code":"USA","nationality_area_name":"United States","bib_number":"","order":"18","record":"","run_1":"57.780","run_2":"58.039","run_3":"57.779","run_4":"57.779","status":"","time":"0:03:51.377"},{"position":"9","people_id":"508732","first_name":"Roman Alexandrovich","last_name":"Repilov","short_name":"R. Repilov","common_name":"Roman Repilov","nationality_area_id":"297","nationality_area_code":"ROC","nationality_area_name":"Russian Olympic Committee","bib_number":"","order":"12","record":"","run_1":"57.594","run_2":"58.679","run_3":"57.714","run_4":"57.647","status":"","time":"0:03:51.634"},{"position":"10","people_id":"508733","first_name":"Semen Aleksandrovich","last_name":"Pavlichenko","short_name":"S. Pavlichenko","common_name":"Semen Pavlichenko","nationality_area_id":"297","nationality_area_code":"ROC","nationality_area_name":"Russian Olympic Committee","bib_number":"","order":"8","record":"","run_1":"57.786","run_2":"58.115","run_3":"57.955","run_4":"57.793","status":"","time":"0:03:51.649"},{"position":"11","people_id":"7752169","first_name":"Leon","last_name":"Felderer","short_name":"L. Felderer","common_name":"Leon Felderer","nationality_area_id":"100","nationality_area_code":"ITA","nationality_area_name":"Italy","bib_number":"","order":"24","record":"","run_1":"57.814","run_2":"58.211","run_3":"57.855","run_4":"57.960","status":"","time":"0:03:51.84"},{"position":"12","people_id":"7752163","first_name":"Nico","last_name":"Gleirscher","short_name":"N. Gleirscher","common_name":"Nico Gleirscher","nationality_area_id":"20","nationality_area_code":"AUT","nationality_area_name":"Austria","bib_number":"","order":"6","record":"","run_1":"59.110","run_2":"58.351","run_3":"57.370","run_4":"57.452","status":"","time":"0:03:52.283"},{"position":"13","people_id":"508749","first_name":"Tucker","last_name":"West","short_name":"T. West","common_name":"Tucker West","nationality_area_id":"203","nationality_area_code":"USA","nationality_area_name":"United States","bib_number":"","order":"21","record":"","run_1":"58.079","run_2":"57.831","run_3":"58.534","run_4":"57.916","status":"","time":"0:03:52.36"},{"position":"14","people_id":"7752172","first_name":"Aleksandr","last_name":"Gorbatcevich","short_name":"A. Gorbatcevich","common_name":"Aleksandr Gorbatcevich","nationality_area_id":"297","nationality_area_code":"ROC","nationality_area_name":"Russian Olympic Committee","bib_number":"","order":"16","record":"","run_1":"58.139","run_2":"58.339","run_3":"58.080","run_4":"58.043","status":"","time":"0:03:52.601"},{"position":"15","people_id":"508709","first_name":"David","last_name":"Gleirscher","short_name":"D. Gleirscher","common_name":"David Gleirscher","nationality_area_id":"20","nationality_area_code":"AUT","nationality_area_name":"Austria","bib_number":"","order":"11","record":"","run_1":"57.407","run_2":"58.240","run_3":"58.908","run_4":"58.617","status":"","time":"0:03:53.172"},{"position":"16","people_id":"508708","first_name":"Alexander","last_name":"Ferlazzo","short_name":"A. Ferlazzo","common_name":"Alexander Ferlazzo","nationality_area_id":"19","nationality_area_code":"AUS","nationality_area_name":"Australia","bib_number":"","order":"22","record":"","run_1":"58.216","run_2":"58.994","run_3":"58.122","run_4":"57.887","status":"","time":"0:03:53.219"},{"position":"17","people_id":"508714","first_name":"Reid","last_name":"Watts","short_name":"R. Watts","common_name":"Reid Watts","nationality_area_id":"43","nationality_area_code":"CAN","nationality_area_name":"Canada","bib_number":"","order":"14","record":"","run_1":"58.049","run_2":"59.071","run_3":"58.108","run_4":"58.065","status":"","time":"0:03:53.293"},{"position":"18","people_id":"508729","first_name":"Artūrs","last_name":"Dārznieks","short_name":"A. Dārznieks","common_name":"Artūrs Dārznieks","nationality_area_id":"111","nationality_area_code":"LVA","nationality_area_name":"Latvia","bib_number":"","order":"23","record":"","run_1":"58.166","run_2":"59.370","run_3":"57.932","run_4":"58.241","status":"","time":"0:03:53.709"},{"position":"19","people_id":"7752175","first_name":"Jonathan","last_name":"Gustafson","short_name":"J. Gustafson","common_name":"Jonathan Gustafson","nationality_area_id":"203","nationality_area_code":"USA","nationality_area_name":"United States","bib_number":"","order":"19","record":"","run_1":"57.845","run_2":"59.330","run_3":"58.496","run_4":"58.275","status":"","time":"0:03:53.946"},{"position":"20","people_id":"7752174","first_name":"Svante","last_name":"Kohala","short_name":"S. Kohala","common_name":"Svante Kohala","nationality_area_id":"184","nationality_area_code":"SWE","nationality_area_name":"Sweden","bib_number":"","order":"34","record":"","run_1":"58.517","run_2":"58.779","run_3":"58.368","run_4":"58.333","status":"","time":"0:03:53.997"},{"position":"21","people_id":"508741","first_name":"Jozef","last_name":"Ninis","short_name":"J. Ninis","common_name":"Jozef Ninis","nationality_area_id":"171","nationality_area_code":"SVK","nationality_area_name":"Slovakia","bib_number":"","order":"15","record":"","run_1":"58.205","run_2":"58.764","run_3":"58.856","run_4":"","status":"","time":"0:02:55.825"},{"position":"22","people_id":"508745","first_name":"Anton","last_name":"Dukach","short_name":"A. Dukach","common_name":"Anton Dukach","nationality_area_id":"201","nationality_area_code":"UKR","nationality_area_name":"Ukraine","bib_number":"","order":"20","record":"","run_1":"58.873","run_2":"58.726","run_3":"58.408","run_4":"","status":"","time":"0:02:56.007"},{"position":"23","people_id":"508720","first_name":"Rupert","last_name":"Staudinger","short_name":"R. Staudinger","common_name":"Rupert Staudinger","nationality_area_id":"80","nationality_area_code":"DEU","nationality_area_name":"Germany","bib_number":"","order":"26","record":"","run_1":"58.731","run_2":"58.960","run_3":"58.622","run_4":"","status":"","time":"0:02:56.313"},{"position":"24","people_id":"7752165","first_name":"Duoyao","last_name":"Fan","short_name":"Fan Duoyao","common_name":"Fan Duoyao","nationality_area_id":"49","nationality_area_code":"CHN","nationality_area_name":"China PR","bib_number":"","order":"25","record":"","run_1":"58.848","run_2":"58.883","run_3":"58.895","run_4":"","status":"","time":"0:02:56.626"},{"position":"25","people_id":"508736","first_name":"Mateusz","last_name":"Sochowicz","short_name":"M. Sochowicz","common_name":"Mateusz Sochowicz","nationality_area_id":"155","nationality_area_code":"POL","nationality_area_name":"Poland","bib_number":"","order":"35","record":"","run_1":"58.863","run_2":"59.196","run_3":"58.867","run_4":"","status":"","time":"0:02:56.926"},{"position":"26","people_id":"7752173","first_name":"Marian","last_name":"Skupek","short_name":"M. Skupek","common_name":"Marian Skupek","nationality_area_id":"171","nationality_area_code":"SVK","nationality_area_name":"Slovakia","bib_number":"","order":"32","record":"","run_1":"58.956","run_2":"58.976","run_3":"59.051","run_4":"","status":"","time":"0:02:56.983"},{"position":"27","people_id":"508744","first_name":"Andriy","last_name":"Mandziy","short_name":"A. Mandziy","common_name":"Andriy Mandziy","nationality_area_id":"201","nationality_area_code":"UKR","nationality_area_name":"Ukraine","bib_number":"","order":"13","record":"","run_1":"1.01.082","run_2":"58.706","run_3":"58.346","run_4":"","status":"","time":"0:02:58.134"},{"position":"28","people_id":"508712","first_name":"Pavel Rusinov","last_name":"Angelov","short_name":"P. Angelov","common_name":"Pavel Angelov","nationality_area_id":"38","nationality_area_code":"BGR","nationality_area_name":"Bulgaria","bib_number":"","order":"33","record":"","run_1":"59.555","run_2":"59.753","run_3":"59.545","run_4":"","status":"","time":"0:02:58.853"},{"position":"29","people_id":"508738","first_name":"Valentin","last_name":"Crețu","short_name":"V. Crețu","common_name":"Valentin Crețu","nationality_area_id":"159","nationality_area_code":"ROU","nationality_area_name":"Romania","bib_number":"","order":"17","record":"","run_1":"58.349","run_2":"58.362","run_3":"1:02.223","run_4":"","status":"","time":"0:02:58.934"},{"position":"30","people_id":"7752166","first_name":"Michael","last_name":"Lejsek","short_name":"M. Lejsek","common_name":"Michael Lejsek","nationality_area_id":"59","nationality_area_code":"CZE","nationality_area_name":"Czechia","bib_number":"","order":"30","record":"","run_1":"59.542","run_2":"59.945","run_3":"1:00.080","run_4":"","status":"","time":"0:02:59.567"},{"position":"31","people_id":"7752167","first_name":"Saba","last_name":"Kumaritashvili","short_name":"S. Kumaritashvili","common_name":"Saba Kumaritashvili","nationality_area_id":"79","nationality_area_code":"GEO","nationality_area_name":"Georgia","bib_number":"","order":"27","record":"","run_1":"1.00.211","run_2":"1:00.146","run_3":"1:00.036","run_4":"","status":"","time":"0:03:00.393"},{"position":"32","people_id":"7752170","first_name":"Seiya","last_name":"Kobayashi","short_name":"S. Kobayashi","common_name":"Seiya Kobayashi","nationality_area_id":"102","nationality_area_code":"JPN","nationality_area_name":"Japan","bib_number":"","order":"28","record":"","run_1":"1.00.856","run_2":"1:00.919","run_3":"59.859","run_4":"","status":"","time":"0:03:01.634"},{"position":"33","people_id":"508728","first_name":"Namkyu","last_name":"Lim","short_name":"Lim Namkyu","common_name":"Lim Namkyu","nationality_area_id":"107","nationality_area_code":"KOR","nationality_area_name":"Korea Republic","bib_number":"","order":"29","record":"","run_1":"1.02.438","run_2":"59.794","run_3":"59.538","run_4":"","status":"","time":"0:03:01.77"},{"position":"34","people_id":"7752164","first_name":"Mirza","last_name":"Nikolajev","short_name":"M. Nikolajev","common_name":"Mirza Nikolajev","nationality_area_id":"33","nationality_area_code":"BIH","nationality_area_name":"Bosnia and Herzegovina","bib_number":"","order":"31","record":"","run_1":"1.01.667","run_2":"1:02.507","run_3":"1:01.175","run_4":"","status":"","time":"0:03:05.349"},{"position":"","people_id":"508726","first_name":"Kevin","last_name":"Fischnaller","short_name":"K. Fischnaller","common_name":"Kevin Fischnaller","nationality_area_id":"100","nationality_area_code":"ITA","nationality_area_name":"Italy","bib_number":"","order":"9","record":"","run_1":"","run_2":"","run_3":"","run_4":"","status":"DNS","time":""}]}}}}]},{"discipline_id":"379","name":"Doubles","type":"contestant_team","gender":{"value":"male","age_group":"senior","round":{"round_id":"61688","name":"Final","type":"table","start_date":"2022-02-09","start_time":"13:20:00","start_date_utc":"2022-02-09","start_time_utc":"12:20:00","end_date":"2022-02-09","end_time":"15:20:00","end_date_utc":"2022-02-09","end_time_utc":"14:20:00","last_updated":"2021-12-22 12:08:45","broadcasters":[],"round_extra":{"medal_round":"all"},"referees":[],"list":{"type":"regular","id":"","name":"","contestants":{"contestant":[{"position":"1","contestant_team_id":"28975","bib_number":"5","record":"","run_1":"58.255","run_2":"58.299","status":"","time":"0:01:56.554","people":[{"people_id":"7746437","first_name":"Tobias","last_name":"Wendl","short_name":"T. Wendl","common_name":"Tobias Wendl","nationality_area_id":"80","nationality_area_code":"DEU","nationality_area_name":"Germany"},{"people_id":"7746434","first_name":"Tobias","last_name":"Arlt","short_name":"T. Arlt","common_name":"Tobias Arlt","nationality_area_id":"80","nationality_area_code":"DEU","nationality_area_name":"Germany"}]},{"position":"2","contestant_team_id":"28977","bib_number":"2","record":"","run_1":"58.300","run_2":"58.353","status":"","time":"0:01:56.653","people":[{"people_id":"7746436","first_name":"Toni","last_name":"Eggert","short_name":"T. Eggert","common_name":"Toni Eggert","nationality_area_id":"80","nationality_area_code":"DEU","nationality_area_name":"Germany"},{"people_id":"7746435","first_name":"Sascha","last_name":"Benecken","short_name":"S. Benecken","common_name":"Sascha Benecken","nationality_area_id":"80","nationality_area_code":"DEU","nationality_area_name":"Germany"}]},{"position":"3","contestant_team_id":"28978","bib_number":"11","record":"","run_1":"58.426","run_2":"58.639","status":"","time":"0:01:57.065","people":[{"people_id":"7746421","first_name":"Thomas","last_name":"Steu","short_name":"T. Steu","common_name":"Thomas Steu","nationality_area_id":"20","nationality_area_code":"AUT","nationality_area_name":"Austria"},{"people_id":"7746419","first_name":"Lorenz","last_name":"Koller","short_name":"L. Koller","common_name":"Lorenz Koller","nationality_area_id":"20","nationality_area_code":"AUT","nationality_area_name":"Austria"}]},{"position":"4","contestant_team_id":"29387","bib_number":"3","record":"","run_1":"58.628","run_2":"58.791","status":"","time":"0:01:57.419","people":[{"people_id":"7752206","first_name":"Martins","last_name":"Bots","short_name":"M. Bots","common_name":"Martins Bots","nationality_area_id":"111","nationality_area_code":"LVA","nationality_area_name":"Latvia"},{"people_id":"7752207","first_name":"Roberts","last_name":"Plume","short_name":"R. Plume","common_name":"Roberts Plume","nationality_area_id":"111","nationality_area_code":"LVA","nationality_area_name":"Latvia"}]},{"position":"5","contestant_team_id":"28980","bib_number":"1","record":"","run_1":"58.703","run_2":"58.734","status":"","time":"0:01:57.437","people":[{"people_id":"7746447","first_name":"Andris","last_name":"Sics","short_name":"A. Sics","common_name":"Andris Sics","nationality_area_id":"111","nationality_area_code":"LVA","nationality_area_name":"Latvia"},{"people_id":"7746448","first_name":"Juris","last_name":"Sics","short_name":"J. Sics","common_name":"Juris Sics","nationality_area_id":"111","nationality_area_code":"LVA","nationality_area_name":"Latvia"}]},{"position":"6","contestant_team_id":"29386","bib_number":"4","record":"","run_1":"58.602","run_2":"58.995","status":"","time":"0:01:57.597","people":[{"people_id":"508725","first_name":"Emmanuel","last_name":"Rieder","short_name":"E. Rieder","common_name":"Emmanuel Rieder","nationality_area_id":"100","nationality_area_code":"ITA","nationality_area_name":"Italy"},{"people_id":"7752205","first_name":"Simon","last_name":"Kainzwaldner","short_name":"S. Kainzwaldner","common_name":"Simon Kainzwaldner","nationality_area_id":"100","nationality_area_code":"ITA","nationality_area_name":"Italy"}]},{"position":"7","contestant_team_id":"28979","bib_number":"10","record":"","run_1":"58.895","run_2":"59.023","status":"","time":"0:01:57.918","people":[{"people_id":"7746425","first_name":"Tristan","last_name":"Walker","short_name":"T. Walker","common_name":"Tristan Walker","nationality_area_id":"43","nationality_area_code":"CAN","nationality_area_name":"Canada"},{"people_id":"7746423","first_name":"Justin","last_name":"Snith","short_name":"J. Snith","common_name":"Justin Snith","nationality_area_id":"43","nationality_area_code":"CAN","nationality_area_name":"Canada"}]},{"position":"8","contestant_team_id":"28985","bib_number":"8","record":"","run_1":"59.040","run_2":"58.953","status":"","time":"0:01:57.993","people":[{"people_id":"7746451","first_name":"Aleksandr","last_name":"Denisev","short_name":"A. Denisev","common_name":"Aleksandr Denisev","nationality_area_id":"297","nationality_area_code":"ROC","nationality_area_name":"Russian Olympic Committee"},{"people_id":"7746449","first_name":"Vladislav","last_name":"Antonov","short_name":"V. Antonov","common_name":"Vladislav Antonov","nationality_area_id":"297","nationality_area_code":"ROC","nationality_area_name":"Russian Olympic Committee"}]},{"position":"9","contestant_team_id":"28986","bib_number":"7","record":"","run_1":"58.992","run_2":"59.073","status":"","time":"0:01:58.065","people":[{"people_id":"7746454","first_name":"Wojciech","last_name":"Chmielewski","short_name":"W. Chmielewski","common_name":"Wojciech Chmielewski","nationality_area_id":"155","nationality_area_code":"POL","nationality_area_name":"Poland"},{"people_id":"7746456","first_name":"Jakub","last_name":"Kowalewski","short_name":"J. Kowalewski","common_name":"Jakub Kowalewski","nationality_area_id":"155","nationality_area_code":"POL","nationality_area_name":"Poland"}]},{"position":"10","contestant_team_id":"29388","bib_number":"6","record":"","run_1":"59.376","run_2":"59.132","status":"","time":"0:01:58.508","people":[{"people_id":"7746450","first_name":"Andrei","last_name":"Bogdanov","short_name":"A. Bogdanov","common_name":"Andrei Bogdanov","nationality_area_id":"297","nationality_area_code":"ROC","nationality_area_name":"Russian Olympic Committee"},{"people_id":"7752208","first_name":"Iurii","last_name":"Prokhorov","short_name":"I. Prokhorov","common_name":"Iurii Prokhorov","nationality_area_id":"297","nationality_area_code":"ROC","nationality_area_name":"Russian Olympic Committee"}]},{"position":"11","contestant_team_id":"29392","bib_number":"15","record":"","run_1":"59.389","run_2":"59.126","status":"","time":"0:01:58.515","people":[{"people_id":"7752216","first_name":"Zachary","last_name":"di Gregorio","short_name":"Z. di Gregorio","common_name":"Zachary di Gregorio","nationality_area_id":"203","nationality_area_code":"USA","nationality_area_name":"United States"},{"people_id":"7752217","first_name":"Sean","last_name":"Hollander","short_name":"S. Hollander","common_name":"Sean Hollander","nationality_area_id":"203","nationality_area_code":"USA","nationality_area_name":"United States"}]},{"position":"12","contestant_team_id":"28983","bib_number":"12","record":"","run_1":"59.361","run_2":"59.366","status":"","time":"0:01:58.727","people":[{"people_id":"7746443","first_name":"Jinyong","last_name":"Park","short_name":"Park Jinyong","common_name":"Park Jinyong","nationality_area_id":"107","nationality_area_code":"KOR","nationality_area_name":"Korea Republic"},{"people_id":"7746442","first_name":"Jungmyung","last_name":"Cho","short_name":"Cho Jungmyung","common_name":"Cho Jungmyung","nationality_area_id":"107","nationality_area_code":"KOR","nationality_area_name":"Korea Republic"}]},{"position":"13","contestant_team_id":"29390","bib_number":"9","record":"","run_1":"1:00.138","run_2":"59.704","status":"","time":"0:01:59.842","people":[{"people_id":"7752212","first_name":"Tomas","last_name":"Vavercak","short_name":"T. Vavercak","common_name":"Tomas Vavercak","nationality_area_id":"171","nationality_area_code":"SVK","nationality_area_name":"Slovakia"},{"people_id":"7752213","first_name":"Matej","last_name":"Zmij","short_name":"M. Zmij","common_name":"Matej Zmij","nationality_area_id":"171","nationality_area_code":"SVK","nationality_area_name":"Slovakia"}]},{"position":"14","contestant_team_id":"29389","bib_number":"13","record":"","run_1":"59.694","run_2":"1:00.243","status":"","time":"0:01:59.937","people":[{"people_id":"7752209","first_name":"Marian","last_name":"Gitlan","short_name":"M. Gitlan","common_name":"Marian Gitlan","nationality_area_id":"159","nationality_area_code":"ROU","nationality_area_name":"Romania"},{"people_id":"7752211","first_name":"Darius-Lucian","last_name":"Serban","short_name":"D. Serban","common_name":"Darius-Lucian Serban","nationality_area_id":"159","nationality_area_code":"ROU","nationality_area_name":"Romania"}]},{"position":"15","contestant_team_id":"29391","bib_number":"14","record":"","run_1":"59.983","run_2":"1:00.080","status":"","time":"0:02:00.063","people":[{"people_id":"7752214","first_name":"Ihor","last_name":"Stakhiv","short_name":"I. Stakhiv","common_name":"Ihor Stakhiv","nationality_area_id":"201","nationality_area_code":"UKR","nationality_area_name":"Ukraine"},{"people_id":"7752215","first_name":"Andrii","last_name":"Lysetskyi","short_name":"A. Lysetskyi","common_name":"Andrii Lysetskyi","nationality_area_id":"201","nationality_area_code":"UKR","nationality_area_name":"Ukraine"}]},{"position":"16","contestant_team_id":"29385","bib_number":"17","record":"","run_1":"1:00.248","run_2":"59.869","status":"","time":"0:02:00.117","people":[{"people_id":"7752203","first_name":"Filip","last_name":"Vejdelek","short_name":"F. Vejdelek","common_name":"Filip Vejdelek","nationality_area_id":"59","nationality_area_code":"CZE","nationality_area_name":"Czechia"},{"people_id":"7752204","first_name":"Zdenek","last_name":"Pekny","short_name":"Z. Pekny","common_name":"Zdenek Pekny","nationality_area_id":"59","nationality_area_code":"CZE","nationality_area_name":"Czechia"}]},{"position":"17","contestant_team_id":"29384","bib_number":"16","record":"","run_1":"1:00.732","run_2":"1:00.840","status":"","time":"0:02:01.572","people":[{"people_id":"7752201","first_name":"Yebo","last_name":"Huang","short_name":"Huang Yebo","common_name":"Huang Yebo","nationality_area_id":"49","nationality_area_code":"CHN","nationality_area_name":"China PR"},{"people_id":"7752202","first_name":"Junyue","last_name":"Peng","short_name":"Peng Junyue","common_name":"Peng Junyue","nationality_area_id":"49","nationality_area_code":"CHN","nationality_area_name":"China PR"}]}]}}}}},{"discipline_id":"380","name":"Team Relay","type":"team","gender":{"value":"mixed","age_group":"senior","round":{"round_id":"61689","name":"Final","type":"table","start_date":"2022-02-10","start_time":"14:30:00","start_date_utc":"2022-02-10","start_time_utc":"13:30:00","end_date":"2022-02-10","end_time":"16:30:00","end_date_utc":"2022-02-10","end_time_utc":"15:30:00","last_updated":"2021-12-22 12:08:45","broadcasters":[],"round_extra":{"medal_round":"all"},"referees":[],"list":{"type":"regular","id":"","name":"","teams":{"team":[{"position":"1","team_id":"52953","team_name":"Germany","team_short_name":"Germany","team_area_id":"80","team_area_code":"DEU","team_area_name":"Germany","bib_number":"14","record":"","run_1":"1:00.090","run_2":"1:01.407","run_3":"1:01.909","status":"","time":"0:03:03.406","contestants":{"contestant":[{"bib_number":"","people_id":"7746575","first_name":"Natalie","last_name":"Geisenberger","short_name":"N. Geisenberger","common_name":"Natalie Geisenberger"},{"bib_number":"","people_id":"508722","first_name":"Johannes","last_name":"Ludwig","short_name":"J. Ludwig","common_name":"Johannes Ludwig"},{"bib_number":"","people_id":"7746437","first_name":"Tobias","last_name":"Wendl","short_name":"T. Wendl","common_name":"Tobias Wendl"},{"bib_number":"","people_id":"7746434","first_name":"Tobias","last_name":"Arlt","short_name":"T. Arlt","common_name":"Tobias Arlt"}]}},{"position":"2","team_id":"52955","team_name":"Austria","team_short_name":"Austria","team_area_id":"20","team_area_code":"AUT","team_area_name":"Austria","bib_number":"13","record":"","run_1":"1:00.054","run_2":"1:01.342","run_3":"1:02.090","status":"","time":"0:03:03.486","contestants":{"contestant":[{"bib_number":"","people_id":"7746566","first_name":"Madeleine","last_name":"Egle","short_name":"M. Egle","common_name":"Madeleine Egle"},{"bib_number":"","people_id":"508711","first_name":"Wolfgang","last_name":"Kindl","short_name":"W. Kindl","common_name":"Wolfgang Kindl"},{"bib_number":"","people_id":"7746421","first_name":"Thomas","last_name":"Steu","short_name":"T. Steu","common_name":"Thomas Steu"},{"bib_number":"","people_id":"7746419","first_name":"Lorenz","last_name":"Koller","short_name":"L. Koller","common_name":"Lorenz Koller"}]}},{"position":"3","team_id":"52958","team_name":"Latvia","team_short_name":"Latvia","team_area_id":"111","team_area_code":"LVA","team_area_name":"Latvia","bib_number":"12","record":"","run_1":"1:00.578","run_2":"1:01.451","run_3":"1:02.325","status":"","time":"0:03:04.354","contestants":{"contestant":[{"bib_number":"","people_id":"7752188","first_name":"Eliza","last_name":"Tiruma","short_name":"E. Tiruma","common_name":"Eliza Tiruma"},{"bib_number":"","people_id":"508731","first_name":"Kristers","last_name":"Aparjods","short_name":"K. Aparjods","common_name":"Kristers Aparjods"},{"bib_number":"","people_id":"7752206","first_name":"Martins","last_name":"Bots","short_name":"M. Bots","common_name":"Martins Bots"},{"bib_number":"","people_id":"7752207","first_name":"Roberts","last_name":"Plume","short_name":"R. Plume","common_name":"Roberts Plume"}]}},{"position":"4","team_id":"52959","team_name":"Russia","team_short_name":"Russia","team_area_id":"160","team_area_code":"RUS","team_area_name":"Russia","bib_number":"10","record":"","run_1":"1:00.147","run_2":"1:01.757","run_3":"1:02.763","status":"","time":"0:03:04.667","contestants":{"contestant":[{"bib_number":"","people_id":"7752193","first_name":"Tatyana","last_name":"Ivanova","short_name":"T. Ivanova","common_name":"Tatyana Ivanova"},{"bib_number":"","people_id":"508732","first_name":"Roman Alexandrovich","last_name":"Repilov","short_name":"R. Repilov","common_name":"Roman Repilov"},{"bib_number":"","people_id":"7746451","first_name":"Aleksandr","last_name":"Denisev","short_name":"A. Denisev","common_name":"Aleksandr Denisev"},{"bib_number":"","people_id":"7746449","first_name":"Vladislav","last_name":"Antonov","short_name":"V. Antonov","common_name":"Vladislav Antonov"}]}},{"position":"5","team_id":"52957","team_name":"Italy","team_short_name":"Italy","team_area_id":"100","team_area_code":"ITA","team_area_name":"Italy","bib_number":"11","record":"","run_1":"1:00.618","run_2":"1:01.960","run_3":"1:02.274","status":"","time":"0:03:04.852","contestants":{"contestant":[{"bib_number":"","people_id":"7746578","first_name":"Andrea","last_name":"Voetter","short_name":"A. Voetter","common_name":"Andrea Voetter"},{"bib_number":"","people_id":"7752169","first_name":"Leon","last_name":"Felderer","short_name":"L. Felderer","common_name":"Leon Felderer"},{"bib_number":"","people_id":"508725","first_name":"Emmanuel","last_name":"Rieder","short_name":"E. Rieder","common_name":"Emmanuel Rieder"},{"bib_number":"","people_id":"7752205","first_name":"Simon","last_name":"Kainzwaldner","short_name":"S. Kainzwaldner","common_name":"Simon Kainzwaldner"}]}},{"position":"6","team_id":"52954","team_name":"Canada","team_short_name":"Canada","team_area_id":"43","team_area_code":"CAN","team_area_name":"Canada","bib_number":"8","record":"","run_1":"1:00.880","run_2":"1:02.222","run_3":"1:02.133","status":"","time":"0:03:05.235","contestants":{"contestant":[{"bib_number":"","people_id":"7752178","first_name":"Trinity","last_name":"Ellis","short_name":"T. Ellis","common_name":"Trinity Ellis"},{"bib_number":"","people_id":"508714","first_name":"Reid","last_name":"Watts","short_name":"R. Watts","common_name":"Reid Watts"},{"bib_number":"","people_id":"7746425","first_name":"Tristan","last_name":"Walker","short_name":"T. Walker","common_name":"Tristan Walker"},{"bib_number":"","people_id":"7746423","first_name":"Justin","last_name":"Snith","short_name":"J. Snith","common_name":"Justin Snith"}]}},{"position":"7","team_id":"52956","team_name":"United States","team_short_name":"United States","team_area_id":"203","team_area_code":"USA","team_area_name":"United States","bib_number":"9","record":"","run_1":"1:00.332","run_2":"1:02.077","run_3":"1:03.332","status":"","time":"0:03:05.741","contestants":{"contestant":[{"bib_number":"","people_id":"7752198","first_name":"Ashley","last_name":"Farquharson","short_name":"A. Farquharson","common_name":"Ashley Farquharson"},{"bib_number":"","people_id":"508746","first_name":"Christopher","last_name":"Mazdzer","short_name":"C. Mazdzer","common_name":"Chris Mazdzer"},{"bib_number":"","people_id":"7752216","first_name":"Zachary","last_name":"di Gregorio","short_name":"Z. di Gregorio","common_name":"Zachary di Gregorio"},{"bib_number":"","people_id":"7752217","first_name":"Sean","last_name":"Hollander","short_name":"S. Hollander","common_name":"Sean Hollander"}]}},{"position":"8","team_id":"52960","team_name":"Poland","team_short_name":"Poland","team_area_id":"155","team_area_code":"POL","team_area_name":"Poland","bib_number":"6","record":"","run_1":"1:01.448","run_2":"1:02.727","run_3":"1:02.961","status":"","time":"0:03:07.136","contestants":{"contestant":[{"bib_number":"","people_id":"7752190","first_name":"Klaudia","last_name":"Domaradzka","short_name":"K. Domaradzka","common_name":"Klaudia Domaradzka"},{"bib_number":"","people_id":"508736","first_name":"Mateusz","last_name":"Sochowicz","short_name":"M. Sochowicz","common_name":"Mateusz Sochowicz"},{"bib_number":"","people_id":"7746454","first_name":"Wojciech","last_name":"Chmielewski","short_name":"W. Chmielewski","common_name":"Wojciech Chmielewski"},{"bib_number":"","people_id":"7746456","first_name":"Jakub","last_name":"Kowalewski","short_name":"J. Kowalewski","common_name":"Jakub Kowalewski"}]}},{"position":"9","team_id":"52962","team_name":"Romania","team_short_name":"Romania","team_area_id":"159","team_area_code":"ROU","team_area_name":"Romania","bib_number":"2","record":"","run_1":"1:01.402","run_2":"1:02.743","run_3":"1:03.547","status":"","time":"0:03:07.692","contestants":{"contestant":[{"bib_number":"","people_id":"7746589","first_name":"Raluca","last_name":"Stramaturaru","short_name":"R. Stramaturaru","common_name":"Raluca Stramaturaru"},{"bib_number":"","people_id":"508738","first_name":"Valentin","last_name":"Crețu","short_name":"V. Crețu","common_name":"Valentin Crețu"},{"bib_number":"","people_id":"7752209","first_name":"Marian","last_name":"Gitlan","short_name":"M. Gitlan","common_name":"Marian Gitlan"},{"bib_number":"","people_id":"7752211","first_name":"Darius-Lucian","last_name":"Serban","short_name":"D. Serban","common_name":"Darius-Lucian Serban"}]}},{"position":"10","team_id":"52964","team_name":"Czech Republic","team_short_name":"Czech Republic","team_area_id":"59","team_area_code":"CZE","team_area_name":"Czechia","bib_number":"1","record":"","run_1":"1:01.852","run_2":"1:03.545","run_3":"1:04.159","status":"","time":"0:03:09.556","contestants":{"contestant":[{"bib_number":"","people_id":"7752182","first_name":"Anna","last_name":"Cezikova","short_name":"A. Cezikova","common_name":"Anna Cezikova"},{"bib_number":"","people_id":"7752166","first_name":"Michael","last_name":"Lejsek","short_name":"M. Lejsek","common_name":"Michael Lejsek"},{"bib_number":"","people_id":"7752203","first_name":"Filip","last_name":"Vejdelek","short_name":"F. Vejdelek","common_name":"Filip Vejdelek"},{"bib_number":"","people_id":"7752204","first_name":"Zdenek","last_name":"Pekny","short_name":"Z. Pekny","common_name":"Zdenek Pekny"}]}},{"position":"11","team_id":"52965","team_name":"Ukraine","team_short_name":"Ukraine","team_area_id":"201","team_area_code":"UKR","team_area_name":"Ukraine","bib_number":"5","record":"","run_1":"1:01.123","run_2":"1:04.244","run_3":"1:04.237","status":"","time":"0:03:09.604","contestants":{"contestant":[{"bib_number":"","people_id":"7752197","first_name":"Yulianna","last_name":"Tunytska","short_name":"Y. Tunytska","common_name":"Yulianna Tunytska"},{"bib_number":"","people_id":"508745","first_name":"Anton","last_name":"Dukach","short_name":"A. Dukach","common_name":"Anton Dukach"},{"bib_number":"","people_id":"7752214","first_name":"Ihor","last_name":"Stakhiv","short_name":"I. Stakhiv","common_name":"Ihor Stakhiv"},{"bib_number":"","people_id":"7752215","first_name":"Andrii","last_name":"Lysetskyi","short_name":"A. Lysetskyi","common_name":"Andrii Lysetskyi"}]}},{"position":"12","team_id":"53313","team_name":"China PR","team_short_name":"China PR","team_area_id":"49","team_area_code":"CHN","team_area_name":"China PR","bib_number":"3","record":"","run_1":"1:01.94","run_2":"1:01.94","run_3":"1:01.94","status":"","time":"0:03:10.182","contestants":{"contestant":[{"bib_number":"","people_id":"7752180","first_name":"Peixuan","last_name":"Wang","short_name":"Wang Peixuan","common_name":"Wang Peixuan"},{"bib_number":"","people_id":"7752165","first_name":"Duoyao","last_name":"Fan","short_name":"Fan Duoyao","common_name":"Fan Duoyao"},{"bib_number":"","people_id":"7752201","first_name":"Yebo","last_name":"Huang","short_name":"Huang Yebo","common_name":"Huang Yebo"},{"bib_number":"","people_id":"7752202","first_name":"Junyue","last_name":"Peng","short_name":"Peng Junyue","common_name":"Peng Junyue"}]}},{"position":"13","team_id":"52961","team_name":"Korea Republic","team_short_name":"Korea Republic","team_area_id":"107","team_area_code":"KOR","team_area_name":"Korea Republic","bib_number":"4","record":"","run_1":"1:01.94","run_2":"1:05.265","run_3":"1:03.291","status":"","time":"0:03:11.238","contestants":{"contestant":[{"bib_number":"","people_id":"7746579","first_name":"Aileen Christina","last_name":"Frisch","short_name":"A. Frisch","common_name":"Aileen Frisch"},{"bib_number":"","people_id":"508728","first_name":"Namkyu","last_name":"Lim","short_name":"Lim Namkyu","common_name":"Lim Namkyu"},{"bib_number":"","people_id":"7746443","first_name":"Jinyong","last_name":"Park","short_name":"Park Jinyong","common_name":"Park Jinyong"},{"bib_number":"","people_id":"7746442","first_name":"Jungmyung","last_name":"Cho","short_name":"Cho Jungmyung","common_name":"Cho Jungmyung"}]}},{"position":"","team_id":"52963","team_name":"Slovakia","team_short_name":"Slovakia","team_area_id":"171","team_area_code":"SVK","team_area_name":"Slovakia","bib_number":"7","record":"","run_1":"1:01.579","run_2":"1:02.338","run_3":"","status":"DNF","time":"0:00:00.000","contestants":{"contestant":[{"bib_number":"","people_id":"7746592","first_name":"Katarina","last_name":"Simonakova","short_name":"K. Simonakova","common_name":"Katarina Simonakova"},{"bib_number":"","people_id":"508741","first_name":"Jozef","last_name":"Ninis","short_name":"J. Ninis","common_name":"Jozef Ninis"},{"bib_number":"","people_id":"7752212","first_name":"Tomas","last_name":"Vavercak","short_name":"T. Vavercak","common_name":"Tomas Vavercak"},{"bib_number":"","people_id":"7752213","first_name":"Matej","last_name":"Zmij","short_name":"M. Zmij","common_name":"Matej Zmij"}]}}]}}}}}]}}}}}}