MLB Push Statistics provides real-time game stats at the player level for all live games.
Syntax
https://api.sportradar.com/mlb/{access_level}/stream/en/statistics/subscribe?api_key={your_api_key} |
Parameters
Parameter | Description |
---|---|
access_level | Defines the access level of your API keyproduction , trial |
your_api_key | Your API key |
Optional Query String Parameters
By default, a Push feed will provide all data available for all in progress games. If needed, you can filter the data returned by including query strings.
Optional query string parameters must be added after your API key with an ampersand (&
). If you are filtering for more than one result, separate the results with a comma (,
) and no spaces.
Parameter | Description |
---|---|
match | Game id Example: match=sd:match:7779b2fe-70ad-4823-8c6d-9e2453576e2a |
player | Player id Example: player=sd:player:d3351c6e-12cf-4ab5-b651-ad23d49c4245 |
team | Team id Example: team=sd:team:25507be1-6a68-4267-bd82-e097d94b359b |
stats_type | Stats typeplayer , team Example stats_type=player |
stats_category | Stats categoryfielding , hitting , pitching Example: stats_category=pitching |
status | Game statusinprogress , created . Example: status=inprogress |
Code Samples
require 'uri'
require 'net/http'
require 'openssl'
url = URI("https://api.sportradar.com/mlb/trial/stream/en/statistics/subscribe?api_key={your_api_key}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
http.verify_mode = OpenSSL::SSL::VERIFY_NONE
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body
import requests
import json
r = requests.get("https://api.sportradar.com/mlb/trial/stream/en/statistics/subscribe",
params = {'api_key': 'your_api_key'},
allow_redirects=False)
redirect_url = r.headers['Location']
r = requests.get(redirect_url, stream=True)
for line in r.iter_lines():
# filter out keep-alive new lines
if line:
decoded_line = line.decode('utf-8')
print(json.loads(decoded_line))
curl -L GET 'api.sportradar.com/mlb/trial/stream/en/statistics/subscribe?api_key={your_api_key}'
Samples with Query String Params
require 'uri'
require 'net/http'
require 'openssl'
url = URI("https://api.sportradar.com/mlb/trial/stream/en/statistics/subscribe?api_key={your_api_key}&status=inprogress&match=sd:match:7779b2fe-70ad-4823-8c6d-9e2453576e2a")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
http.verify_mode = OpenSSL::SSL::VERIFY_NONE
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body
import requests
import json
r = requests.get("https://api.sportradar.com/mlb/trial/stream/en/statistics/subscribe",
params = {'api_key': 'your_api_key', 'status': 'inprogress', 'match': 'sd:match:7779b2fe-70ad-4823-8c6d-9e2453576e2a'},
allow_redirects=False)
redirect_url = r.headers['Location']
r = requests.get(redirect_url, stream=True)
for line in r.iter_lines():
# filter out keep-alive new lines
if line:
decoded_line = line.decode('utf-8')
print(json.loads(decoded_line))
curl -L GET 'api.sportradar.com/mlb/trial/stream/en/statistics/subscribe?api_key={your_api_key}&status=inprogress&match=sd:match:7779b2fe-70ad-4823-8c6d-9e2453576e2a'
Response Sample
The above commands return json like this.
Data Points
Metadata:
Attribute | Parent Element | Type | Description |
---|---|---|---|
league | metadata | String | Alias of a league ex. MLB |
locale | metadata | String | Language code ex. en (English) |
match | metadata | GUID | Unique ID of a game ex. sd:match:30ad883f-aeaf-4e6b-9fd9-a1cc0b6c4679 |
operation | metadata | String | Operation of an updatecreate , update , delete |
player | metadata | GUID | Unique ID of a player ex. sd:player:fa76cc26-d558-4651-8d23-5652519a7dc0 |
stats_category | metadata | String | Category of a stat ex. pitching |
stats_type | metadata | String | Type of a stat ex. team |
status | metadata | String | The status of a gamescheduled , inprogress , complete , closed , wdelay , fdelay , odelay , canceled , unnecessary , if-necessary , postponed , suspended , maintenance |
team | metadata | GUID | Unique ID of a team ex. sd:team:575c19b7-4052-41c2-9f0a-1c5813d02f99 |
version | metadata | String | Version of the API ex. v6.5 |
Boxscore:
Attribute | Parent Element | Type | Description |
---|---|---|---|
abbr | away | String | Abbreviation of the away team ex. MIN (Minnesota) |
errors | away | Integer | Number of errors for the away team |
hits | away | Integer | Number of hits for the away team |
id | away | GUID | Unique ID of the away team ex. 29dd9a87-5bcc-4774-80c3-7f50d985068b |
id | away - probable_pitcher | GUID | Unique ID of the away team's probable pitcher ex. 515af486-d938-4cb6-90e4-943323a5737c |
market | away | String | Market name of the away team ex. Colorado |
name | away | String | Team name of the away team ex. Rockies |
runs | away | Integer | Number of runs for the away team in the game |
abbr | home | String | Abbreviation of the home team ex. CLE (Cleveland) |
errors | home | Integer | Number of errors for the home team |
hits | home | Integer | Number of hits for the home team |
id | home | GUID | Unique ID of the home team ex. 29dd9a87-5bcc-4774-80c3-7f50d985068b |
id | home - probable_pitcher | GUID | Unique ID of the home team's probable pitcher ex. 515af486-d938-4cb6-90e4-943323a5737c |
market | home | String | Market name of the home team ex. Cleveland |
name | home | String | Team name of the home team ex. Guardians |
runs | home | Integer | Number of runs for the home team in the game |
abbr | team | String | Abbreviation of a team ex. TB (Tampa Bay) |
id | team | GUID | Unique ID of a team ex. bdc11650-6f74-49c4-875e-778aeb7632d9 |
market | team | String | Market name of a team ex. Tampa Bay |
name | team | String | Team name ex. Rays |
Player:
Attribute | Parent Element | Type | Description |
---|---|---|---|
depth | player | Integer | Player's depth chart position (1 = starter) |
first_name | player | String | First name of a player ex. Markus |
full_name | player | String | Full name of a player ex. Mookie Betts |
suffix | player | String | Name suffix of a player ex. Jr. |
id | player | GUID | Unique ID of a player ex. ea1a2111-44cc-4996-babb-9439465e6760 |
jersey_number | player | Integer | Number of a player's jersey |
last_name | player | String | Last name of a runner ex. Betts |
position | player | String | Position of a playerC (Catcher), IF (Infield), OF (Outfield), P (Pitcher), DH (Designated Hitter) |
preferred_name | player | String | Preferred name of a player ex. Mookie |
primary_position | player | String | Primary position of a playerC (Catcher), IF (Infield), 1B (First Base), 2B (Second Base), 3B (Third Base), SS (Shortstop), OF (Outfield), LF (Left Field), CF (Centerfield), P (Pitcher), RF (Right Field), RP (Relief Pitcher), SP (Starting Pitcher), DH (Designated Hitter) |
status | player | String | Status of a playerA (Activated), BRV (Bereavement Leave), D7 (7 Day Injured List), D10 (10 Day Injured List), D60 (60 Day Injured List), DFA (Designated for assignment), FA (Free agent), FME (Family Medical Emergency), LV (Paid Leave), MIN (Minors), NRI (Non-roster Invite), PL (Paternity Leave), RST (Restricted), RET (Retired), SUS (Suspended), UDP (Unsigned Draft Pick), WV (Waivers), DUP (Duplicate Profile), Null(Blank) (Traded or not activated) *Traded players temporarily have no status listed after they are traded to a new team and are either activated by the MLB club or assigned to a minor league affiliate |
Game:
Attribute | Parent Element | Type | Description |
---|---|---|---|
away_team | game | GUID | Unique ID of the away team ex. 29dd9a87-5bcc-4774-80c3-7f50d985068b |
coverage | game | String | Coverage level of a gamefull , boxscore |
double_header | game | Boolean | Signifies whether a game is part of a double header |
day_night | game | String | Signifies a day or night gameD , N |
entry_mode | game | String | Signifies the type of data entrySTOMP , LDE |
home_team | game | GUID | Unique ID of the home team ex. ef64da7f-cfaf-4300-87b0-9313386b977c |
id | game | GUID | Unique ID of the game ex. 1b554f5e-d8b7-4268-95da-2f4191015c84 |
game_number | game | Integer | Number of the game |
reference | game | String | Unique MLBAM ID of a game |
scheduled | game | dateTime | Scheduled date and time of a game ex. 2022-09-25T20:10:00+00:00 |
split_squad | game | Boolean | Signifies a Spring Training split squad game |
status | game | String | The status of a gamescheduled , inprogress , complete , closed , wdelay , fdelay , odelay , canceled , unnecessary , if-necessary , postponed , suspended , maintenance |
Lineup:
Attribute | Parent Element | Type | Description |
---|---|---|---|
order | lineups | Integer | Batting order number in the lineup for a player (0-9). 0 is used for the pitcher |
position | lineup | Integer | Position number for a player (1-12). See our FAQ for a list of position definitions |
inning | lineups | Integer | Inning of a player entering the game |
sequence | lineup | Integer | Sequence number of a lineup event |
team_id | event | GUID | Unique ID of a player's team ex. ef64da7f-cfaf-4300-87b0-9313386b977c |
Player Baserunning Stats (Game):
Attribute | Parent Element | Type | Description |
---|---|---|---|
caught | steal | Integer | Number of times caught stealing |
pct | steal | Decimal | Caught stealing percentage ex. 0.5 |
pickoff | steal | Decimal | Number of times picked off |
stolen | steal | Integer | Number of stolen bases |
Player Fielding Stats (Game):
Attribute | Parent Element | Type | Description |
---|---|---|---|
a | fielding - overall | Integer | Number of assists |
outfield | fielding - overall - assists | Integer | Number of outfield assists |
total | fielding - overall - assists | Integer | Number of total assists |
complete | fielding - overall - games | Integer | Number of complete games played |
dp | fielding - overall | Integer | Number of double plays turned |
error | fielding - overall | Integer | Number of errors committed |
fielding | fielding - overall - errors | Integer | Number of fielding errors committed |
interference | fielding - overall - errors | Integer | Number of interference errors committed |
throwing | fielding - overall - errors | Integer | Number of throwing errors committed |
total | fielding - overall - errors | Integer | Total number of errors committed |
fpct | fielding - overall | Decimal | Fielding percentage ex. 0.969 |
finish | fielding - overall - games | Integer | Number of games finished |
play | fielding - overall - games | Integer | Number of games played |
start | fielding - overall - games | Integer | Number of games started |
inn_1 | fielding - overall | Integer | Total number of outs while in the field |
inn_2 | fielding - overall | Decimal | Total number of innings in the field ex. 7.2 (7 2/3 innings) |
pb | fielding - overall | Integer | Number of passed balls |
po | fielding - overall | Integer | Number of putouts |
rf | fielding - overall | Decimal | Range factor at a position. Determined by dividing the sum of a fielder's putouts and assists by their total number of defensive games played |
outfield | fielding - overall - steal | Integer | Number of outfield assists |
caught | fielding - overall - steal | Integer | Number of runners caught stealing |
pct | fielding - overall - steal | Decimal | Caught stealing percentage ex. 0.5 |
pickoff | fielding - overall - steal | Integer | Number of successful pickoffs |
stolen | fielding - overall - steal | Integer | Number of stolen bases allowed |
tc | fielding - overall | Integer | Total number of fielding chances |
tp | fielding - overall | Integer | Number of triple plays turned |
c_wp | fielding - overall | Integer | Number of wild pitches while catching |
Player Hitting Stats (Game):
Attribute | Parent Element | Type | Description |
---|---|---|---|
ab | player - statistics - hitting - overall | Integer | Number of at bats |
abhr | player - statistics - hitting - overall | Decimal | At bats per homerun |
abk | player - statistics - hitting - overall | Decimal | At bats per strikeout |
ab_risp | player - statistics - hitting - overall | Integer | Number of at bats with runners in scoring position |
ball | player - statistics - hitting - overall - outcome | Integer | Number of at balls seen |
bip | player - statistics - hitting - overall | Integer | Number of at balls hit in play |
avg | player - statistics - hitting - overall | Decimal | Batting average ex. .333 |
babip | player - statistics - hitting - overall | Integer | BABIP (Batting average on balls in play) ex. 0.333 |
complete | player - statistics - hitting - overall - games | Integer | Number of complete games played |
cycle | player - statistics - hitting - overall - onbase | Integer | Number of cycles (player hits a single, double, triple, and homerun) |
dirtball | player - statistics - hitting - overall - outcome | Integer | Number of dirtballs seen |
d | player - statistics - hitting - overall - onbase | Integer | Number of doubles |
xbh | player - statistics - hitting - overall | Integer | Number of extra base hits |
fc | player - statistics - hitting - overall - onbase | Integer | Number of hits into fielder's choice |
flyball | player - statistics - hitting - overall | Integer | Number of at flyballs |
fo | player - statistics - hitting - overall - outs | Integer | Number of fly outs |
fidp | player - statistics - hitting - overall - outs | Integer | Number of fly outs into double plays |
foul | player - statistics - hitting - overall - outcome | Integer | Number of foul balls |
finish | player - statistics - hitting - overall - games | Integer | Number of games finished |
play | player - statistics - hitting - overall - games | Integer | Number of games played |
start | player - statistics - hitting - overall - games | Integer | Number of games started |
groundball | player - statistics - hitting - overall | Integer | Number of at groundballs |
gofo | player - statistics - hitting - overall | Decimal | Ground out/fly out ratio ex. 2.0 |
go | player - statistics - hitting - overall - outs | Integer | Number of groundouts |
gidp | player - statistics - hitting - overall - outs | Integer | Number of grounded into double plays |
hbp | player - statistics - hitting - overall - onbase | Integer | Number of hit by pitches |
h | player - statistics - hitting - overall - onbase | Integer | Number of hits |
hit_risp | player - statistics - hitting - overall | Integer | Number of hits with runners in scoring position |
hr | player - statistics - hitting - overall - onbase | Integer | Number of homeruns |
iball | player - statistics - hitting - overall - outcome | Integer | Number of intentional balls taken |
ibb | player - statistics - hitting - overall - onbase | Integer | Number of intentional walks |
iso | player - statistics - hitting - overall | Decimal | Isolated power |
linedrive | player - statistics - hitting - overall | Integer | Number of at line drives |
lo | player - statistics - hitting - overall - outs | Integer | Number of lineouts |
lidp | player - statistics - hitting - overall - outs | Integer | Number of lineouts into double plays |
ops | player - statistics - hitting - overall | Decimal | OPS (On Base Percentage + Slugging Percentage) ex. 0.833 |
obp | player - statistics - hitting - overall | Decimal | On Base Percentage |
pickoff | player - statistics - hitting - overall - steal | Integer | Number of times picked off |
pitch_count | player - statistics - hitting - overall | Integer | Number of pitches seen |
ap | player - statistics - hitting - overall | Integer | Number of plate appearances |
popup | player - statistics - hitting - overall | Integer | Number of popups |
po | player - statistics - hitting - overall - outs | Integer | Number of putouts |
roe | player - statistics - hitting - overall - onbase | Integer | Number of times reached on error |
lob | player - statistics - hitting - overall - onbase | Integer | Number of players left on base |
lob_risp_2out | player - statistics - hitting - overall - onbase | Integer | Number of players left on base with two outs and runners in scoring position |
rbi | player - statistics - hitting - overall - onbase | Integer | Number of RBI (Runs Batted In) |
sacfly | player - statistics - hitting - overall - outs | Integer | Number of sacrifice flies |
sachit | player - statistics - hitting - overall - outs | Integer | Number of sacrifice hits |
seca | player - statistics - hitting - overall | Decimal | Secondary average ex. 0.333 |
s | player - statistics - hitting - overall - onbase | Integer | Number of singles |
slg | player - statistics - hitting - overall | Decimal | Slugging Percentage ex. 0.333 |
klook | player - statistics - hitting - overall - outs | Integer | Number of strikeouts looking |
kswing | player - statistics - hitting - overall - outs | Integer | Number of strikeouts swinging |
klook | player - statistics - hitting - overall - outcome | Integer | Number of strikes looking |
kswing | player - statistics - hitting - overall - outcome | Integer | Number of strikes swinging |
team_lob | player - statistics - hitting - overall - onbase | Integer | Number of players left on base at the end of an inning |
btotal | player - statistics - hitting - overall - pitches | Integer | Number of balls seen |
tb | player - statistics - hitting - overall - onbase | Integer | Number of total bases |
total | player - statistics - hitting - overall - runs | Integer | Number of total runs scored |
ktotal | player - statistics - hitting - overall - outs | Integer | Number of total strikeouts |
ktotal | player - statistics - hitting - overall - outcome | Integer | Number of strikes seen (not including balls in play) |
ktotal | player - statistics - hitting - overall - pitches | Integer | Number of strikes seen (including balls in play) |
t | player - statistics - hitting - overall - onbase | Integer | Number of triples |
rbi_2out | player - statistics - hitting - overall | Integer | Number of 2-out RBI |
bb | player - statistics - hitting - overall - onbase | Integer | Number of walks |
bbpa | player - statistics - hitting - overall | Decimal | Walks per plate appearance ex. 0.25 |
bbk | player - statistics - hitting - overall | Decimal | Walks per strikeout ex. 0.2 |
Player Pitching Stats (Game):
Attribute | Parent Element | Type | Description |
---|---|---|---|
bk | player - statistics - pitching - overall / starters / bullpen | Integer | Number of balks |
ball | player - statistics - pitching - overall / starters / bullpen - outcome | Integer | Number of balls thrown |
bf | player - statistics - pitching - overall / starters / bullpen | Integer | Number of batters faced |
bf_ip | player - statistics - pitching - overall / starters / bullpen | Decimal | Batters faced per inning pitched ex. 3.5 |
bf_start | player - statistics - pitching - overall / starters / bullpen | Decimal | Batters faced per start ex. 16.0 |
bqr | player - statistics - pitching - overall / starters / bullpen - runs | Integer | Number of bequeathed runners |
bqra | player - statistics - pitching - overall / starters / bullpen - runs | Integer | Number of bequeathed runners allowed to score |
blown_save | player - statistics - pitching - overall / starters / bullpen - games | Integer | Number of blown saves |
complete | player - statistics - pitching - overall / starters / bullpen - games | Integer | Number of complete games |
dirtball | player - statistics - pitching - overall / starters / bullpen - outcome | Integer | Number of dirtballs thrown |
d | player - statistics - pitching - overall / starters / bullpen - onbase | Integer | Number of doubles allowed |
era | player - statistics - pitching - overall / starters / bullpen | Decimal | ERA (Earned Run Average) ex. 4.5 |
earned | player - statistics - pitching - overall / starters / bullpen - runs | Integer | Number of earned runs allowed |
fc | player - statistics - pitching - overall / starters / bullpen - onbase | Integer | Number of fielder's choices allowed |
fip | player - statistics - pitching - overall / starters / bullpen | Decimal | FIP (Fielding Independent Pitching) ex. 4.5 |
fo | player - statistics - pitching - overall / starters / bullpen - outs | Integer | Number of fly outs |
fidp | player - statistics - pitching - overall / starters / bullpen - outs | Integer | Number of fly outs into double plays |
foul | player - statistics - hitting - overall / starters / bullpen - outcome | Integer | Number of foul balls |
finish | player - statistics - hitting - overall / starters / bullpen - games | Integer | Number of games finished |
play | player - statistics - hitting - overall / starters / bullpen - games | Integer | Number of games played |
start | player - statistics - hitting - overall / starters / bullpen - games | Integer | Number of games started |
gofo | player - statistics - hitting - overall / starters / bullpen | Decimal | Ground out/fly out ratio ex. 2.0 |
go | player - statistics - hitting - overall / starters / bullpen - outs | Integer | Number of groundouts |
gidp | player - statistics - hitting - overall / starters / bullpen - outs | Integer | Number of grounded into double plays |
hbp | player - statistics - hitting - overall / starters / bullpen - onbase | Integer | Number of hit batters |
h | player - statistics - hitting - overall / starters / bullpen - onbase | Integer | Number of hits allowed |
h9 | player - statistics - hitting - overall / starters / bullpen - onbase | Decimal | Hits allowed per nine innings ex. 1.5 |
hold | player - statistics - hitting - overall / starters / bullpen - games | Integer | Number of holds |
hr | player - statistics - hitting - overall / starters / bullpen - onbase | Integer | Number of homeruns allowed |
hr9 | player - statistics - hitting - overall / starters / bullpen - onbase | Decimal | Homeruns allowed per nine innings ex. 4.5 |
ir | player - statistics - pitching - overall / starters / bullpen - runs | Integer | Number of inherited runners |
ira | player - statistics - pitching - overall / starters / bullpen - runs | Integer | Number of inherited runners allowed to score |
ip_1 | player - statistics - hitting - overall / starters / bullpen | Integer | Total number of outs recorded |
ip_2 | player - statistics - hitting - overall / starters / bullpen | Decimal | Total number of innings pitched ex. 7.2 (7 2/3 innings) |
iball | player - statistics - pitching - overall / starters / bullpen - outcome | Integer | Number of intentional balls thrown |
ibb | player - statistics - pitching - overall / starters / bullpen - outcome | Integer | Number of intentional walks |
lo | player - statistics - hitting - overall / starters / bullpen - outs | Integer | Number of lineouts |
lidp | player - statistics - hitting - overall / starters / bullpen - outs | Integer | Number of lineouts into double plays |
loss | player - statistics - hitting - overall / starters / bullpen - games | Integer | Number of losses |
oab | player - statistics - pitching - overall / starters / bullpen | Integer | Number of opponent at bats |
oba | player - statistics - pitching - overall / starters / bullpen | Decimal | Opponents batting average ex. 0.167 |
babip | player - statistics - pitching - overall / starters / bullpen | Decimal | Opponents BABIP (Batting average on balls in play) ex. 0.333 |
flyball | player - statistics - pitching - overall / starters / bullpen - in-play | Integer | Number of fly balls allowed |
gbfb | player - statistics - pitching - overall / starters / bullpen | Decimal | Opponents ground ball/fly ball ratio ex. 2.5 |
groundball | player - statistics - pitching - overall / starters / bullpen - in-play | Integer | Number of ground balls allowed |
linedrive | player - statistics - pitching - overall / starters / bullpen - in-play | Integer | Number of line drives allowed |
obp | player - statistics - pitching - overall / starters / bullpen | Decimal | Opponents On Base Percentage |
popups | player - statistics - pitching - overall / starters / bullpen - in-play | Integer | Number of popups allowed |
lob | player - statistics - pitching - overall / starters / bullpen | Integer | Number of runners left on base |
slg | player - statistics - pitching - overall / starters / bullpen | Decimal | Opponents Slugging Percentage ex. 0.357 |
pickoff | player - statistics - pitching - overall / starters / bullpen - steal | Integer | Number of successful pickoffs |
pitch_count | player - statistics - pitching - overall / starters / bullpen | Integer | Number of pitches thrown |
per_bf | player - statistics - pitching - overall / starters / bullpen - pitches | Decimal | Number of pitches per batter faced ex. - 3.813 |
per_ip | player - statistics - pitching - overall / starters / bullpen - pitches | Decimal | Number of pitches per inning pitched ex. - 15.25 |
per_start | player - statistics - pitching - overall / starters / bullpen - pitches | Decimal | Number of pitches per start ex. - 61.0 |
po | player - statistics - hitting - overall / starters / bullpen - outs | Integer | Number of popouts |
qstart | player - statistics - hitting - overall / starters / bullpen - games | Integer | Number of quality starts (6 innings pitched & 3 or less earned runs allowed) |
roe | player - statistics - hitting - overall / starters / bullpen - onbase | Integer | Number of times allowed to reached on error |
caught | player - statistics - pitching - overall / starters / bullpen - steal | Integer | Number of times caught stealing |
sacfly | player - statistics - hitting - overall / starters / bullpen - outs | Integer | Number of sacrifice flies |
sachit | player - statistics - hitting - overall / starters / bullpen - outs | Integer | Number of sacrifice hits |
svo | player - statistics - hitting - overall / starters / bullpen - games | Integer | Number of save opportunities |
save | player - statistics - hitting - overall / starters / bullpen - games | Integer | Number of saves |
shutout | player - statistics - hitting - overall / starters / bullpen - games | Integer | Number of shutouts |
s | player - statistics - hitting - overall / starters / bullpen - onbase | Integer | Number of singles allowed |
stolen | player - statistics - pitching - overall / starters / bullpen - steal | Integer | Number of stolen bases allowed |
klook | player - statistics - hitting - overall / starters / bullpen - outs | Integer | Number of strikeouts looking |
k9 | player - statistics - pitching - overall / starters / bullpen | Decimal | Strikeouts per nine innings ex. 6.75 |
kbb | player - statistics - pitching - overall / starters / bullpen | Decimal | Strikeouts per walk ratio ex. 1.5 |
kswing | player - statistics - hitting - overall / starters / bullpen - outs | Integer | Number of strikeouts swinging |
klook | player - statistics - pitching - overall / starters / bullpen - outcome | Integer | Number of strikes looking |
kswing | player - statistics - pitching - overall / starters / bullpen - outcome | Integer | Number of strikes swinging |
btotal | player - statistics - pitching - overall / starters / bullpen - pitches | Integer | Total number of balls thrown |
tb | player - statistics - hitting - overall / starters / bullpen - onbase | Integer | Number of total bases allowed |
count | player - statistics - pitching - overall / starters / bullpen - pitches | Integer | Total number of pitches thrown |
total | player - statistics - pitching - overall / starters / bullpen - runs | Integer | Total number of runs allowed |
ktotal | player - statistics - hitting - overall / starters / bullpen - outs | Integer | Total number of strikeouts |
ktotal | player - statistics - pitching - overall / starters / bullpen - outcome | Integer | Total number of strikes thrown |
ktotal | player - statistics - pitching - overall / starters / bullpen - pitches | Integer | Total number of strikes thrown |
t | player - statistics - hitting - overall / starters / bullpen - onbase | Integer | Number of triples allowed |
unearned | player - statistics - pitching - overall / starters / bullpen - runs | Integer | Number of unearned runs allowed |
bb | player - statistics - hitting - overall / starters / bullpen - onbase | Integer | Number of walks allowed |
whip | player - statistics - pitching - overall / starters / bullpen | Decimal | WHIP (Walks + Hits Per Inning Pitched) ex. 4.75 |
wp | player - statistics - pitching - overall / starters / bullpen | Integer | Number of wild pitches thrown |
win | player - statistics - hitting - overall / starters / bullpen - games | Integer | Number of wins |
Team Baserunning Stats (Game):
Attribute | Parent Element | Type | Description |
---|---|---|---|
caught | game - statistics - hitting - steal | Integer | Number of times caught stealing |
pct | game - statistics - hitting - steal | Decimal | Caught stealing percentage ex. 0.5 |
pickoff | game - statistics - hitting - steal | Decimal | Number of times picked off |
stolen | game - statistics - hitting - steal | Integer | Number of stolen bases |
Team Fielding Stats (Game):
Attribute | Parent Element | Type | Description |
---|---|---|---|
a | game - statistics - fielding - overall | Integer | Number of assists |
outfield | game - statistics - fielding - assists | Integer | Number of outfield assists |
total | game - statistics - fielding - assists | Integer | Number of total assists |
dp | game - statistics - fielding - overall | Integer | Number of double plays turned |
error | game - statistics - fielding - overall | Integer | Number of errors committed |
fielding | game - statistics - fielding - errors | Integer | Number of fielding errors committed |
interference | game - statistics - fielding - errors | Integer | Number of interference errors committed |
throwing | game - statistics - fielding - errors | Integer | Number of throwing errors committed |
total | game - statistics - fielding - errors | Integer | Total number of errors committed |
fpct | game - statistics - fielding - overall | Decimal | Fielding percentage ex. 0.969 |
pb | game - statistics - fielding - overall | Integer | Number of passed balls |
po | game - statistics - fielding - overall | Integer | Number of putouts |
caught | game - statistics - fielding - steal | Integer | Number of runners caught stealing |
pct | game - statistics - fielding - steal | Decimal | Caught stealing percentage ex. 0.5 |
pickoff | game - statistics - fielding - steal | Integer | Number of successful pickoffs |
stolen | game - statistics - fielding - steal | Integer | Number of stolen bases allowed |
tc | game - statistics - fielding - overall | Integer | Total number of fielding chances |
tp | game - statistics - fielding - overall | Integer | Number of triple plays turned |
c_wp | game - statistics - fielding - overall | Integer | Number of wild pitches while catching |
Team Hitting Stats (Game):
Attribute | Parent Element | Type | Description |
---|---|---|---|
ab | game - statistics - hitting - overall | Integer | Number of at bats |
abhr | game - statistics - hitting - overall | Decimal | At bats per homerun |
abk | game - statistics - hitting - overall | Decimal | At bats per strikeout |
ab_risp | game - statistics - hitting - overall | Integer | Number of at bats with runners in scoring position |
ball | game - statistics - hitting - overall - outcome | Integer | Number of at balls seen |
bip | game - statistics - hitting - overall | Integer | Number of at balls hit in play |
avg | game - statistics - hitting - overall | Decimal | Batting average ex. .333 |
babip | game - statistics - hitting - overall | Integer | BABIP (Batting average on balls in play) ex. 0.333 |
cycle | game - statistics - hitting - overall - onbase | Integer | Number of cycles (player hits a single, double, triple, and homerun) |
dirtball | game - statistics - hitting - overall - outcome | Integer | Number of dirtballs seen |
d | game - statistics - hitting - overall - onbase | Integer | Number of doubles |
xbh | game - statistics - hitting - overall | Integer | Number of extra base hits |
fc | game - statistics - hitting - overall - onbase | Integer | Number of hits into fielder's choice |
flyball | game - statistics - hitting - overall | Integer | Number of at flyballs |
fo | game - statistics - hitting - overall - outs | Integer | Number of fly outs |
fidp | game - statistics - hitting - overall - outs | Integer | Number of fly outs into double plays |
foul | game - statistics - hitting - overall - outcome | Integer | Number of foul balls |
groundball | game - statistics - hitting - overall | Integer | Number of at groundballs |
gofo | game - statistics - hitting - overall | Decimal | Ground out/fly out ratio ex. 2.0 |
go | game - statistics - hitting - overall - outs | Integer | Number of groundouts |
gidp | game - statistics - hitting - overall - outs | Integer | Number of grounded into double plays |
hbp | game - statistics - hitting - overall - onbase | Integer | Number of hit by pitches |
h | game - statistics - hitting - overall - onbase | Integer | Number of hits |
hit_risp | game - statistics - hitting - overall | Integer | Number of hits with runners in scoring position |
hr | game - statistics - hitting - overall - onbase | Integer | Number of homeruns |
iball | game - statistics - hitting - overall - outcome | Integer | Number of intentional balls taken |
ibb | game - statistics - hitting - overall - onbase | Integer | Number of intentional walks |
iso | game - statistics - hitting - overall | Decimal | Isolated power |
linedrive | game - statistics - hitting - overall | Integer | Number of at line drives |
lo | game - statistics - hitting - overall - outs | Integer | Number of lineouts |
lidp | game - statistics - hitting - overall - outs | Integer | Number of lineouts into double plays |
ops | game - statistics - hitting - overall | Decimal | OPS (On Base Percentage + Slugging Percentage) ex. 0.833 |
obp | game - statistics - hitting - overall | Decimal | On Base Percentage |
pickoff | game - statistics - hitting - overall - steal | Integer | Number of times picked off |
pitch_count | game - statistics - hitting - overall | Integer | Number of pitches seen |
ap | game - statistics - hitting - overall | Integer | Number of plate appearances |
popup | game - statistics - hitting - overall | Integer | Number of popups |
po | game - statistics - hitting - overall - outs | Integer | Number of putouts |
roe | game - statistics - hitting - overall - onbase | Integer | Number of times reached on error |
lob | game - statistics - hitting - overall - onbase | Integer | Number of players left on base |
lob_risp_2out | game - statistics - hitting - overall - onbase | Integer | Number of players left on base with two outs and runners in scoring position |
rbi | game - statistics - hitting - overall - onbase | Integer | Number of RBI (Runs Batted In) |
sacfly | game - statistics - hitting - overall - outs | Integer | Number of sacrifice flies |
sachit | game - statistics - hitting - overall - outs | Integer | Number of sacrifice hits |
seca | game - statistics - hitting - overall | Decimal | Secondary average ex. 0.333 |
s | game - statistics - hitting - overall - onbase | Integer | Number of singles |
slg | game - statistics - hitting - overall | Decimal | Slugging Percentage ex. 0.333 |
klook | game - statistics - hitting - overall - outs | Integer | Number of strikeouts looking |
kswing | game - statistics - hitting - overall - outs | Integer | Number of strikeouts swinging |
klook | game - statistics - hitting - overall - outcome | Integer | Number of strikes looking |
kswing | game - statistics - hitting - overall - outcome | Integer | Number of strikes swinging |
team_lob | game - statistics - hitting - overall - onbase | Integer | Number of players left on base at the end of an inning |
btotal | game - statistics - hitting - overall - pitches | Integer | Number of balls seen |
tb | game - statistics - hitting - overall - onbase | Integer | Number of total bases |
total | game - statistics - hitting - overall - runs | Integer | Number of total runs scored |
ktotal | game - statistics - hitting - overall - outs | Integer | Number of total strikeouts |
ktotal | game - statistics - hitting - overall - outcome | Integer | Number of strikes seen (not including balls in play) |
ktotal | game - statistics - hitting - overall - pitches | Integer | Number of strikes seen (including balls in play) |
t | game - statistics - hitting - overall - onbase | Integer | Number of triples |
rbi_2out | game - statistics - hitting - overall | Integer | Number of 2-out RBI |
bb | game - statistics - hitting - overall - onbase | Integer | Number of walks |
bbpa | game - statistics - hitting - overall | Decimal | Walks per plate appearance ex. 0.25 |
bbk | game - statistics - hitting - overall | Decimal | Walks per strikeout ex. 0.2 |
Team Pitching Stats (Game):
Attribute | Parent Element | Type | Description |
---|---|---|---|
bk | game - statistics - pitching - overall / starters / bullpen | Integer | Number of balks |
ball | game - statistics - pitching - overall / starters / bullpen - outcome | Integer | Number of balls thrown |
bf | game - statistics - pitching - overall / starters / bullpen | Integer | Number of batters faced |
bf_ip | game - statistics - pitching - overall / starters / bullpen | Decimal | Batters faced per inning pitched ex. 3.5 |
bf_start | game - statistics - pitching - overall / starters / bullpen | Decimal | Batters faced per start ex. 16.0 |
bqr | game - statistics - pitching - overall / starters / bullpen - runs | Integer | Number of bequeathed runners |
bqra | game - statistics - pitching - overall / starters / bullpen - runs | Integer | Number of bequeathed runners allowed to score |
blown_save | game - statistics - pitching - overall / starters / bullpen - games | Integer | Number of blown saves |
complete | game - statistics - pitching - overall / starters / bullpen - games | Integer | Number of complete games |
dirtball | game - statistics - pitching - overall / starters / bullpen - outcome | Integer | Number of dirtballs thrown |
d | game - statistics - pitching - overall / starters / bullpen - onbase | Integer | Number of doubles allowed |
era | game - statistics - pitching - overall / starters / bullpen | Decimal | ERA (Earned Run Average) ex. 4.5 |
earned | game - statistics - pitching - overall / starters / bullpen - runs | Integer | Number of earned runs allowed |
fc | game - statistics - pitching - overall / starters / bullpen - onbase | Integer | Number of fielder's choices allowed |
fip | game - statistics - pitching - overall / starters / bullpen | Decimal | FIP (Fielding Independent Pitching) ex. 4.5 |
fo | game - statistics - pitching - overall / starters / bullpen - outs | Integer | Number of fly outs |
fidp | game - statistics - pitching - overall / starters / bullpen - outs | Integer | Number of fly outs into double plays |
foul | game - statistics - hitting - overall / starters / bullpen - outcome | Integer | Number of foul balls |
gofo | game - statistics - hitting - overall / starters / bullpen | Decimal | Ground out/fly out ratio ex. 2.0 |
go | game - statistics - hitting - overall / starters / bullpen - outs | Integer | Number of groundouts |
gidp | game - statistics - hitting - overall / starters / bullpen - outs | Integer | Number of grounded into double plays |
hbp | game - statistics - hitting - overall / starters / bullpen - onbase | Integer | Number of hit batters |
h | game - statistics - hitting - overall / starters / bullpen - onbase | Integer | Number of hits allowed |
h9 | game - statistics - hitting - overall / starters / bullpen - onbase | Decimal | Hits allowed per nine innings ex. 1.5 |
hold | game - statistics - hitting - overall / starters / bullpen - games | Integer | Number of holds |
hr | game - statistics - hitting - overall / starters / bullpen - onbase | Integer | Number of homeruns allowed |
hr9 | game - statistics - hitting - overall / starters / bullpen - onbase | Decimal | Homeruns allowed per nine innings ex. 4.5 |
ir | game - statistics - pitching - overall / starters / bullpen - runs | Integer | Number of inherited runners |
ira | game - statistics - pitching - overall / starters / bullpen - runs | Integer | Number of inherited runners allowed to score |
ip_1 | game - statistics - hitting - overall / starters / bullpen | Integer | Total number of outs recorded |
ip_2 | game - statistics - hitting - overall / starters / bullpen | Decimal | Total number of innings pitched ex. 10.0 (10 innings) |
iball | game - statistics - pitching - overall / starters / bullpen - outcome | Integer | Number of intentional balls thrown |
ibb | game - statistics - pitching - overall / starters / bullpen - outcome | Integer | Number of intentional walks |
lo | game - statistics - hitting - overall / starters / bullpen - outs | Integer | Number of lineouts |
lidp | game - statistics - hitting - overall / starters / bullpen - outs | Integer | Number of lineouts into double plays |
loss | game - statistics - hitting - overall / starters / bullpen - games | Integer | Number of losses |
oab | game - statistics - pitching - overall / starters / bullpen | Integer | Number of opponent at bats |
oba | game - statistics - pitching - overall / starters / bullpen | Decimal | Opponents batting average ex. 0.167 |
babip | game - statistics - pitching - overall / starters / bullpen | Decimal | Opponents BABIP (Batting average on balls in play) ex. 0.333 |
flyball | game - statistics - pitching - overall / starters / bullpen - in-play | Integer | Number of fly balls allowed |
gbfb | game - statistics - pitching - overall / starters / bullpen | Decimal | Opponents ground ball/fly ball ratio ex. 2.5 |
groundball | game - statistics - pitching - overall / starters / bullpen - in-play | Integer | Number of ground balls allowed |
linedrive | game - statistics - pitching - overall / starters / bullpen - in-play | Integer | Number of line drives allowed |
obp | game - statistics - pitching - overall / starters / bullpen | Decimal | Opponents On Base Percentage |
popups | game - statistics - pitching - overall / starters / bullpen - in-play | Integer | Number of popups allowed |
lob | game - statistics - pitching - overall / starters / bullpen | Integer | Number of runners left on base |
slg | game - statistics - pitching - overall / starters / bullpen | Decimal | Opponents Slugging Percentage ex. 0.357 |
pickoff | game - statistics - pitching - overall / starters / bullpen - steal | Integer | Number of successful pickoffs |
pitch_count | game - statistics - pitching - overall / starters / bullpen | Integer | Number of pitches thrown |
per_bf | game - statistics - pitching - overall / starters / bullpen - pitches | Decimal | Number of pitches per batter faced ex. - 3.813 |
per_ip | game - statistics - pitching - overall / starters / bullpen - pitches | Decimal | Number of pitches per inning pitched ex. - 15.25 |
per_start | game - statistics - pitching - overall / starters / bullpen - pitches | Decimal | Number of pitches per start ex. - 61.0 |
po | game - statistics - hitting - overall / starters / bullpen - outs | Integer | Number of popouts |
qstart | game - statistics - hitting - overall / starters / bullpen - games | Integer | Number of quality starts (6 innings pitched & 3 or less earned runs allowed) |
roe | game - statistics - hitting - overall / starters / bullpen - onbase | Integer | Number of times allowed to reached on error |
caught | game - statistics - pitching - overall / starters / bullpen - steal | Integer | Number of times caught stealing |
sacfly | game - statistics - hitting - overall / starters / bullpen - outs | Integer | Number of sacrifice flies |
sachit | game - statistics - hitting - overall / starters / bullpen - outs | Integer | Number of sacrifice hits |
svo | game - statistics - hitting - overall / starters / bullpen - games | Integer | Number of save opportunities |
save | game - statistics - hitting - overall / starters / bullpen - games | Integer | Number of saves |
shutout | game - statistics - hitting - overall / starters / bullpen - games | Integer | Number of shutouts |
s | game - statistics - hitting - overall / starters / bullpen - onbase | Integer | Number of singles allowed |
stolen | game - statistics - pitching - overall / starters / bullpen - steal | Integer | Number of stolen bases allowed |
klook | game - statistics - hitting - overall / starters / bullpen - outs | Integer | Number of strikeouts looking |
k9 | game - statistics - pitching - overall / starters / bullpen | Decimal | Strikeouts per nine innings ex. 6.75 |
kbb | game - statistics - pitching - overall / starters / bullpen | Decimal | Strikeouts per walk ratio ex. 1.5 |
kswing | game - statistics - hitting - overall / starters / bullpen - outs | Integer | Number of strikeouts swinging |
klook | game - statistics - pitching - overall / starters / bullpen - outcome | Integer | Number of strikes looking |
kswing | game - statistics - pitching - overall / starters / bullpen - outcome | Integer | Number of strikes swinging |
btotal | game - statistics - pitching - overall / starters / bullpen - pitches | Integer | Total number of balls thrown |
tb | game - statistics - hitting - overall / starters / bullpen - onbase | Integer | Number of total bases allowed |
count | game - statistics - pitching - overall / starters / bullpen - pitches | Integer | Total number of pitches thrown |
total | game - statistics - pitching - overall / starters / bullpen - runs | Integer | Total number of runs allowed |
ktotal | game - statistics - hitting - overall / starters / bullpen - outs | Integer | Total number of strikeouts |
ktotal | game - statistics - pitching - overall / starters / bullpen - outcome | Integer | Total number of strikes thrown |
ktotal | game - statistics - pitching - overall / starters / bullpen - pitches | Integer | Total number of strikes thrown |
t | game - statistics - hitting - overall / starters / bullpen - onbase | Integer | Number of triples allowed |
unearned | game - statistics - pitching - overall / starters / bullpen - runs | Integer | Number of unearned runs allowed |
bb | game - statistics - hitting - overall / starters / bullpen - onbase | Integer | Number of walks allowed |
whip | game - statistics - pitching - overall / starters / bullpen | Decimal | WHIP (Walks + Hits Per Inning Pitched) ex. 4.75 |
wp | game - statistics - pitching - overall / starters / bullpen | Integer | Number of wild pitches thrown |
win | game - statistics - hitting - overall / starters / bullpen - games | Integer | Number of wins |