Subscription to this function is not available for your account. To upgrade and receive access to this contact sales@datasportsgroup.com
v3 GET /baseball/get_matches_updates
Returns the last updated matches
Request URL
https://dsg-api.com/clients/{client_name}/baseball/get_matches_updates?intv=9000&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
ftype
string
changes feed type from XML to json (ftype=json or ftype=json_array)
intv
int Required
interval in seconds the changes should be retrieved
lang
string
two-character language code, defaults to 'en'
Nodes
competition❯
details about the competition
competition_id
unique identifier for a competition
competition_name
name of the competition
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
match❯
details about the match
date
date of match, format 'yyyy-mm-dd' (CET)
date_utc
date of match, format 'yyyy-mm-dd' (UTC)
final_period
display the period in which the match finished.
last_updated
When record was last updated. Format YYYY-MM-DD HH:MM:SS in CET timezone.
match_id
unique identifier of match
score_a
full-time score of team_a
score_b
full-time score of team_b
status
status of the game (Played, Playing, Fixture, Cancelled, Postponed, Suspended, Awarded, Break, Retired, Bye, No Contest, Disqualified, Tech Knockout, Knockout, Draw, Submission) + (Cricket-specific = No Result, Tea, Lunch, Dinner, between Innings, Stumps, rain delay, bad light, crowd trouble, pitch condition, start delay, drinks, super over, floodlight failure)
team_a_area_code
three-letter-acronym of the area where the home team origins
team_a_area_id
unique area_id for team_a
team_a_area_name
area name of home team origins county
team_a_id
unique team ID for team_a
team_a_logo
team logo URL
team_a_name
current name of team_a
team_a_original_name
the real name at the particular season (so can differ to current name)
team_a_short_name
short name of the home team
team_a_tla_name
three-letter-acronym of team_a
team_b_area_code
three-letter-acronym of the area where the home team origins
team_b_area_id
unique area_id for team_b
team_b_area_name
area name of away team origins county
team_b_id
unique team ID for team_b
team_b_logo
team logo URL
team_b_name
current name of team_b
team_b_original_name
the real name at the particular season (so can differ to current name)
team_b_short_name
short name of team_b
team_b_tla_name
three-letter-acronym of team_b
time
start time (CET), format 'hh:mm:ss'.
time_utc
start time (UTC), format 'hh:mm:ss'
venue_type
determines if the match is on neutral ground or on home/away basis (home_away or neutral)
winner
determines the winner of match ('team_A','team_B','draw','yet unknown')
match_extra❯
extra informations about the match
attendance
amount of people that attended the particular match
gameweek
contains the gameweek a match belongs to.
method❯
details about the API function
method_id
unique ID of method
name
name of method
period❯
details about periods of the match
score_a
period score of team_a
score_b
period score of team_b
type
three-letter-acronym of the period
round❯
basic details about the updated round
round_id
unique identifier of round
round_name
name of the round
season❯
details about the updated season
season_id
unique identifier for season
season_name
name of the competition for this particular season (including sponsor names etc)
season_title
title of 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}/baseball/get_matches_updates?intv=9000&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}/baseball/get_matches_updates?intv=9000&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}/baseball/get_matches_updates?intv=9000&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}/baseball/get_matches_updates?intv=9000&client={client_name}&authkey={client_authkey}", auth=("User", "Password"))
Response Example200 Success{"datasportsgroup":{"version":"2.437.3","sport":"baseball","lang":"en","generated_utc":"2025-08-01T15:08:10+00:00","method":{"method_id":"437","name":"get_matches_updates"},"match":[{"match_id":"3615496","date":"2025-08-01","time":"11:00:00","date_utc":"2025-08-01","time_utc":"09:00:00","team_a_id":"35581","team_a_name":"Yomiuri Giants","team_a_short_name":"Yomiuri Giants","team_a_tla_name":"YOM","team_a_original_name":"Yomiuri Giants","team_a_area_id":"102","team_a_area_name":"Japan","team_a_area_code":"JPN","team_a_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/35581.png","team_b_id":"35573","team_b_name":"Yokohama DeNA BayStars","team_b_short_name":"Yokohama BS","team_b_tla_name":"YOK","team_b_original_name":"Yokohama DeNA BayStars","team_b_area_id":"102","team_b_area_name":"Japan","team_b_area_code":"JPN","team_b_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/35573.png","status":"Played","winner":"team_B","score_a":"2","score_b":"7","venue_type":"home_away","final_period":"bas_p9s","last_updated":"2025-08-01 17:05:30","period_scores":[],"match_extra":{"gameweek":"","attendance":"42031","competition":{"competition_id":"1845","competition_name":"NPB"},"season":{"season_id":"75000","season_name":"NPB","season_title":"2025"},"round":{"round_id":"115047","round_name":"Regular Season"},"venue":{"venue_id":"11600","venue_name":"Tokyo Dome","venue_city":"Tōkyō","venue_area_id":"102","venue_area_name":"Japan"}}},{"match_id":"3615495","date":"2025-08-01","time":"11:00:00","date_utc":"2025-08-01","time_utc":"09:00:00","team_a_id":"35574","team_a_name":"Tokyo Yakult Swallows","team_a_short_name":"Tokyo Yakult","team_a_tla_name":"TYS","team_a_original_name":"Tokyo Yakult Swallows","team_a_area_id":"102","team_a_area_name":"Japan","team_a_area_code":"JPN","team_a_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/35574.png","team_b_id":"35572","team_b_name":"Hanshin Tigers","team_b_short_name":"Hanshin Tigers","team_b_tla_name":"HAN","team_b_original_name":"Hanshin Tigers","team_b_area_id":"102","team_b_area_name":"Japan","team_b_area_code":"JPN","team_b_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/35572.png","status":"Played","winner":"team_B","score_a":"2","score_b":"3","venue_type":"home_away","final_period":"bas_ep1s","last_updated":"2025-08-01 17:03:44","period_scores":[],"match_extra":{"gameweek":"","attendance":"28891","competition":{"competition_id":"1845","competition_name":"NPB"},"season":{"season_id":"75000","season_name":"NPB","season_title":"2025"},"round":{"round_id":"115047","round_name":"Regular Season"},"venue":{"venue_id":"11598","venue_name":"Meiji Jingu Stadium","venue_city":"Tōkyō","venue_area_id":"102","venue_area_name":"Japan"}}},{"match_id":"3615494","date":"2025-08-01","time":"11:00:00","date_utc":"2025-08-01","time_utc":"09:00:00","team_a_id":"35576","team_a_name":"Saitama Seibu Lions","team_a_short_name":"Saitama Seibu","team_a_tla_name":"SAI","team_a_original_name":"Saitama Seibu Lions","team_a_area_id":"102","team_a_area_name":"Japan","team_a_area_code":"JPN","team_a_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/35576.png","team_b_id":"35580","team_b_name":"Chiba Lotte Marines","team_b_short_name":"Chiba Lotte","team_b_tla_name":"CHB","team_b_original_name":"Chiba Lotte Marines","team_b_area_id":"102","team_b_area_name":"Japan","team_b_area_code":"JPN","team_b_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/35580.png","status":"Played","winner":"team_A","score_a":"11","score_b":"2","venue_type":"home_away","final_period":"bas_p9s","last_updated":"2025-08-01 17:03:28","period_scores":[],"match_extra":{"gameweek":"","attendance":"24121","competition":{"competition_id":"1845","competition_name":"NPB"},"season":{"season_id":"75000","season_name":"NPB","season_title":"2025"},"round":{"round_id":"115047","round_name":"Regular Season"},"venue":{"venue_id":"11596","venue_name":"Belluna Dome","venue_city":"Tokorozawa","venue_area_id":"102","venue_area_name":"Japan"}}},{"match_id":"3615493","date":"2025-08-01","time":"11:00:00","date_utc":"2025-08-01","time_utc":"09:00:00","team_a_id":"35578","team_a_name":"Orix Buffaloes","team_a_short_name":"Orix Buffaloes","team_a_tla_name":"ORX","team_a_original_name":"Orix Buffaloes","team_a_area_id":"102","team_a_area_name":"Japan","team_a_area_code":"JPN","team_a_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/35578.png","team_b_id":"35579","team_b_name":"Hokkaido Nippon-Ham Fighters","team_b_short_name":"Nippon-Ham","team_b_tla_name":"NIP","team_b_original_name":"Hokkaido Nippon-Ham Fighters","team_b_area_id":"102","team_b_area_name":"Japan","team_b_area_code":"JPN","team_b_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/35579.png","status":"Played","winner":"team_A","score_a":"4","score_b":"2","venue_type":"home_away","final_period":"bas_p9s","last_updated":"2025-08-01 17:02:43","period_scores":[],"match_extra":{"gameweek":"","attendance":"30823","competition":{"competition_id":"1845","competition_name":"NPB"},"season":{"season_id":"75000","season_name":"NPB","season_title":"2025"},"round":{"round_id":"115047","round_name":"Regular Season"},"venue":{"venue_id":"11595","venue_name":"Kyocera Dome Osaka","venue_city":"Ōsaka","venue_area_id":"102","venue_area_name":"Japan"}}},{"match_id":"3615492","date":"2025-08-01","time":"11:00:00","date_utc":"2025-08-01","time_utc":"09:00:00","team_a_id":"35571","team_a_name":"Hiroshima Toyo Carp","team_a_short_name":"Hiroshima TC","team_a_tla_name":"HTC","team_a_original_name":"Hiroshima Toyo Carp","team_a_area_id":"102","team_a_area_name":"Japan","team_a_area_code":"JPN","team_a_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/35571.png","team_b_id":"35582","team_b_name":"Chunichi Dragons","team_b_short_name":"Chunichi Drag","team_b_tla_name":"CHU","team_b_original_name":"Chunichi Dragons","team_b_area_id":"102","team_b_area_name":"Japan","team_b_area_code":"JPN","team_b_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/35582.png","status":"Played","winner":"team_A","score_a":"3","score_b":"1","venue_type":"home_away","final_period":"bas_p9s","last_updated":"2025-08-01 17:01:29","period_scores":[],"match_extra":{"gameweek":"","attendance":"29169","competition":{"competition_id":"1845","competition_name":"NPB"},"season":{"season_id":"75000","season_name":"NPB","season_title":"2025"},"round":{"round_id":"115047","round_name":"Regular Season"},"venue":{"venue_id":"11594","venue_name":"Mazda Zoom-Zoom Stadium","venue_city":"Hiroshima","venue_area_id":"102","venue_area_name":"Japan"}}},{"match_id":"3615491","date":"2025-08-01","time":"11:00:00","date_utc":"2025-08-01","time_utc":"09:00:00","team_a_id":"35575","team_a_name":"Fukuoka SoftBank Hawks","team_a_short_name":"Fukuoka SB","team_a_tla_name":"FUK","team_a_original_name":"Fukuoka SoftBank Hawks","team_a_area_id":"102","team_a_area_name":"Japan","team_a_area_code":"JPN","team_a_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/35575.png","team_b_id":"35577","team_b_name":"Tohoku Rakuten Golden Eagles","team_b_short_name":"Rakuten GE","team_b_tla_name":"RGE","team_b_original_name":"Tohoku Rakuten Golden Eagles","team_b_area_id":"102","team_b_area_name":"Japan","team_b_area_code":"JPN","team_b_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/35577.png","status":"Played","winner":"team_A","score_a":"3","score_b":"1","venue_type":"home_away","final_period":"bas_p9s","last_updated":"2025-08-01 17:00:10","period_scores":[],"match_extra":{"gameweek":"","attendance":"40142","competition":{"competition_id":"1845","competition_name":"NPB"},"season":{"season_id":"75000","season_name":"NPB","season_title":"2025"},"round":{"round_id":"115047","round_name":"Regular Season"},"venue":{"venue_id":"11592","venue_name":"Fukuoka PayPay Dome","venue_city":"Fukuoka","venue_area_id":"102","venue_area_name":"Japan"}}},{"match_id":"3656787","date":"2025-08-01","time":"12:35:00","date_utc":"2025-08-01","time_utc":"10:35:00","team_a_id":"45686","team_a_name":"Fubon Guardians","team_a_short_name":"Fubon Guardian","team_a_tla_name":"FUB","team_a_original_name":"Fubon Guardians","team_a_area_id":"50","team_a_area_name":"Chinese Taipei","team_a_area_code":"TPE","team_a_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/45686.png","team_b_id":"45688","team_b_name":"Uni-President Lions","team_b_short_name":"Uni Lions","team_b_tla_name":"UNI","team_b_original_name":"Uni-President Lions","team_b_area_id":"50","team_b_area_name":"Chinese Taipei","team_b_area_code":"TPE","team_b_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/45688.png","status":"Fixture","winner":"yet unknown","score_a":"","score_b":"","venue_type":"home_away","final_period":"bas_p9s","last_updated":"2025-08-01 16:36:52","period_scores":[],"match_extra":{"gameweek":"","attendance":"","competition":{"competition_id":"2735","competition_name":"CPBL"},"season":{"season_id":"75329","season_name":"CPBL","season_title":"2025"},"round":{"round_id":"119067","round_name":"2nd Phase"},"venue":{"venue_id":"16672","venue_name":"Xinzhuang Baseball Stadium","venue_city":"New Taipei City","venue_area_id":"50","venue_area_name":"Chinese Taipei"}}},{"match_id":"3656788","date":"2025-08-01","time":"12:35:00","date_utc":"2025-08-01","time_utc":"10:35:00","team_a_id":"64997","team_a_name":"TSG Hawks","team_a_short_name":"TSG Hawks","team_a_tla_name":"TSG","team_a_original_name":"TSG Hawks","team_a_area_id":"50","team_a_area_name":"Chinese Taipei","team_a_area_code":"TPE","team_a_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/64997.png","team_b_id":"46781","team_b_name":"Wei Chuan Dragons","team_b_short_name":"Wei Chuan Dr.","team_b_tla_name":"WCD","team_b_original_name":"Wei Chuan Dragons","team_b_area_id":"50","team_b_area_name":"Chinese Taipei","team_b_area_code":"TPE","team_b_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/46781.png","status":"Played","winner":"draw","score_a":"0","score_b":"0","venue_type":"home_away","final_period":"bas_p6s","last_updated":"2025-08-01 16:01:10","period_scores":[],"match_extra":{"gameweek":"","attendance":"","competition":{"competition_id":"2735","competition_name":"CPBL"},"season":{"season_id":"75329","season_name":"CPBL","season_title":"2025"},"round":{"round_id":"119067","round_name":"2nd Phase"},"venue":{"venue_id":"16861","venue_name":"Chengcing Lake Baseball Stadium","venue_city":"Kaohsiung City","venue_area_id":"50","venue_area_name":"Chinese Taipei"}}},{"match_id":"3656786","date":"2025-08-01","time":"12:35:00","date_utc":"2025-08-01","time_utc":"10:35:00","team_a_id":"45689","team_a_name":"Chinatrust Brothers","team_a_short_name":"Chinatrust Br","team_a_tla_name":"BRO","team_a_original_name":"Chinatrust Brothers","team_a_area_id":"50","team_a_area_name":"Chinese Taipei","team_a_area_code":"TPE","team_a_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/45689.png","team_b_id":"45687","team_b_name":"Rakuten Monkeys","team_b_short_name":"Rakuten Monkey","team_b_tla_name":"RAK","team_b_original_name":"Rakuten Monkeys","team_b_area_id":"50","team_b_area_name":"Chinese Taipei","team_b_area_code":"TPE","team_b_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/45687.png","status":"Played","winner":"team_A","score_a":"7","score_b":"5","venue_type":"home_away","final_period":"bas_p9s","last_updated":"2025-08-01 15:48:50","period_scores":[],"match_extra":{"gameweek":"","attendance":"","competition":{"competition_id":"2735","competition_name":"CPBL"},"season":{"season_id":"75329","season_name":"CPBL","season_title":"2025"},"round":{"round_id":"119067","round_name":"2nd Phase"},"venue":{"venue_id":"16671","venue_name":"Taichung Intercontinental Baseball Stadium","venue_city":"Taichung","venue_area_id":"50","venue_area_name":"Chinese Taipei"}}},{"match_id":"3591853","date":"2025-08-01","time":"03:40:00","date_utc":"2025-08-01","time_utc":"01:40:00","team_a_id":"25462","team_a_name":"Seattle Mariners","team_a_short_name":"Mariners","team_a_tla_name":"SEA","team_a_original_name":"Seattle Mariners","team_a_area_id":"203","team_a_area_name":"United States","team_a_area_code":"USA","team_a_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25462.png","team_b_id":"25463","team_b_name":"Texas Rangers","team_b_short_name":"Rangers","team_b_tla_name":"TEX","team_b_original_name":"Texas Rangers","team_b_area_id":"203","team_b_area_name":"United States","team_b_area_code":"USA","team_b_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25463.png","status":"Played","winner":"team_A","score_a":"6","score_b":"0","venue_type":"home_away","final_period":"bas_p9s","last_updated":"2025-08-01 15:29:04","period_scores":[],"match_extra":{"gameweek":"","attendance":"28293","competition":{"competition_id":"921","competition_name":"MLB"},"season":{"season_id":"74515","season_name":"MLB","season_title":"2025"},"round":{"round_id":"112347","round_name":"Regular Season"},"venue":{"venue_id":"9433","venue_name":"T-Mobile Park","venue_city":"Seattle, WA","venue_area_id":"203","venue_area_name":"United States"}}},{"match_id":"3591852","date":"2025-08-01","time":"01:10:00","date_utc":"2025-07-31","time_utc":"23:10:00","team_a_id":"25465","team_a_name":"Cincinnati Reds","team_a_short_name":"Reds","team_a_tla_name":"CIN","team_a_original_name":"Cincinnati Reds","team_a_area_id":"203","team_a_area_name":"United States","team_a_area_code":"USA","team_a_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25465.png","team_b_id":"25469","team_b_name":"Atlanta Braves","team_b_short_name":"Braves","team_b_tla_name":"ATL","team_b_original_name":"Atlanta Braves","team_b_area_id":"203","team_b_area_name":"United States","team_b_area_code":"USA","team_b_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25469.png","status":"Played","winner":"team_B","score_a":"11","score_b":"12","venue_type":"home_away","final_period":"bas_ep1s","last_updated":"2025-08-01 15:27:38","period_scores":[],"match_extra":{"gameweek":"","attendance":"27169","competition":{"competition_id":"921","competition_name":"MLB"},"season":{"season_id":"74515","season_name":"MLB","season_title":"2025"},"round":{"round_id":"112347","round_name":"Regular Season"},"venue":{"venue_id":"9420","venue_name":"Great American Ball Park","venue_city":"Cincinnati, OH","venue_area_id":"203","venue_area_name":"United States"}}},{"match_id":"3591854","date":"2025-07-31","time":"19:05:00","date_utc":"2025-07-31","time_utc":"17:05:00","team_a_id":"25456","team_a_name":"New York Yankees","team_a_short_name":"Yankees","team_a_tla_name":"NYY","team_a_original_name":"New York Yankees","team_a_area_id":"203","team_a_area_name":"United States","team_a_area_code":"USA","team_a_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25456.png","team_b_id":"25457","team_b_name":"Tampa Bay Rays","team_b_short_name":"Rays","team_b_tla_name":"TB","team_b_original_name":"Tampa Bay Rays","team_b_area_id":"203","team_b_area_name":"United States","team_b_area_code":"USA","team_b_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25457.png","status":"Played","winner":"team_A","score_a":"7","score_b":"4","venue_type":"home_away","final_period":"bas_p9s","last_updated":"2025-08-01 15:26:28","period_scores":[],"match_extra":{"gameweek":"","attendance":"44292","competition":{"competition_id":"921","competition_name":"MLB"},"season":{"season_id":"74515","season_name":"MLB","season_title":"2025"},"round":{"round_id":"112347","round_name":"Regular Season"},"venue":{"venue_id":"1946","venue_name":"Yankee Stadium","venue_city":"New York","venue_area_id":"203","venue_area_name":"United States"}}},{"match_id":"3627073","date":"2025-08-01","time":"11:30:00","date_utc":"2025-08-01","time_utc":"09:30:00","team_a_id":"30551","team_a_name":"KIA Tigers","team_a_short_name":"KIA Tigers","team_a_tla_name":"KIA","team_a_original_name":"KIA Tigers","team_a_area_id":"107","team_a_area_name":"Korea Republic","team_a_area_code":"KOR","team_a_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/30551.png","team_b_id":"30558","team_b_name":"Hanwha Eagles","team_b_short_name":"Hanwha Eagles","team_b_tla_name":"HAN","team_b_original_name":"Hanwha Eagles","team_b_area_id":"107","team_b_area_name":"Korea Republic","team_b_area_code":"KOR","team_b_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/30558.png","status":"Played","winner":"team_A","score_a":"3","score_b":"2","venue_type":"home_away","final_period":"bas_p9s","last_updated":"2025-08-01 14:54:17","period_scores":[],"match_extra":{"gameweek":"","attendance":"","competition":{"competition_id":"1088","competition_name":"KBO League"},"season":{"season_id":"75129","season_name":"Shinhan SOL Bank KBO League","season_title":"2025"},"round":{"round_id":"116863","round_name":"Regular Season"},"venue":{"venue_id":"12248","venue_name":"Gwangju-Kia Champions Field","venue_city":"Gwangju","venue_area_id":"107","venue_area_name":"Korea Republic"}}},{"match_id":"3627072","date":"2025-08-01","time":"11:30:00","date_utc":"2025-08-01","time_utc":"09:30:00","team_a_id":"30557","team_a_name":"Doosan Bears","team_a_short_name":"Doosan Bears","team_a_tla_name":"DOB","team_a_original_name":"Doosan Bears","team_a_area_id":"107","team_a_area_name":"Korea Republic","team_a_area_code":"KOR","team_a_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/30557.png","team_b_id":"30554","team_b_name":"SSG Landers","team_b_short_name":"SSG Landers","team_b_tla_name":"SSG","team_b_original_name":"SSG Landers","team_b_area_id":"107","team_b_area_name":"Korea Republic","team_b_area_code":"KOR","team_b_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/30554.png","status":"Played","winner":"team_B","score_a":"2","score_b":"7","venue_type":"home_away","final_period":"bas_p9s","last_updated":"2025-08-01 14:54:15","period_scores":[],"match_extra":{"gameweek":"","attendance":"","competition":{"competition_id":"1088","competition_name":"KBO League"},"season":{"season_id":"75129","season_name":"Shinhan SOL Bank KBO League","season_title":"2025"},"round":{"round_id":"116863","round_name":"Regular Season"},"venue":{"venue_id":"2307","venue_name":"Jamsil Baseball Stadium","venue_city":"Seoul","venue_area_id":"107","venue_area_name":"Korea Republic"}}},{"match_id":"3627076","date":"2025-08-01","time":"11:30:00","date_utc":"2025-08-01","time_utc":"09:30:00","team_a_id":"30560","team_a_name":"Samsung Lions","team_a_short_name":"Samsung Lions","team_a_tla_name":"SAM","team_a_original_name":"Samsung Lions","team_a_area_id":"107","team_a_area_name":"Korea Republic","team_a_area_code":"KOR","team_a_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/30560.png","team_b_id":"30553","team_b_name":"LG Twins","team_b_short_name":"LG Twins","team_b_tla_name":"LGT","team_b_original_name":"LG Twins","team_b_area_id":"107","team_b_area_name":"Korea Republic","team_b_area_code":"KOR","team_b_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/30553.png","status":"Played","winner":"team_B","score_a":"2","score_b":"4","venue_type":"home_away","final_period":"bas_p9s","last_updated":"2025-08-01 14:38:19","period_scores":[],"match_extra":{"gameweek":"","attendance":"","competition":{"competition_id":"1088","competition_name":"KBO League"},"season":{"season_id":"75129","season_name":"Shinhan SOL Bank KBO League","season_title":"2025"},"round":{"round_id":"116863","round_name":"Regular Season"},"venue":{"venue_id":"12256","venue_name":"Daegu Samsung Lions Park","venue_city":"Daegu","venue_area_id":"107","venue_area_name":"Korea Republic"}}}]}}