Subscription to this function is not available for your account. To upgrade and receive access to this contact sales@datasportsgroup.com
v3 GET /sumo/get_tables
Returns the league, home & away tables per season or round.
Request URL
https://dsg-api.com/clients/{client_name}/sumo/get_tables?type={type}&id={id}&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
date
string
set a date in format yyyy-mm-dd as limit
ftype
string
changes feed type from XML to json (ftype=json or ftype=json_array)
gameweek
int
gameweek value to get table from
id
int Required
object id to return
lang
string
two-character language code, defaults to 'en'
live
string
only 'yes' is valid which will provide a live table
type
string Required
type is either "season" or "round"
Nodes
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
list
details about list type
aggregation_type
aggregation type (scores or wins)
id
unique identifier for a group if type = group, if type = playoff then for a playoff
last_updated
When record was last updated. Format YYYY-MM-DD HH:MM:SS in CET timezone.
name
name of either a group or playoff
score_a
playoff score of team_a
score_b
playoff score of team_b
type
list type (regular, group or playoff)
winner_team_id
unique identifier for the winning team of the playoff
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)
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
table
details about team/contestant table entry
area_id
unique identifier for an area
common_name
common name of the person
contestant_1_common_name
common name of the contestant
contestant_1_first_name
first name of the contestant
contestant_1_id
unique identifier for the contestant
contestant_1_last_name
last name of the contestant
contestant_1_nationality_area_code
area code of contestants nationality
contestant_1_nationality_area_id
unique area_id of the contestants nationality
contestant_1_nationality_area_name
nationality of the contestant
contestant_1_short_name
short name of the contestant
contestant_2_common_name
common name of the contestant
contestant_2_first_name
first name of the contestant
contestant_2_id
unique identifier for the contestant
contestant_2_last_name
last name of the contestant
contestant_2_nationality_area_code
area code of contestants nationality
contestant_2_nationality_area_id
unique area_id of the contestants nationality
contestant_2_nationality_area_name
nationality of the contestant
contestant_2_short_name
short name of the contestant
contestant_team_id
unique identifier for the contestant team/double
first_name
first name of the person
form
performance of the last 5 matches in the particular round (W = win, D = draw, L = loss)
last_name
last name of the person
live
indicates if there is a live game for the team
nationality_area_code
three character area code
nationality_area_id
unique identifier for an area
nationality_area_name
area name of peoples nationality
next_match_id
match_id of the upcoming match in the particular round
next_opponent_contestant_name
contestant name of the next opponent in the particular round
next_opponent_contestant_team_id
contestant_team_id of the next opponent in the particular round
next_opponent_name
current team name of the next opponent in the particular round
next_opponent_team_id
team_id of the next opponent in the particular round
original_team_name
original team name during the season
people_id
unique identifier for person
position
position value
prev_season
defines last season achievements ('C','CW','P','R')
short_name
shortened name of the person
team_id
unique identifier of the team
team_logo
full path URL of team logo
team_name
current team name
zone
name of table zone
zone_id
unique identifier for a table zone
values
tables values of the team (badminton/tennis/table_tennis)
games_against
number of games against
games_for
number of games
game_difference
value for total game difference
matches_lost
value for total lost matches
matches_total
value for total played matches
matches_won
value for total won matches
points
value for total points gained
points_against
number of points against
points_difference
value for total points difference
points_for
number of points
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}/sumo/get_tables?type={type}&id={id}&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}/sumo/get_tables?type={type}&id={id}&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}/sumo/get_tables?type={type}&id={id}&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}/sumo/get_tables?type={type}&id={id}&client={client_name}&authkey={client_authkey}", auth=("User", "Password"))
Response Example
200 Success
{"datasportsgroup":{"version":"2.1663.3","sport":"sumo","lang":"en","generated_utc":"2025-08-01T15:25:25+00:00","method":{"method_id":"1663","name":"get_tables"},"tour":{"tour_id":"","name":"","gender":"both","tour_type":"non-tour","tour_season":{"tour_season_id":"","title":"","name":"","logo":"","competition":{"competition_id":"4819","name":"Honbasho - Makuuchi Division","gender":"both","type":"player","format":"tournament","area_id":"102","area_name":"Japan","last_updated":"2024-04-09 21:43:52","season":{"season_id":"74312","title":"2025 Nagoya basho","original_name":"Honbasho - Makuuchi Division","start_date":"2025-07-13","end_date":"2027-07-27","logo":"","last_updated":"2025-07-26 12:00:29","round":{"round_id":"115020","name":"Regular Season","start_date":"2025-07-13","start_time":"","start_date_utc":"2025-07-13","start_time_utc":"","end_date":"2027-07-27","end_time":"","end_date_utc":"2027-07-27","end_time_utc":"","type":"table","last_updated":"2025-07-26 12:00:18","total":{"table":[{"position":"1","people_id":"7917151","first_name":"Toshiki","last_name":"Tebakari","short_name":"Kotoshōhō Yoshinari","common_name":"Kotoshōhō Yoshinari","nationality_area_id":"102","nationality_area_code":"JPN","nationality_area_name":"Japan","next_match_id":"","next_opponent_team_id":"","next_opponent_name":"","zone":"","zone_id":"","values":{"matches_total":"15","matches_won":"13","matches_lost":"2"}},{"position":"2","people_id":"7999086","first_name":"Danylo","last_name":"Yavhusishyn","short_name":"Aonishiki Arata","common_name":"Aonishiki Arata","nationality_area_id":"201","nationality_area_code":"UKR","nationality_area_name":"Ukraine","next_match_id":"","next_opponent_team_id":"","next_opponent_name":"","zone":"","zone_id":"","values":{"matches_total":"16","matches_won":"12","matches_lost":"4"}},{"position":"3","people_id":"7942504","first_name":"Munkh-Orgil","last_name":"Batjargal","short_name":"Tamawashi Ichirō","common_name":"Tamawashi Ichirō","nationality_area_id":"102","nationality_area_code":"JPN","nationality_area_name":"Japan","next_match_id":"","next_opponent_team_id":"","next_opponent_name":"","zone":"","zone_id":"","values":{"matches_total":"15","matches_won":"11","matches_lost":"4"}},{"position":"4","people_id":"7942592","first_name":"Daiki","last_name":"Nakamura","short_name":"Ōnosato Daiki","common_name":"Ōnosato Daiki","nationality_area_id":"102","nationality_area_code":"JPN","nationality_area_name":"Japan","next_match_id":"","next_opponent_team_id":"","next_opponent_name":"","zone":"","zone_id":"","values":{"matches_total":"15","matches_won":"11","matches_lost":"4"}},{"position":"5","people_id":"7942600","first_name":"Sakutarō","last_name":"Takei","short_name":"Atamifuji Sakutarō","common_name":"Atamifuji Sakutarō","nationality_area_id":"102","nationality_area_code":"JPN","nationality_area_name":"Japan","next_match_id":"","next_opponent_team_id":"","next_opponent_name":"","zone":"","zone_id":"","values":{"matches_total":"15","matches_won":"11","matches_lost":"4"}},{"position":"6","people_id":"8014870","first_name":"Naoya","last_name":"Kusano","short_name":"Kusano Naoya","common_name":"Kusano Naoya","nationality_area_id":"102","nationality_area_code":"JPN","nationality_area_name":"Japan","next_match_id":"","next_opponent_team_id":"","next_opponent_name":"","zone":"","zone_id":"","values":{"matches_total":"15","matches_won":"11","matches_lost":"4"}},{"position":"7","people_id":"7917142","first_name":"Hisashi","last_name":"Ōmichi","short_name":"Mitakeumi Hisashi","common_name":"Mitakeumi Hisashi","nationality_area_id":"102","nationality_area_code":"JPN","nationality_area_name":"Japan","next_match_id":"","next_opponent_team_id":"","next_opponent_name":"","zone":"","zone_id":"","values":{"matches_total":"15","matches_won":"10","matches_lost":"5"}},{"position":"8","people_id":"7917153","first_name":"Akira","last_name":"Takayasu","short_name":"Takayasu Akira","common_name":"Takayasu Akira","nationality_area_id":"102","nationality_area_code":"JPN","nationality_area_name":"Japan","next_match_id":"","next_opponent_team_id":"","next_opponent_name":"","zone":"","zone_id":"","values":{"matches_total":"15","matches_won":"10","matches_lost":"5"}},{"position":"9","people_id":"7942498","first_name":"Atsushi","last_name":"Onami","short_name":"Wakatakakage Atsushi","common_name":"Wakatakakage Atsushi","nationality_area_id":"102","nationality_area_code":"JPN","nationality_area_name":"Japan","next_match_id":"","next_opponent_team_id":"","next_opponent_name":"","zone":"","zone_id":"","values":{"matches_total":"15","matches_won":"10","matches_lost":"5"}},{"position":"10","people_id":"8026678","first_name":"Seigo","last_name":"Saito","short_name":"Fujinokawa Seigo","common_name":"Fujinokawa Seigo","nationality_area_id":"102","nationality_area_code":"JPN","nationality_area_name":"Japan","next_match_id":"","next_opponent_team_id":"","next_opponent_name":"","zone":"","zone_id":"","values":{"matches_total":"15","matches_won":"10","matches_lost":"5"}},{"position":"11","people_id":"7917135","first_name":"Shinji","last_name":"Kizaki","short_name":"Churanoumi Yoshihisa","common_name":"Churanoumi Yoshihisa","nationality_area_id":"102","nationality_area_code":"JPN","nationality_area_name":"Japan","next_match_id":"","next_opponent_team_id":"","next_opponent_name":"","zone":"","zone_id":"","values":{"matches_total":"15","matches_won":"9","matches_lost":"6"}},{"position":"12","people_id":"7917140","first_name":"Daiki","last_name":"Yamamoto","short_name":"Ichiyamamoto Daiki","common_name":"Ichiyamamoto Daiki","nationality_area_id":"102","nationality_area_code":"JPN","nationality_area_name":"Japan","next_match_id":"","next_opponent_team_id":"","next_opponent_name":"","zone":"","zone_id":"","values":{"matches_total":"15","matches_won":"9","matches_lost":"6"}},{"position":"13","people_id":"7917150","first_name":"Naoya","last_name":"Shōdai","short_name":"Shōdai Naoya","common_name":"Shōdai Naoya","nationality_area_id":"102","nationality_area_code":"JPN","nationality_area_name":"Japan","next_match_id":"","next_opponent_team_id":"","next_opponent_name":"","zone":"","zone_id":"","values":{"matches_total":"15","matches_won":"9","matches_lost":"6"}},{"position":"14","people_id":"7942502","first_name":"Kazunari","last_name":"Ihara","short_name":"Midorifuji Kazunari","common_name":"Midorifuji Kazunari","nationality_area_id":"102","nationality_area_code":"JPN","nationality_area_name":"Japan","next_match_id":"","next_opponent_team_id":"","next_opponent_name":"","zone":"","zone_id":"","values":{"matches_total":"15","matches_won":"9","matches_lost":"6"}},{"position":"15","people_id":"7942575","first_name":"Nobuaki","last_name":"Ishii","short_name":"Takanoshō Nobuaki","common_name":"Takanoshō Nobuaki","nationality_area_id":"102","nationality_area_code":"JPN","nationality_area_name":"Japan","next_match_id":"","next_opponent_team_id":"","next_opponent_name":"","zone":"","zone_id":"","values":{"matches_total":"15","matches_won":"9","matches_lost":"6"}},{"position":"16","people_id":"7942587","first_name":"Tōki","last_name":"Nishikawa","short_name":"Gōnoyama Tōki","common_name":"Gōnoyama Tōki","nationality_area_id":"102","nationality_area_code":"JPN","nationality_area_name":"Japan","next_match_id":"","next_opponent_team_id":"","next_opponent_name":"","zone":"","zone_id":"","values":{"matches_total":"15","matches_won":"9","matches_lost":"6"}},{"position":"17","people_id":"7942595","first_name":"Kōsuke","last_name":"Horikiri","short_name":"Abi Masatora","common_name":"Abi Masatora","nationality_area_id":"102","nationality_area_code":"JPN","nationality_area_name":"Japan","next_match_id":"","next_opponent_team_id":"","next_opponent_name":"","zone":"","zone_id":"","values":{"matches_total":"15","matches_won":"9","matches_lost":"6"}},{"position":"18","people_id":"7942585","first_name":"Kazuki","last_name":"Ura","short_name":"Ura Kazuki","common_name":"Ura Kazuki","nationality_area_id":"102","nationality_area_code":"JPN","nationality_area_name":"Japan","next_match_id":"","next_opponent_team_id":"","next_opponent_name":"","zone":"","zone_id":"","values":{"matches_total":"14","matches_won":"8","matches_lost":"6"}},{"position":"19","people_id":"7942589","first_name":"Byambachuluun","last_name":"Lkhagvasuren","short_name":"Kirishima Tetsuo","common_name":"Kirishima Tetsuo","nationality_area_id":"131","nationality_area_code":"MGL","nationality_area_name":"Mongolia","next_match_id":"","next_opponent_team_id":"","next_opponent_name":"","zone":"","zone_id":"","values":{"matches_total":"15","matches_won":"8","matches_lost":"7"}},{"position":"20","people_id":"7942602","first_name":"Kamatani","last_name":"Masakatsu","short_name":"Kotozakura Masakatsu","common_name":"Kotozakura Masakatsu","nationality_area_id":"102","nationality_area_code":"JPN","nationality_area_name":"Japan","next_match_id":"","next_opponent_team_id":"","next_opponent_name":"","zone":"","zone_id":"","values":{"matches_total":"15","matches_won":"8","matches_lost":"7"}},{"position":"21","people_id":"7942605","first_name":"Yūki","last_name":"Sakaguchi","short_name":"Hiradoumi Yūki","common_name":"Hiradoumi Yūki","nationality_area_id":"102","nationality_area_code":"JPN","nationality_area_name":"Japan","next_match_id":"","next_opponent_team_id":"","next_opponent_name":"","zone":"","zone_id":"","values":{"matches_total":"15","matches_won":"8","matches_lost":"7"}},{"position":"22","people_id":"7968776","first_name":"Tetsuya","last_name":"Ochiai","short_name":"Hakuōhō Tetsuya","common_name":"Hakuōhō Tetsuya","nationality_area_id":"102","nationality_area_code":"JPN","nationality_area_name":"Japan","next_match_id":"","next_opponent_team_id":"","next_opponent_name":"","zone":"","zone_id":"","values":{"matches_total":"15","matches_won":"8","matches_lost":"7"}},{"position":"23","people_id":"7917131","first_name":"Amartuvshin","last_name":"Amarsanaa","short_name":"Rōga Tokiyoshi","common_name":"Rōga Tokiyoshi","nationality_area_id":"160","nationality_area_code":"RUS","nationality_area_name":"Russia","next_match_id":"","next_opponent_team_id":"","next_opponent_name":"","zone":"","zone_id":"","values":{"matches_total":"15","matches_won":"7","matches_lost":"8"}},{"position":"24","people_id":"7942573","first_name":"Konosuke","last_name":"Naya","short_name":"Ōhō Konosuke","common_name":"Ōhō Konosuke","nationality_area_id":"102","nationality_area_code":"JPN","nationality_area_name":"Japan","next_match_id":"","next_opponent_team_id":"","next_opponent_name":"","zone":"","zone_id":"","values":{"matches_total":"15","matches_won":"7","matches_lost":"8"}},{"position":"25","people_id":"7950722","first_name":"Serhii","last_name":"Sokolovskyi","short_name":"Shishi Masaru","common_name":"Shishi Masaru","nationality_area_id":"201","nationality_area_code":"UKR","nationality_area_name":"Ukraine","next_match_id":"","next_opponent_team_id":"","next_opponent_name":"","zone":"","zone_id":"","values":{"matches_total":"15","matches_won":"7","matches_lost":"8"}},{"position":"26","people_id":"7942465","first_name":"Hideki","last_name":"Tomie","short_name":"Tokihayate Hideki","common_name":"Tokihayate Hideki","nationality_area_id":"102","nationality_area_code":"JPN","nationality_area_name":"Japan","next_match_id":"","next_opponent_team_id":"","next_opponent_name":"","zone":"","zone_id":"","values":{"matches_total":"15","matches_won":"6","matches_lost":"9"}},{"position":"27","people_id":"7942597","first_name":"Minato","last_name":"Onami","short_name":"Wakamotoharu Minato","common_name":"Wakamotoharu Minato","nationality_area_id":"102","nationality_area_code":"JPN","nationality_area_name":"Japan","next_match_id":"","next_opponent_team_id":"","next_opponent_name":"","zone":"","zone_id":"","values":{"matches_total":"15","matches_won":"6","matches_lost":"9"}},{"position":"28","people_id":"7942607","first_name":"Batjargal","last_name":"Choijilsuren","short_name":"Ōnokatsu Kazuhiro","common_name":"Ōnokatsu Kazuhiro","nationality_area_id":"131","nationality_area_code":"MGL","nationality_area_name":"Mongolia","next_match_id":"","next_opponent_team_id":"","next_opponent_name":"","zone":"","zone_id":"","values":{"matches_total":"15","matches_won":"6","matches_lost":"9"}},{"position":"29","people_id":"8026679","first_name":"Taiki","last_name":"Tebakari","short_name":"Kotoeiho Hiroki","common_name":"Kotoeiho Hiroki","nationality_area_id":"102","nationality_area_code":"JPN","nationality_area_name":"Japan","next_match_id":"","next_opponent_team_id":"","next_opponent_name":"","zone":"","zone_id":"","values":{"matches_total":"15","matches_won":"6","matches_lost":"9"}},{"position":"30","people_id":"7917128","first_name":"Mikiya","last_name":"Ishioka","short_name":"Takerufuji Mikiya","common_name":"Takerufuji Mikiya","nationality_area_id":"102","nationality_area_code":"JPN","nationality_area_name":"Japan","next_match_id":"","next_opponent_team_id":"","next_opponent_name":"","zone":"","zone_id":"","values":{"matches_total":"13","matches_won":"5","matches_lost":"8"}},{"position":"31","people_id":"7942614","first_name":"Takuma","last_name":"Ishizaki","short_name":"Asakōryū Takuma","common_name":"Asakōryū Takuma","nationality_area_id":"102","nationality_area_code":"JPN","nationality_area_name":"Japan","next_match_id":"","next_opponent_team_id":"","next_opponent_name":"","zone":"","zone_id":"","values":{"matches_total":"14","matches_won":"5","matches_lost":"9"}},{"position":"32","people_id":"7917139","first_name":"Kaname","last_name":"Matsumura","short_name":"Sadanoumi Takashi","common_name":"Sadanoumi Takashi","nationality_area_id":"102","nationality_area_code":"JPN","nationality_area_name":"Japan","next_match_id":"","next_opponent_team_id":"","next_opponent_name":"","zone":"","zone_id":"","values":{"matches_total":"15","matches_won":"4","matches_lost":"11"}},{"position":"33","people_id":"7942569","first_name":"Yersin","last_name":"Baltagul","short_name":"Kinbōzan Haruki","common_name":"Kinbōzan Haruki","nationality_area_id":"104","nationality_area_code":"KAZ","nationality_area_name":"Kazakhstan","next_match_id":"","next_opponent_team_id":"","next_opponent_name":"","zone":"","zone_id":"","values":{"matches_total":"15","matches_won":"4","matches_lost":"11"}},{"position":"34","people_id":"7969658","first_name":"Yasutoki","last_name":"Kayō","short_name":"Kayō Yasutoki","common_name":"Kayō Yasutoki","nationality_area_id":"102","nationality_area_code":"JPN","nationality_area_name":"Japan","next_match_id":"","next_opponent_team_id":"","next_opponent_name":"","zone":"","zone_id":"","values":{"matches_total":"15","matches_won":"4","matches_lost":"11"}},{"position":"35","people_id":"7942586","first_name":"Masaya","last_name":"Iwasaki","short_name":"Tobizaru Masaya","common_name":"Tobizaru Masaya","nationality_area_id":"102","nationality_area_code":"JPN","nationality_area_name":"Japan","next_match_id":"","next_opponent_team_id":"","next_opponent_name":"","zone":"","zone_id":"","values":{"matches_total":"13","matches_won":"3","matches_lost":"10"}},{"position":"36","people_id":"7942568","first_name":"Pürevsürengiin","last_name":"Delgerbayar","short_name":"Ōshōma Degi","common_name":"Ōshōma Degi","nationality_area_id":"131","nationality_area_code":"MGL","nationality_area_name":"Mongolia","next_match_id":"","next_opponent_team_id":"","next_opponent_name":"","zone":"","zone_id":"","values":{"matches_total":"15","matches_won":"3","matches_lost":"12"}},{"position":"37","people_id":"7942599","first_name":"Meisei","last_name":"Kawabata","short_name":"Meisei Chikara","common_name":"Meisei Chikara","nationality_area_id":"102","nationality_area_code":"JPN","nationality_area_name":"Japan","next_match_id":"","next_opponent_team_id":"","next_opponent_name":"","zone":"","zone_id":"","values":{"matches_total":"15","matches_won":"3","matches_lost":"12"}},{"position":"38","people_id":"8015563","first_name":"Takuya","last_name":"Iwasaki","short_name":"Hidenoumi Takuya","common_name":"Hidenoumi Takuya","nationality_area_id":"102","nationality_area_code":"JPN","nationality_area_name":"Japan","next_match_id":"","next_opponent_team_id":"","next_opponent_name":"","zone":"","zone_id":"","values":{"matches_total":"13","matches_won":"2","matches_lost":"11"}},{"position":"39","people_id":"8029081","first_name":"Seiya","last_name":"Fukasawa","short_name":"Oshoumi Seiya","common_name":"Oshoumi Seiya","nationality_area_id":"102","nationality_area_code":"JPN","nationality_area_name":"Japan","next_match_id":"","next_opponent_team_id":"","next_opponent_name":"","zone":"","zone_id":"","values":{"matches_total":"1","matches_won":"1","matches_lost":"0"}},{"position":"40","people_id":"8029438","first_name":"Yuta","last_name":"Minami","short_name":"Tomokaze Yuta","common_name":"Tomokaze Yuta","nationality_area_id":"102","nationality_area_code":"JPN","nationality_area_name":"Japan","next_match_id":"","next_opponent_team_id":"","next_opponent_name":"","zone":"","zone_id":"","values":{"matches_total":"1","matches_won":"1","matches_lost":"0"}},{"position":"41","people_id":"7942501","first_name":"Tetsuya","last_name":"Kumagai","short_name":"Nishikigi Tetsuya","common_name":"Nishikigi Tetsuya","nationality_area_id":"102","nationality_area_code":"JPN","nationality_area_name":"Japan","next_match_id":"","next_opponent_team_id":"","next_opponent_name":"","zone":"","zone_id":"","values":{"matches_total":"2","matches_won":"1","matches_lost":"1"}},{"position":"42","people_id":"7942601","first_name":"Sugarragchaagiin","last_name":"Byambasuren","short_name":"Hōshōryū Tomokatsu","common_name":"Hōshōryū Tomokatsu","nationality_area_id":"131","nationality_area_code":"MGL","nationality_area_name":"Mongolia","next_match_id":"","next_opponent_team_id":"","next_opponent_name":"","zone":"","zone_id":"","values":{"matches_total":"5","matches_won":"1","matches_lost":"4"}},{"position":"43","people_id":"7942612","first_name":"Ganbaatar","last_name":"Munkhsaihan","short_name":"Chiyoshōma Fujio","common_name":"Chiyoshōma Fujio","nationality_area_id":"131","nationality_area_code":"MGL","nationality_area_name":"Mongolia","next_match_id":"","next_opponent_team_id":"","next_opponent_name":"","zone":"","zone_id":"","values":{"matches_total":"15","matches_won":"1","matches_lost":"14"}},{"position":"44","people_id":"7917130","first_name":"Shōta","last_name":"Endō","short_name":"Endō Shōta","common_name":"Endō Shōta","nationality_area_id":"102","nationality_area_code":"JPN","nationality_area_name":"Japan","next_match_id":"","next_opponent_team_id":"","next_opponent_name":"","zone":"","zone_id":"","values":{"matches_total":"0","matches_won":"0","matches_lost":"0"}},{"position":"45","people_id":"7942603","first_name":"Hayato","last_name":"Takanishi","short_name":"Daieishō Hayato","common_name":"Daieishō Hayato","nationality_area_id":"102","nationality_area_code":"JPN","nationality_area_name":"Japan","next_match_id":"","next_opponent_team_id":"","next_opponent_name":"","zone":"","zone_id":"","values":{"matches_total":"0","matches_won":"0","matches_lost":"0"}},{"position":"46","people_id":"7917136","first_name":"Yūki","last_name":"Watanabe","short_name":"Ryūden Gōshi","common_name":"Ryūden Gōshi","nationality_area_id":"102","nationality_area_code":"JPN","nationality_area_name":"Japan","next_match_id":"","next_opponent_team_id":"","next_opponent_name":"","zone":"","zone_id":"","values":{"matches_total":"1","matches_won":"0","matches_lost":"1"}},{"position":"47","people_id":"7917138","first_name":"Shoto","last_name":"Tanimatsu","short_name":"Shōnannoumi Momotarō","common_name":"Shōnannoumi Momotarō","nationality_area_id":"102","nationality_area_code":"JPN","nationality_area_name":"Japan","next_match_id":"","next_opponent_team_id":"","next_opponent_name":"","zone":"","zone_id":"","values":{"matches_total":"1","matches_won":"0","matches_lost":"1"}},{"position":"48","people_id":"7951540","first_name":"Erdenebileg","last_name":"Enkhmanlai","short_name":"Tamashōhō Manpei","common_name":"Tamashōhō Manpei","nationality_area_id":"131","nationality_area_code":"MGL","nationality_area_name":"Mongolia","next_match_id":"","next_opponent_team_id":"","next_opponent_name":"","zone":"","zone_id":"","values":{"matches_total":"1","matches_won":"0","matches_lost":"1"}}]}}}}}}}}