Subscription to this function is not available for your account. To upgrade and receive access to this contact sales@datasportsgroup.com
v3 GET /bowling/get_results
Returns the results of the specific round/discipline
Request URL
https://dsg-api.com/clients/{client_name}/bowling/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
weightlifting/powerlifting results for the contestant
body_weight
body_weight in kg
clean_jerk_1st_fail
1st clean_jerk attempt, yes = fail, no = success
clean_jerk_1st_kg
1st clean_jerk attempt in kg
clean_jerk_2nd_fail
2nd clean_jerk attempt, yes = fail, no = success
clean_jerk_2nd_kg
2nd clean_jerk attempt in kg
clean_jerk_3rd_fail
3rd clean_jerk attempt, yes = fail, no = success
clean_jerk_3rd_kg
3rd clean_jerk attempt in kg
clean_jerk_record
type of record for the contestant (SB,PB,WR,OR etc)
clean_jerk_result
best clean jerk attempt
common_name
common name of the person
first_name
first name of the person
group
group the contestant competes
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
points
final points after all attempts
position
position value
record
type of record for the contestant or team (SB,PB,WR,OR etc)
short_name
shortened name of the person
snatch_1st_fail
1st snatch attempt, yes = fail, no = success
snatch_1st_kg
1st snatch attempt in kg
snatch_2nd_fail
2nd snatch attempt, yes = fail, no = success
snatch_2nd_kg
2nd snatch attempt in kg
snatch_3rd_fail
3rd snatch attempt, yes = fail, no = success
snatch_3rd_kg
3rd snatch attempt in kg
snatch_record
type of record for the contestant (SB,PB,WR,OR etc)
snatch_result
best snatch attempt
status
status for this round, mainly if qualified or not (qualied = Q for example)
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
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}/bowling/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}/bowling/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}/bowling/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}/bowling/get_results?id={season_id}&type=season&client={client_name}&authkey={client_authkey}", auth=("User", "Password"))
Response Example
200 Success
{"datasportsgroup":{"version":"2.1743.3","sport":"bowling","lang":"en","generated_utc":"2025-08-01T15:26:08+00:00","method":{"method_id":"1743","name":"get_results"},"tour":{"tour_id":"","name":"","gender":"","tour_type":"non-tour","tour_season":{"tour_season_id":"","title":"","name":"","logo":"","competition":{"competition_id":"3543","name":"Asian Games","gender":"both","type":"player","format":"tournament","area_id":"2","area_name":"Asia","last_updated":"2022-03-07 17:12:34","season":{"season_id":"64937","title":"2018 Jakarta-Palembang","original_name":"Asian Games","start_date":"2018-08-22","end_date":"2018-08-27","logo":"https:\/\/www.dsg-images.com\/comps\/200x200\/1967.png","last_updated":"2022-03-06 13:48:48","season_extra":{"status":"Scheduled","surface":"","type":"","city":{"city_id":"","city_name":""},"venue":{"venue_id":"","venue_name":"","venue_image":""}},"discipline":[{"discipline_id":"502","name":"Trios","type":"team","gender":[{"value":"female","age_group":"senior","round":{"round_id":"64434","name":"Final","type":"table","start_date":"2018-08-22","start_time":"05:00:00","start_date_utc":"2018-08-22","start_time_utc":"03:00:00","end_date":"2018-08-22","end_time":"12:30:00","end_date_utc":"2018-08-22","end_time_utc":"10:30:00","last_updated":"2022-10-09 01:36:24","broadcasters":[],"round_extra":{"medal_round":"all"},"referees":[],"list":{"type":"regular","id":"","name":"","teams":[]}}},{"value":"male","age_group":"senior","round":{"round_id":"64433","name":"Final","type":"table","start_date":"2018-08-23","start_time":"04:00:00","start_date_utc":"2018-08-23","start_time_utc":"02:00:00","end_date":"2018-08-23","end_time":"11:30:00","end_date_utc":"2018-08-23","end_time_utc":"09:30:00","last_updated":"2022-10-09 01:36:21","broadcasters":[],"round_extra":{"medal_round":"all"},"referees":[],"list":{"type":"regular","id":"","name":"","teams":{"team":[{"position":"1","team_id":"53777","team_name":"Japan","team_short_name":"Japan","team_area_id":"102","team_area_code":"JPN","team_area_name":"Japan","average":"","game_1":"","game_2":"","game_3":"","game_4":"","game_5":"","game_6":"","points":"","record":"","status":"","total_points":"4344","contestants":{"contestant":[{"bib_number":"228","people_id":"456201","first_name":"Tomoyuki","last_name":"Sasaki","short_name":"T. Sasaki","common_name":"Tomoyuki Sasaki"},{"bib_number":"229","people_id":"456817","first_name":"Shogo","last_name":"Wada","short_name":"S. Wada","common_name":"Shogo Wada"},{"bib_number":"230","people_id":"454251","first_name":"Shusaku","last_name":"Asato","short_name":"S. Asato","common_name":"Shusaku Asato"}]}},{"position":"2","team_id":"53830","team_name":"Malaysia 2","team_short_name":"Malaysia 2","team_area_id":"123","team_area_code":"MAS","team_area_name":"Malaysia","average":"","game_1":"","game_2":"","game_3":"","game_4":"","game_5":"","game_6":"","points":"","record":"","status":"","total_points":"","contestants":{"contestant":[{"bib_number":"260","people_id":"504234","first_name":"Chye Chern","last_name":"Tan","short_name":"C. Tan","common_name":"Chye Chern Tan"},{"bib_number":"255","people_id":"504217","first_name":"Ahmad Muaz","last_name":"Mohd Fishol","short_name":"A. Fishol","common_name":"Ahmad Muaz Fishol"},{"bib_number":"258","people_id":"503856","first_name":"Muhammad Rafiq","last_name":"Ismail","short_name":"M. Ismail","common_name":"Muhammad Rafiq Ismail"}]}},{"position":"3","team_id":"53800","team_name":"Singapore","team_short_name":"Singapore","team_area_id":"170","team_area_code":"SIN","team_area_name":"Singapore","average":"","game_1":"","game_2":"","game_3":"","game_4":"","game_5":"","game_6":"","points":"","record":"","status":"","total_points":"","contestants":{"contestant":[{"bib_number":"283","people_id":"512296","first_name":"Alex Wei Chien","last_name":"Chong","short_name":"A. Chong","common_name":"Alex Chong"},{"bib_number":"282","people_id":"512602","first_name":"Wei Siong Darren","last_name":"Ong","short_name":"W. Ong","common_name":"Wei Siong Ong"},{"bib_number":"281","people_id":"512022","first_name":"Muhammad Jaris","last_name":"Bin Ali Akbar Goh","short_name":"M. Bin Ali Akbar Goh","common_name":"Muhammad Bin Ali Akbar Goh"}]}},{"position":"4","team_id":"53824","team_name":"Indonesia 2","team_short_name":"Indonesia 2","team_area_id":"95","team_area_code":"IDN","team_area_name":"Indonesia","average":"","game_1":"","game_2":"","game_3":"","game_4":"","game_5":"","game_6":"","points":"","record":"","status":"","total_points":"","contestants":{"contestant":[{"bib_number":"216","people_id":"442711","first_name":"Ryan Leonard","last_name":"Lalisang","short_name":"R. Lalisang","common_name":"Ryan Lalisang"},{"bib_number":"219","people_id":"441859","first_name":"Billy Muhammad","last_name":"Islam","short_name":"B. Islam","common_name":"Billy Islam"},{"bib_number":"217","people_id":"442820","first_name":"Hardy","last_name":"Rachmadian","short_name":"H. Rachmadian","common_name":"Hardy Rachmadian"}]}},{"position":"5","team_id":"53806","team_name":"Chinese Taipei","team_short_name":"Chinese Taipei","team_area_id":"50","team_area_code":"TPE","team_area_name":"Chinese Taipei","average":"","game_1":"","game_2":"","game_3":"","game_4":"","game_5":"","game_6":"","points":"","record":"","status":"","total_points":"","contestants":{"contestant":[{"bib_number":"293","people_id":"507365","first_name":"Hao-Ming","last_name":"Wu","short_name":"Wu Hao-Ming","common_name":"Wu Hao-Ming"},{"bib_number":"292","people_id":"507361","first_name":"Pai-Feng","last_name":"Lin","short_name":"Lin Pai-Feng","common_name":"Lin Pai-Feng"},{"bib_number":"291","people_id":"507210","first_name":"Chin-Liang","last_name":"Hsieh","short_name":"Hsieh Chin-Liang","common_name":"Hsieh Chin-Liang"}]}},{"position":"6","team_id":"53827","team_name":"Korea Republic 2","team_short_name":"Korea 2","team_area_id":"107","team_area_code":"KOR","team_area_name":"Korea Republic","average":"","game_1":"","game_2":"","game_3":"","game_4":"","game_5":"","game_6":"","points":"","record":"","status":"","total_points":"","contestants":{"contestant":[{"bib_number":"238","people_id":"464927","first_name":"Jongwook","last_name":"Kim","short_name":"Kim Jongwook","common_name":"Kim Jongwook"},{"bib_number":"241","people_id":"465262","first_name":"Seonghoi","last_name":"Koo","short_name":"Koo Seonghoi","common_name":"Koo Seonghoi"},{"bib_number":"237","people_id":"464923","first_name":"Heewon","last_name":"Kang","short_name":"Kang Heewon","common_name":"Kang Heewon"}]}},{"position":"7","team_id":"53836","team_name":"Chinese Taipei 2","team_short_name":"Chinese Taipei","team_area_id":"50","team_area_code":"TPE","team_area_name":"Chinese Taipei","average":"","game_1":"","game_2":"","game_3":"","game_4":"","game_5":"","game_6":"","points":"","record":"","status":"","total_points":"","contestants":{"contestant":[{"bib_number":"296","people_id":"507014","first_name":"Hsi-Nan","last_name":"Chen","short_name":"Chen Hsi-Nan","common_name":"Chen Hsi-Nan"},{"bib_number":"294","people_id":"507103","first_name":"Ming-Tang","last_name":"Chen","short_name":"Chen Ming-Tang","common_name":"Chen Ming-Tang"},{"bib_number":"295","people_id":"507234","first_name":"Kun-Yi","last_name":"Hung","short_name":"Hung Kun-Yi","common_name":"Hung Kun-Yi"}]}},{"position":"8","team_id":"53826","team_name":"Japan 2","team_short_name":"Japan 2","team_area_id":"102","team_area_code":"JPN","team_area_name":"Japan","average":"","game_1":"","game_2":"","game_3":"","game_4":"","game_5":"","game_6":"","points":"","record":"","status":"","total_points":"","contestants":{"contestant":[{"bib_number":"231","people_id":"457650","first_name":"Daisuke","last_name":"Yoshida","short_name":"D. Yoshida","common_name":"Daisuke Yoshida"},{"bib_number":"232","people_id":"455915","first_name":"Takuya","last_name":"Miyazawa","short_name":"T. Miyazawa","common_name":"Takuya Miyazawa"},{"bib_number":"233","people_id":"454804","first_name":"Shota","last_name":"Koki","short_name":"S. Koki","common_name":"Shota Koki"}]}},{"position":"9","team_id":"53790","team_name":"Malaysia","team_short_name":"Malaysia","team_area_id":"123","team_area_code":"MAS","team_area_name":"Malaysia","average":"","game_1":"","game_2":"","game_3":"","game_4":"","game_5":"","game_6":"","points":"","record":"","status":"","total_points":"","contestants":{"contestant":[{"bib_number":"256","people_id":"503239","first_name":"Hsien Loong Adrian","last_name":"Ang","short_name":"H. Ang","common_name":"Hsien Loong Ang"},{"bib_number":"259","people_id":"501711","first_name":"Muhamad Syafiq Ridhwan","last_name":"Abdul Malek","short_name":"M. Abdul Malek","common_name":"Muhamad Abdul Malek"},{"bib_number":"257","people_id":"504063","first_name":"Kien Liang","last_name":"Liew","short_name":"Kien Liang Liew","common_name":"Kien Liang Liew"}]}},{"position":"10","team_id":"53832","team_name":"Philippines 2","team_short_name":"Philippines 2","team_area_id":"154","team_area_code":"PHI","team_area_name":"Philippines","average":"","game_1":"","game_2":"","game_3":"","game_4":"","game_5":"","game_6":"","points":"","record":"","status":"","total_points":"","contestants":{"contestant":[{"bib_number":"270","people_id":"509018","first_name":"Kenneth","last_name":"Chua","short_name":"K. Chua","common_name":"Kenneth Chua"},{"bib_number":"271","people_id":"509253","first_name":"Merwin Mathieu","last_name":"Tan","short_name":"M. Tan","common_name":"Merwin Tan"},{"bib_number":"268","people_id":"509079","first_name":"Enrico Lorenzo","last_name":"Hernandez","short_name":"E. Hernandez","common_name":"Enrico Hernandez"}]}},{"position":"11","team_id":"53773","team_name":"Indonesia","team_short_name":"Indonesia","team_area_id":"95","team_area_code":"IDN","team_area_name":"Indonesia","average":"","game_1":"","game_2":"","game_3":"","game_4":"","game_5":"","game_6":"","points":"","record":"","status":"","total_points":"","contestants":{"contestant":[{"bib_number":"220","people_id":"445234","first_name":"Diwan Rezaldy","last_name":"Syahril","short_name":"D. Syahril","common_name":"Diwan Syahril"},{"bib_number":"221","people_id":"441569","first_name":"Fachri Ibnu","last_name":"Askar","short_name":"F. Askar","common_name":"Fachri Askar"},{"bib_number":"218","people_id":"442828","first_name":"Yeri","last_name":"Ramadona","short_name":"Y. Ramadona","common_name":"Yeri Ramadona"}]}},{"position":"12","team_id":"53770","team_name":"Hong Kong SAR","team_short_name":"Hong Kong","team_area_id":"91","team_area_code":"HKG","team_area_name":"Hong Kong SAR","average":"","game_1":"","game_2":"","game_3":"","game_4":"","game_5":"","game_6":"","points":"","record":"","status":"","total_points":"","contestants":{"contestant":[{"bib_number":"210","people_id":"426688","first_name":"Siu Hong","last_name":"Wu","short_name":"Wu Siu Hong","common_name":"Wu Siu Hong"},{"bib_number":"211","people_id":"422555","first_name":"Cheuk Yin","last_name":"Mak","short_name":"Mak Cheuk Yin","common_name":"Mak Cheuk Yin"},{"bib_number":"212","people_id":"425303","first_name":"Tak Hin","last_name":"Tseng","short_name":"Tseng Tak Hin","common_name":"Tseng Tak Hin"}]}},{"position":"13","team_id":"53835","team_name":"Thailand 2","team_short_name":"Thailand 2","team_area_id":"191","team_area_code":"THA","team_area_name":"Thailand","average":"","game_1":"","game_2":"","game_3":"","game_4":"","game_5":"","game_6":"","points":"","record":"","status":"","total_points":"","contestants":{"contestant":[{"bib_number":"286","people_id":"512818","first_name":"Erik Kim","last_name":"Bolleby","short_name":"E. Bolleby","common_name":"Erik Bolleby"},{"bib_number":"288","people_id":"512819","first_name":"Atchariya","last_name":"Cheng","short_name":"A. Cheng","common_name":"Atchariya Cheng"},{"bib_number":"289","people_id":"512850","first_name":"Sithiphol","last_name":"Kunaksorn","short_name":"S. Kunaksorn","common_name":"Sithiphol Kunaksorn"}]}},{"position":"14","team_id":"53799","team_name":"Qatar","team_short_name":"Qatar","team_area_id":"158","team_area_code":"QAT","team_area_name":"Qatar","average":"","game_1":"","game_2":"","game_3":"","game_4":"","game_5":"","game_6":"","points":"","record":"","status":"","total_points":"","contestants":{"contestant":[{"bib_number":"276","people_id":"510014","first_name":"Ali","last_name":"Al Janahi","short_name":"Ali Al Janahi","common_name":"Ali Al Janahi"},{"bib_number":"278","people_id":"509827","first_name":"Ahmed","last_name":"Al Deyab","short_name":"Ahmed Al Deyab","common_name":"Ahmed Al Deyab"},{"bib_number":"273","people_id":"509855","first_name":"Yousef","last_name":"Al Jabir","short_name":"Yousef Al Jabir","common_name":"Yousef Al Jabir"}]}},{"position":"15","team_id":"53766","team_name":"Bahrain","team_short_name":"Bahrain","team_area_id":"23","team_area_code":"BHR","team_area_name":"Bahrain","average":"","game_1":"","game_2":"","game_3":"","game_4":"","game_5":"","game_6":"","points":"","record":"","status":"","total_points":"","contestants":{"contestant":[{"bib_number":"201","people_id":"23400","first_name":"Ahmed","last_name":"Al Awadhi","short_name":"Ahmed Al Awadhi","common_name":"Ahmed Al Awadhi"},{"bib_number":"203","people_id":"328463","first_name":"Osama","last_name":"Hasan","short_name":"Osama Hasan","common_name":"Osama Hasan"},{"bib_number":"204","people_id":"328462","first_name":"Yusuf","last_name":"Falah","short_name":"Yusuf Falah","common_name":"Yusuf Falah"}]}},{"position":"16","team_id":"53823","team_name":"Hong Kong SAR 2","team_short_name":"Hong Kong 2","team_area_id":"91","team_area_code":"HKG","team_area_name":"Hong Kong SAR","average":"","game_1":"","game_2":"","game_3":"","game_4":"","game_5":"","game_6":"","points":"","record":"","status":"","total_points":"","contestants":{"contestant":[{"bib_number":"214","people_id":"423461","first_name":"Chun Hin","last_name":"Tse","short_name":"Tse Chun Hin","common_name":"Tse Chun Hin"},{"bib_number":"215","people_id":"425714","first_name":"Kwan Yuen","last_name":"Wong","short_name":"Wong Kwan Yuen","common_name":"Wong Kwan Yuen"},{"bib_number":"213","people_id":"422177","first_name":"Kwun Ho","last_name":"Lau","short_name":"Lau Kwun Ho","common_name":"Lau Kwun Ho"}]}},{"position":"17","team_id":"53828","team_name":"Saudi Arabia 2","team_short_name":"Saudi Arabia 2","team_area_id":"164","team_area_code":"KSA","team_area_name":"Saudi Arabia","average":"","game_1":"","game_2":"","game_3":"","game_4":"","game_5":"","game_6":"","points":"","record":"","status":"","total_points":"","contestants":{"contestant":[{"bib_number":"243","people_id":"479925","first_name":"Yousef Mohammed Ali","last_name":"Akbar","short_name":"Yousef Mohammed Ali Akbar","common_name":"Yousef Mohammed Ali Akbar"},{"bib_number":"246","people_id":"483368","first_name":"Abdulrahman Abdulwahab","last_name":"Al Kheliwi","short_name":"Abdulrahman Abdulwahab Al Kheliwi","common_name":"Abdulrahman Abdulwahab Al Kheliwi"},{"bib_number":"247","people_id":"483944","first_name":"Hassan Abdullah","last_name":"Al Shaiekh","short_name":"Hassan Abdullah Al Shaiekh","common_name":"Hassan Abdullah Al Shaiekh"}]}},{"position":"17","team_id":"53803","team_name":"Thailand","team_short_name":"Thailand","team_area_id":"191","team_area_code":"THA","team_area_name":"Thailand","average":"","game_1":"","game_2":"","game_3":"","game_4":"","game_5":"","game_6":"","points":"","record":"","status":"","total_points":"","contestants":{"contestant":[{"bib_number":"285","people_id":"512859","first_name":"Yannaphon","last_name":"Larp Apharat","short_name":"Y. Larp Apharat","common_name":"Yannaphon Larp Apharat"},{"bib_number":"287","people_id":"512817","first_name":"Annop","last_name":"Arromsaranon","short_name":"A. Arromsaranon","common_name":"Annop Arromsaranon"},{"bib_number":"290","people_id":"512860","first_name":"Surasak","last_name":"Manuwong","short_name":"S. Manuwong","common_name":"Surasak Manuwong"}]}},{"position":"19","team_id":"53767","team_name":"China PR","team_short_name":"China PR","team_area_id":"49","team_area_code":"CHN","team_area_name":"China PR","average":"","game_1":"","game_2":"","game_3":"","game_4":"","game_5":"","game_6":"","points":"","record":"","status":"","total_points":"","contestants":{"contestant":[{"bib_number":"207","people_id":"371639","first_name":"Mingyu","last_name":"Chi","short_name":"Chi Mingyu","common_name":"Chi Mingyu"},{"bib_number":"209","people_id":"419848","first_name":"Jun","last_name":"Su","short_name":"Su Jun","common_name":"Su Jun"},{"bib_number":"208","people_id":"419865","first_name":"Hongbo","last_name":"Wang","short_name":"Wang Hongbo","common_name":"Wang Hongbo"}]}},{"position":"20","team_id":"53783","team_name":"Korea Republic","team_short_name":"Korea Republic","team_area_id":"107","team_area_code":"KOR","team_area_name":"Korea Republic","average":"","game_1":"","game_2":"","game_3":"","game_4":"","game_5":"","game_6":"","points":"","record":"","status":"","total_points":"","contestants":{"contestant":[{"bib_number":"242","people_id":"465682","first_name":"Jongwoo","last_name":"Park","short_name":"Park Jongwoo","common_name":"Park Jongwoo"},{"bib_number":"240","people_id":"464917","first_name":"Haesol","last_name":"Hong","short_name":"Hong Haesol","common_name":"Hong Haesol"},{"bib_number":"239","people_id":"464909","first_name":"Bokeum","last_name":"Choi","short_name":"Choi Bokeum","common_name":"Choi Bokeum"}]}},{"position":"21","team_id":"53825","team_name":"India 2","team_short_name":"India 2","team_area_id":"94","team_area_code":"IND","team_area_name":"India","average":"","game_1":"","game_2":"","game_3":"","game_4":"","game_5":"","game_6":"","points":"","record":"","status":"","total_points":"","contestants":{"contestant":[{"bib_number":"225","people_id":"439204","first_name":"Parvez Ahmed","last_name":"Saud","short_name":"P. Saud","common_name":"Parvez Ahmed Saud"},{"bib_number":"227","people_id":"434684","first_name":"Shoumick","last_name":"Datta","short_name":"S. Datta","common_name":"Shoumick Datta"},{"bib_number":"226","people_id":"436505","first_name":"Kishan","last_name":"Ramachandraiah","short_name":"K. Ramachandraiah","common_name":"Kishan Ramachandraiah"}]}},{"position":"22","team_id":"53833","team_name":"Qatar 2","team_short_name":"Qatar 2","team_area_id":"158","team_area_code":"QAT","team_area_name":"Qatar","average":"","game_1":"","game_2":"","game_3":"","game_4":"","game_5":"","game_6":"","points":"","record":"","status":"","total_points":"","contestants":{"contestant":[{"bib_number":"277","people_id":"510157","first_name":"Jassim","last_name":"Al Muraikhi","short_name":"Jassim Al Muraikhi","common_name":"Jassim Al Muraikhi"},{"bib_number":"274","people_id":"510068","first_name":"Mohammed","last_name":"Al Merekhi","short_name":"Mohammed Al Merekhi","common_name":"Mohammed Al Merekhi"},{"bib_number":"275","people_id":"509803","first_name":"Ghanim","last_name":"Aboujassoum","short_name":"Ghanim Aboujassoum","common_name":"Ghanim Aboujassoum"}]}},{"position":"23","team_id":"53786","team_name":"Saudi Arabia","team_short_name":"Saudi Arabia","team_area_id":"164","team_area_code":"KSA","team_area_name":"Saudi Arabia","average":"","game_1":"","game_2":"","game_3":"","game_4":"","game_5":"","game_6":"","points":"","record":"","status":"","total_points":"","contestants":{"contestant":[{"bib_number":"244","people_id":"480810","first_name":"Adel Ali","last_name":"Al Bariqi","short_name":"Adel Ali Al Bariqi","common_name":"Adel Ali Al Bariqi"},{"bib_number":"245","people_id":"483618","first_name":"Sultan Faroug","last_name":"Al Masri","short_name":"Sultan Faroug Al Masri","common_name":"Sultan Faroug Al Masri"},{"bib_number":"248","people_id":"485789","first_name":"Ammar Yassir","last_name":"Tarrad","short_name":"Ammar Yassir Tarrad","common_name":"Ammar Yassir Tarrad"}]}},{"position":"24","team_id":"53822","team_name":"Bahrain 2","team_short_name":"Bahrain 2","team_area_id":"23","team_area_code":"BHR","team_area_name":"Bahrain","average":"","game_1":"","game_2":"","game_3":"","game_4":"","game_5":"","game_6":"","points":"","record":"","status":"","total_points":"","contestants":{"contestant":[{"bib_number":"202","people_id":"177308","first_name":"Ahmed","last_name":"Al Goud","short_name":"Ahmed Al Goud","common_name":"Ahmed Al Goud"},{"bib_number":"206","people_id":"241242","first_name":"Omar","last_name":"Al Mudhahki","short_name":"Omar Al Mudhahki","common_name":"Omar Al Mudhahki"},{"bib_number":"205","people_id":"191539","first_name":"Abdulla","last_name":"Ali","short_name":"Abdulla Ali","common_name":"Abdulla Ali"}]}},{"position":"25","team_id":"53796","team_name":"Philippines","team_short_name":"Philippines","team_area_id":"154","team_area_code":"PHI","team_area_name":"Philippines","average":"","game_1":"","game_2":"","game_3":"","game_4":"","game_5":"","game_6":"","points":"","record":"","status":"","total_points":"","contestants":{"contestant":[{"bib_number":"269","people_id":"509162","first_name":"Jo Mar Roland","last_name":"Jumapao","short_name":"J. Jumapao","common_name":"Joa Mar Jumapao"},{"bib_number":"267","people_id":"509254","first_name":"Angelo Kenzo","last_name":"Umali","short_name":"A. Umali","common_name":"Angelo Umali"},{"bib_number":"272","people_id":"509249","first_name":"Raoul","last_name":"Miranda","short_name":"R. Miranda","common_name":"Raoul Miranda"}]}},{"position":"26","team_id":"53834","team_name":"Singapore 2","team_short_name":"Singapore 2","team_area_id":"170","team_area_code":"SIN","team_area_name":"Singapore","average":"","game_1":"","game_2":"","game_3":"","game_4":"","game_5":"","game_6":"","points":"","record":"","status":"","total_points":"","contestants":{"contestant":[{"bib_number":"279","people_id":"512591","first_name":"Basil Dill Jui Chang","last_name":"Ng","short_name":"B. Ng","common_name":"Basil Dill Jui Ng"},{"bib_number":"280","people_id":"512023","first_name":"Ray Han","last_name":"Cheah","short_name":"R. Cheah","common_name":"Ray Cheah"},{"bib_number":"284","people_id":"512572","first_name":"Ze Min Jonovan","last_name":"Neo","short_name":"Z. Neo","common_name":"Ze Min Neo"}]}},{"position":"27","team_id":"53776","team_name":"India","team_short_name":"India","team_area_id":"94","team_area_code":"IND","team_area_name":"India","average":"","game_1":"","game_2":"","game_3":"","game_4":"","game_5":"","game_6":"","points":"","record":"","status":"","total_points":"","contestants":{"contestant":[{"bib_number":"223","people_id":"434641","first_name":"Shabbir","last_name":"Asgarali Dhankot","short_name":"S. Asgarali Dhankot","common_name":"Shabbir Asgarali Dhankot"},{"bib_number":"224","people_id":"432610","first_name":"Kumar","last_name":"Akaas Ashok","short_name":"K. Akaas Ashok","common_name":"Kumar Akaas Ashok"},{"bib_number":"222","people_id":"438002","first_name":"Dhruv","last_name":"Sarda","short_name":"D. Sarda","common_name":"Dhruv Sarda"}]}},{"position":"28","team_id":"53829","team_name":"Macao 2","team_short_name":"Macao 2","team_area_id":"119","team_area_code":"MAC","team_area_name":"Macau","average":"","game_1":"","game_2":"","game_3":"","game_4":"","game_5":"","game_6":"","points":"","record":"","status":"","total_points":"","contestants":{"contestant":[{"bib_number":"250","people_id":"485790","first_name":"Zoe","last_name":"Dias Ma","short_name":"Dias Ma Zoe","common_name":"Dias Ma Zoe"},{"bib_number":"251","people_id":"493034","first_name":"Mugabe ","last_name":"Adjako","short_name":"M. Adjako","common_name":"Mugabe Adjako"},{"bib_number":"249","people_id":"486671","first_name":"Tak Man","last_name":"Lee","short_name":"Lee Tak Man","common_name":"Lee Tak Man"}]}},{"position":"29","team_id":"53787","team_name":"Macau","team_short_name":"Macau","team_area_id":"119","team_area_code":"MAC","team_area_name":"Macau","average":"","game_1":"","game_2":"","game_3":"","game_4":"","game_5":"","game_6":"","points":"","record":"","status":"","total_points":"","contestants":{"contestant":[{"bib_number":"253","people_id":"490207","first_name":"Chou Kin","last_name":"Leong","short_name":"Leong Chou Kin","common_name":"Leong Chou Kin"},{"bib_number":"254","people_id":"485799","first_name":"Man Lok","last_name":"Ho","short_name":"Ho Man Lok","common_name":"Ho Man Lok"},{"bib_number":"252","people_id":"492566","first_name":"Si Kei","last_name":"Man","short_name":"Man Si Kei","common_name":"Man Si Kei"}]}},{"position":"30","team_id":"53793","team_name":"Mongolia","team_short_name":"Mongolia","team_area_id":"131","team_area_code":"MGL","team_area_name":"Mongolia","average":"","game_1":"","game_2":"","game_3":"","game_4":"","game_5":"","game_6":"","points":"","record":"","status":"","total_points":"","contestants":{"contestant":[{"bib_number":"262","people_id":"505983","first_name":"Lkhaasuren","last_name":"Tsedendambaa","short_name":"L. Tsedendambaa","common_name":"Lkhaasuren Tsedendambaa"},{"bib_number":"264","people_id":"505848","first_name":"Khishigbat","last_name":"Khurelbaatar","short_name":"K. Khurelbaatar","common_name":"Khishigbat Khurelbaatar"},{"bib_number":"265","people_id":"504971","first_name":"Sodnomdorj","last_name":"Jamts","short_name":"S. Jamts","common_name":"Sodnomdorj Jamts"}]}},{"position":"31","team_id":"53831","team_name":"Mongolia 2","team_short_name":"Mongolia 2","team_area_id":"131","team_area_code":"MGL","team_area_name":"Mongolia","average":"","game_1":"","game_2":"","game_3":"","game_4":"","game_5":"","game_6":"","points":"","record":"","status":"","total_points":"","contestants":{"contestant":[{"bib_number":"263","people_id":"504964","first_name":"Chuluunbaatar","last_name":"Dorj","short_name":"C. Dorj","common_name":"Chuluunbaatar Dorj"},{"bib_number":"266","people_id":"504968","first_name":"Amgalanbat","last_name":"Enkhtur","short_name":"A. Enkhtur","common_name":"Amgalanbat Enkhtur"},{"bib_number":"261","people_id":"504973","first_name":"Tsevegmid","last_name":"Jarantai","short_name":"T. Jarantai","common_name":"Tsevegmid Jarantai"}]}},{"position":"32","team_id":"53780","team_name":"Kazakhstan","team_short_name":"Kazakhstan","team_area_id":"104","team_area_code":"KAZ","team_area_name":"Kazakhstan","average":"","game_1":"","game_2":"","game_3":"","game_4":"","game_5":"","game_6":"","points":"","record":"","status":"","total_points":"","contestants":{"contestant":[{"bib_number":"","people_id":"461525","first_name":"Ruslan","last_name":"Ekkel","short_name":"R. Ekkel","common_name":"Ruslan Ekkel"},{"bib_number":"","people_id":"462208","first_name":"Zhaxylyk","last_name":"Saudabayev","short_name":"Z. Saudabayev","common_name":"Zhaxylyk Saudabayev"}]}},{"position":"33","team_id":"53809","team_name":"Vietnam","team_short_name":"Vietnam","team_area_id":"208","team_area_code":"VIE","team_area_name":"Vietnam","average":"","game_1":"","game_2":"","game_3":"","game_4":"","game_5":"","game_6":"","points":"","record":"","status":"","total_points":"","contestants":{"contestant":[{"bib_number":"","people_id":"508958","first_name":"Anh Tuan","last_name":"Tran","short_name":"Tran Anh Tuan","common_name":"Tran Anh Tuan"},{"bib_number":"","people_id":"508539","first_name":"Van Hoang","last_name":"Nguyen","short_name":"Nguyen Van Hoang","common_name":"Nguyen Van Hoang"}]}}]}}}}]},{"discipline_id":"503","name":"Team","type":"team","gender":[{"value":"female","age_group":"senior","round":{"round_id":"64436","name":"Final","type":"table","start_date":"2018-08-24","start_time":"04:00:00","start_date_utc":"2018-08-24","start_time_utc":"02:00:00","end_date":"2018-08-24","end_time":"13:00:00","end_date_utc":"2018-08-24","end_time_utc":"11:00:00","last_updated":"2022-10-09 01:36:39","broadcasters":[],"round_extra":{"medal_round":"all"},"referees":[],"list":{"type":"regular","id":"","name":"","teams":[]}}},{"value":"male","age_group":"senior","round":{"round_id":"64435","name":"Final","type":"table","start_date":"2018-08-25","start_time":"04:00:00","start_date_utc":"2018-08-25","start_time_utc":"02:00:00","end_date":"2018-08-25","end_time":"13:00:00","end_date_utc":"2018-08-25","end_time_utc":"11:00:00","last_updated":"2022-10-09 01:36:34","broadcasters":[],"round_extra":{"medal_round":"all"},"referees":[],"list":{"type":"regular","id":"","name":"","teams":{"team":[{"position":"1","team_id":"53783","team_name":"Korea Republic","team_short_name":"Korea Republic","team_area_id":"107","team_area_code":"KOR","team_area_name":"Korea Republic","average":"","game_1":"","game_2":"","game_3":"","game_4":"","game_5":"","game_6":"","points":"","record":"","status":"","total_points":"","contestants":[]},{"position":"2","team_id":"53770","team_name":"Hong Kong SAR","team_short_name":"Hong Kong","team_area_id":"91","team_area_code":"HKG","team_area_name":"Hong Kong SAR","average":"","game_1":"","game_2":"","game_3":"","game_4":"","game_5":"","game_6":"","points":"","record":"","status":"","total_points":"","contestants":[]},{"position":"3","team_id":"53806","team_name":"Chinese Taipei","team_short_name":"Chinese Taipei","team_area_id":"50","team_area_code":"TPE","team_area_name":"Chinese Taipei","average":"","game_1":"","game_2":"","game_3":"","game_4":"","game_5":"","game_6":"","points":"","record":"","status":"","total_points":"","contestants":[]},{"position":"4","team_id":"53777","team_name":"Japan","team_short_name":"Japan","team_area_id":"102","team_area_code":"JPN","team_area_name":"Japan","average":"","game_1":"","game_2":"","game_3":"","game_4":"","game_5":"","game_6":"","points":"","record":"","status":"","total_points":"","contestants":[]},{"position":"5","team_id":"53773","team_name":"Indonesia","team_short_name":"Indonesia","team_area_id":"95","team_area_code":"IDN","team_area_name":"Indonesia","average":"","game_1":"","game_2":"","game_3":"","game_4":"","game_5":"","game_6":"","points":"","record":"","status":"","total_points":"","contestants":[]},{"position":"6","team_id":"53803","team_name":"Thailand","team_short_name":"Thailand","team_area_id":"191","team_area_code":"THA","team_area_name":"Thailand","average":"","game_1":"","game_2":"","game_3":"","game_4":"","game_5":"","game_6":"","points":"","record":"","status":"","total_points":"","contestants":[]},{"position":"7","team_id":"53790","team_name":"Malaysia","team_short_name":"Malaysia","team_area_id":"123","team_area_code":"MAS","team_area_name":"Malaysia","average":"","game_1":"","game_2":"","game_3":"","game_4":"","game_5":"","game_6":"","points":"","record":"","status":"","total_points":"","contestants":[]},{"position":"8","team_id":"53796","team_name":"Philippines","team_short_name":"Philippines","team_area_id":"154","team_area_code":"PHI","team_area_name":"Philippines","average":"","game_1":"","game_2":"","game_3":"","game_4":"","game_5":"","game_6":"","points":"","record":"","status":"","total_points":"","contestants":[]},{"position":"9","team_id":"53799","team_name":"Qatar","team_short_name":"Qatar","team_area_id":"158","team_area_code":"QAT","team_area_name":"Qatar","average":"","game_1":"","game_2":"","game_3":"","game_4":"","game_5":"","game_6":"","points":"","record":"","status":"","total_points":"","contestants":[]},{"position":"10","team_id":"53786","team_name":"Saudi Arabia","team_short_name":"Saudi Arabia","team_area_id":"164","team_area_code":"KSA","team_area_name":"Saudi Arabia","average":"","game_1":"","game_2":"","game_3":"","game_4":"","game_5":"","game_6":"","points":"","record":"","status":"","total_points":"","contestants":[]},{"position":"11","team_id":"53800","team_name":"Singapore","team_short_name":"Singapore","team_area_id":"170","team_area_code":"SIN","team_area_name":"Singapore","average":"","game_1":"","game_2":"","game_3":"","game_4":"","game_5":"","game_6":"","points":"","record":"","status":"","total_points":"","contestants":[]},{"position":"12","team_id":"53766","team_name":"Bahrain","team_short_name":"Bahrain","team_area_id":"23","team_area_code":"BHR","team_area_name":"Bahrain","average":"","game_1":"","game_2":"","game_3":"","game_4":"","game_5":"","game_6":"","points":"","record":"","status":"","total_points":"","contestants":[]},{"position":"13","team_id":"53776","team_name":"India","team_short_name":"India","team_area_id":"94","team_area_code":"IND","team_area_name":"India","average":"","game_1":"","game_2":"","game_3":"","game_4":"","game_5":"","game_6":"","points":"","record":"","status":"","total_points":"","contestants":[]},{"position":"14","team_id":"53787","team_name":"Macau","team_short_name":"Macau","team_area_id":"119","team_area_code":"MAC","team_area_name":"Macau","average":"","game_1":"","game_2":"","game_3":"","game_4":"","game_5":"","game_6":"","points":"","record":"","status":"","total_points":"","contestants":[]},{"position":"15","team_id":"53793","team_name":"Mongolia","team_short_name":"Mongolia","team_area_id":"131","team_area_code":"MGL","team_area_name":"Mongolia","average":"","game_1":"","game_2":"","game_3":"","game_4":"","game_5":"","game_6":"","points":"","record":"","status":"","total_points":"","contestants":[]},{"position":"16","team_id":"53809","team_name":"Vietnam","team_short_name":"Vietnam","team_area_id":"208","team_area_code":"VIE","team_area_name":"Vietnam","average":"","game_1":"","game_2":"","game_3":"","game_4":"","game_5":"","game_6":"","points":"","record":"","status":"","total_points":"","contestants":[]},{"position":"17","team_id":"53780","team_name":"Kazakhstan","team_short_name":"Kazakhstan","team_area_id":"104","team_area_code":"KAZ","team_area_name":"Kazakhstan","average":"","game_1":"","game_2":"","game_3":"","game_4":"","game_5":"","game_6":"","points":"","record":"","status":"","total_points":"","contestants":[]}]}}}}]},{"discipline_id":"504","name":"Masters","type":"contestant","gender":[{"value":"female","age_group":"senior","round":[{"round_id":"64430","name":"Preliminary","type":"table","start_date":"2018-08-26","start_time":"08:00:00","start_date_utc":"2018-08-26","start_time_utc":"06:00:00","end_date":"2018-08-27","end_time":"07:00:00","end_date_utc":"2018-08-26","end_time_utc":"05:00:00","last_updated":"2022-10-09 01:35:54","broadcasters":[],"round_extra":{"medal_round":""},"referees":[],"list":{"type":"regular","id":"","name":"","contestants":[]}},{"round_id":"64431","name":"Stepladder Final Round 1","type":"cup","start_date":"2018-08-27","start_time":"10:30:00","start_date_utc":"2018-08-27","start_time_utc":"08:30:00","end_date":"2018-08-27","end_time":"11:00:00","end_date_utc":"2018-08-27","end_time_utc":"09:00:00","last_updated":"2022-10-09 01:36:00","broadcasters":[],"round_extra":{"medal_round":"bronze"},"referees":[],"list":{"type":"regular","id":"","name":"","contestants":[]}},{"round_id":"64432","name":"Stepladder Final Round 2","type":"cup","start_date":"2018-08-27","start_time":"11:00:00","start_date_utc":"2018-08-27","start_time_utc":"09:00:00","end_date":"2018-08-27","end_time":"11:30:00","end_date_utc":"2018-08-27","end_time_utc":"09:30:00","last_updated":"2022-10-09 01:36:04","broadcasters":[],"round_extra":{"medal_round":"gold"},"referees":[],"list":{"type":"regular","id":"","name":"","contestants":[]}}]},{"value":"male","age_group":"senior","round":[{"round_id":"64427","name":"Preliminary","type":"table","start_date":"2018-08-26","start_time":"04:00:00","start_date_utc":"2018-08-26","start_time_utc":"02:00:00","end_date":"2018-08-27","end_time":"11:00:00","end_date_utc":"2018-08-26","end_time_utc":"09:00:00","last_updated":"2022-03-07 16:42:59","broadcasters":[],"round_extra":{"medal_round":""},"referees":[],"list":{"type":"regular","id":"","name":"","contestants":[]}},{"round_id":"64428","name":"Stepladder Final Round 1","type":"cup","start_date":"2018-08-27","start_time":"10:30:00","start_date_utc":"2018-08-27","start_time_utc":"08:30:00","end_date":"2018-08-27","end_time":"11:00:00","end_date_utc":"2018-08-27","end_time_utc":"09:00:00","last_updated":"2022-03-07 16:43:05","broadcasters":[],"round_extra":{"medal_round":"bronze"},"referees":[],"list":{"type":"regular","id":"","name":"","contestants":[]}},{"round_id":"64429","name":"Stepladder Final Round 2","type":"cup","start_date":"2018-08-27","start_time":"11:00:00","start_date_utc":"2018-08-27","start_time_utc":"09:00:00","end_date":"2018-08-27","end_time":"11:30:00","end_date_utc":"2018-08-27","end_time_utc":"09:30:00","last_updated":"2022-03-07 16:43:08","broadcasters":[],"round_extra":{"medal_round":"gold"},"referees":[],"list":{"type":"regular","id":"","name":"","contestants":[]}}]}]}]}}}}}}