Docs
Coverage MatrixDocumentationRelease LogLog InContact Us

Push Statistics

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}

Replace placeholders with the following query parameters:

ParameterDescription
access_levelDefines the access level of your API key as Production (production), Trial (trial), or Simulation (simulation).
your_api_keyYour API key.

Optional Query String Parameters

In addition to the URL parameters listed above, you can filter the Statistics information with one or more of the following optional query string parameters.

📘

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.

Replace placeholders with the following query parameters:

ParameterDescription
access_levelDefines the access level of your API key as Production (production), Trial (trial), or Simulation (simulation).
your_api_keyYour API key.

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:
AttributeParent ElementTypeDescription
leaguemetadataStringAlias of a league
ex. MLB
localemetadataStringLanguage code
ex. en (English)
matchmetadataGUIDUnique ID of a game
ex. sd:match:30ad883f-aeaf-4e6b-9fd9-a1cc0b6c4679
operationmetadataStringOperation of an update
create, update, delete
playermetadataGUIDUnique ID of a player
ex. sd:player:fa76cc26-d558-4651-8d23-5652519a7dc0
stats_categorymetadataStringCategory of a stat
ex. pitching
stats_typemetadataStringType of a stat
ex. team
statusmetadataStringThe status of a game
scheduled, inprogress, complete, closed, wdelay, fdelay, odelay, canceled, unnecessary, if-necessary, postponed, suspended, maintenance
teammetadataGUIDUnique ID of a team
ex. sd:team:575c19b7-4052-41c2-9f0a-1c5813d02f99
versionmetadataStringVersion of the API
ex. v6.5
Boxscore:
AttributeParent ElementTypeDescription
abbrawayStringAbbreviation of the away team
ex. MIN (Minnesota)
errorsawayIntegerNumber of errors for the away team
hitsawayIntegerNumber of hits for the away team
idawayGUIDUnique ID of the away team
ex. 29dd9a87-5bcc-4774-80c3-7f50d985068b
idaway - probable_pitcherGUIDUnique ID of the away team's probable pitcher
ex. 515af486-d938-4cb6-90e4-943323a5737c
marketawayStringMarket name of the away team
ex. Colorado
nameawayStringTeam name of the away team
ex. Rockies
runsawayIntegerNumber of runs for the away team in the game
abbrhomeStringAbbreviation of the home team
ex. CLE (Cleveland)
errorshomeIntegerNumber of errors for the home team
hitshomeIntegerNumber of hits for the home team
idhomeGUIDUnique ID of the home team
ex. 29dd9a87-5bcc-4774-80c3-7f50d985068b
idhome - probable_pitcherGUIDUnique ID of the home team's probable pitcher
ex. 515af486-d938-4cb6-90e4-943323a5737c
markethomeStringMarket name of the home team
ex. Cleveland
namehomeStringTeam name of the home team
ex. Guardians
runshomeIntegerNumber of runs for the home team in the game
abbrteamStringAbbreviation of a team
ex. TB (Tampa Bay)
idteamGUIDUnique ID of a team
ex. bdc11650-6f74-49c4-875e-778aeb7632d9
marketteamStringMarket name of a team
ex. Tampa Bay
nameteamStringTeam name
ex. Rays
Player:
AttributeParent ElementTypeDescription
depthplayerIntegerPlayer's depth chart position (1 = starter)
first_nameplayerStringFirst name of a player
ex. Markus
full_nameplayerStringFull name of a player
ex. Mookie Betts
suffixplayerStringName suffix of a player
ex. Jr.
idplayerGUIDUnique ID of a player
ex. ea1a2111-44cc-4996-babb-9439465e6760
jersey_numberplayerIntegerNumber of a player's jersey
last_nameplayerStringLast name of a runner
ex. Betts
positionplayerStringPosition of a player
C(Catcher), IF(Infield), OF(Outfield), P(Pitcher), DH(Designated Hitter)
preferred_nameplayerStringPreferred name of a player
ex. Mookie
primary_positionplayerStringPrimary position of a player
C(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)
statusplayerStringStatus of a player
A(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:
AttributeParent ElementTypeDescription
away_teamgameGUIDUnique ID of the away team
ex. 29dd9a87-5bcc-4774-80c3-7f50d985068b
coveragegameStringCoverage level of a game
full, boxscore
double_headergameBooleanSignifies whether a game is part of a double header
day_nightgameStringSignifies a day or night game
D, N
entry_modegameStringSignifies the type of data entry
STOMP, LDE
home_teamgameGUIDUnique ID of the home team
ex. ef64da7f-cfaf-4300-87b0-9313386b977c
idgameGUIDUnique ID of the game
ex. 1b554f5e-d8b7-4268-95da-2f4191015c84
game_numbergameIntegerNumber of the game
referencegameStringUnique MLBAM ID of a game
scheduledgamedateTimeScheduled date and time of a game
ex. 2022-09-25T20:10:00+00:00
split_squadgameBooleanSignifies a Spring Training split squad game
statusgameStringThe status of a game
scheduled, inprogress, complete, closed, wdelay, fdelay, odelay, canceled, unnecessary, if-necessary, postponed, suspended, maintenance
Lineup:
AttributeParent ElementTypeDescription
orderlineupsIntegerBatting order number in the lineup for a player (0-9). 0 is used for the pitcher
positionlineupIntegerPosition number for a player (1-12).

See our FAQ for a list of position definitions
inninglineupsIntegerInning of a player entering the game
sequencelineupIntegerSequence number of a lineup event
team_ideventGUIDUnique ID of a player's team
ex. ef64da7f-cfaf-4300-87b0-9313386b977c
Player Baserunning Stats (Game):
AttributeParent ElementTypeDescription
caughtstealIntegerNumber of times caught stealing
pctstealDecimalCaught stealing percentage
ex. 0.5
pickoffstealDecimalNumber of times picked off
stolenstealIntegerNumber of stolen bases
Player Fielding Stats (Game):
AttributeParent ElementTypeDescription
afielding - overallIntegerNumber of assists
outfieldfielding - overall - assistsIntegerNumber of outfield assists
totalfielding - overall - assistsIntegerNumber of total assists
completefielding - overall - gamesIntegerNumber of complete games played
dpfielding - overallIntegerNumber of double plays turned
errorfielding - overallIntegerNumber of errors committed
fieldingfielding - overall - errorsIntegerNumber of fielding errors committed
interferencefielding - overall - errorsIntegerNumber of interference errors committed
throwingfielding - overall - errorsIntegerNumber of throwing errors committed
totalfielding - overall - errorsIntegerTotal number of errors committed
fpctfielding - overallDecimalFielding percentage
ex. 0.969
finishfielding - overall - gamesIntegerNumber of games finished
playfielding - overall - gamesIntegerNumber of games played
startfielding - overall - gamesIntegerNumber of games started
inn_1fielding - overallIntegerTotal number of outs while in the field
inn_2fielding - overallDecimalTotal number of innings in the field
ex. 7.2 (7 2/3 innings)
pbfielding - overallIntegerNumber of passed balls
pofielding - overallIntegerNumber of putouts
rffielding - overallDecimalRange factor at a position. Determined by dividing the sum of a fielder's putouts and assists by their total number of defensive games played
outfieldfielding - overall - stealIntegerNumber of outfield assists
caughtfielding - overall - stealIntegerNumber of runners caught stealing
pctfielding - overall - stealDecimalCaught stealing percentage
ex. 0.5
pickofffielding - overall - stealIntegerNumber of successful pickoffs
stolenfielding - overall - stealIntegerNumber of stolen bases allowed
tcfielding - overallIntegerTotal number of fielding chances
tpfielding - overallIntegerNumber of triple plays turned
c_wpfielding - overallIntegerNumber of wild pitches while catching
Player Hitting Stats (Game):
AttributeParent ElementTypeDescription
abplayer - statistics - hitting - overallIntegerNumber of at bats
abhrplayer - statistics - hitting - overallDecimalAt bats per homerun
abkplayer - statistics - hitting - overallDecimalAt bats per strikeout
ab_rispplayer - statistics - hitting - overallIntegerNumber of at bats with runners in scoring position
ballplayer - statistics - hitting - overall - outcomeIntegerNumber of at balls seen
bipplayer - statistics - hitting - overallIntegerNumber of at balls hit in play
avgplayer - statistics - hitting - overallDecimalBatting average
ex. .333
babipplayer - statistics - hitting - overallIntegerBABIP (Batting average on balls in play)
ex. 0.333
completeplayer - statistics - hitting - overall - gamesIntegerNumber of complete games played
cycleplayer - statistics - hitting - overall - onbaseIntegerNumber of cycles (player hits a single, double, triple, and homerun)
dirtballplayer - statistics - hitting - overall - outcomeIntegerNumber of dirtballs seen
dplayer - statistics - hitting - overall - onbaseIntegerNumber of doubles
xbhplayer - statistics - hitting - overallIntegerNumber of extra base hits
fcplayer - statistics - hitting - overall - onbaseIntegerNumber of hits into fielder's choice
flyballplayer - statistics - hitting - overallIntegerNumber of at flyballs
foplayer - statistics - hitting - overall - outsIntegerNumber of fly outs
fidpplayer - statistics - hitting - overall - outsIntegerNumber of fly outs into double plays
foulplayer - statistics - hitting - overall - outcomeIntegerNumber of foul balls
finishplayer - statistics - hitting - overall - gamesIntegerNumber of games finished
playplayer - statistics - hitting - overall - gamesIntegerNumber of games played
startplayer - statistics - hitting - overall - gamesIntegerNumber of games started
groundballplayer - statistics - hitting - overallIntegerNumber of at groundballs
gofoplayer - statistics - hitting - overallDecimalGround out/fly out ratio
ex. 2.0
goplayer - statistics - hitting - overall - outsIntegerNumber of groundouts
gidpplayer - statistics - hitting - overall - outsIntegerNumber of grounded into double plays
hbpplayer - statistics - hitting - overall - onbaseIntegerNumber of hit by pitches
hplayer - statistics - hitting - overall - onbaseIntegerNumber of hits
hit_rispplayer - statistics - hitting - overallIntegerNumber of hits with runners in scoring position
hrplayer - statistics - hitting - overall - onbaseIntegerNumber of homeruns
iballplayer - statistics - hitting - overall - outcomeIntegerNumber of intentional balls taken
ibbplayer - statistics - hitting - overall - onbaseIntegerNumber of intentional walks
isoplayer - statistics - hitting - overallDecimalIsolated power
linedriveplayer - statistics - hitting - overallIntegerNumber of at line drives
loplayer - statistics - hitting - overall - outsIntegerNumber of lineouts
lidpplayer - statistics - hitting - overall - outsIntegerNumber of lineouts into double plays
opsplayer - statistics - hitting - overallDecimalOPS (On Base Percentage + Slugging Percentage)
ex. 0.833
obpplayer - statistics - hitting - overallDecimalOn Base Percentage
pickoffplayer - statistics - hitting - overall - stealIntegerNumber of times picked off
pitch_countplayer - statistics - hitting - overallIntegerNumber of pitches seen
applayer - statistics - hitting - overallIntegerNumber of plate appearances
popupplayer - statistics - hitting - overallIntegerNumber of popups
poplayer - statistics - hitting - overall - outsIntegerNumber of putouts
roeplayer - statistics - hitting - overall - onbaseIntegerNumber of times reached on error
lobplayer - statistics - hitting - overall - onbaseIntegerNumber of players left on base
lob_risp_2outplayer - statistics - hitting - overall - onbaseIntegerNumber of players left on base with two outs and runners in scoring position
rbiplayer - statistics - hitting - overall - onbaseIntegerNumber of RBI (Runs Batted In)
sacflyplayer - statistics - hitting - overall - outsIntegerNumber of sacrifice flies
sachitplayer - statistics - hitting - overall - outsIntegerNumber of sacrifice hits
secaplayer - statistics - hitting - overallDecimalSecondary average
ex. 0.333
splayer - statistics - hitting - overall - onbaseIntegerNumber of singles
slgplayer - statistics - hitting - overallDecimalSlugging Percentage
ex. 0.333
klookplayer - statistics - hitting - overall - outsIntegerNumber of strikeouts looking
kswingplayer - statistics - hitting - overall - outsIntegerNumber of strikeouts swinging
klookplayer - statistics - hitting - overall - outcomeIntegerNumber of strikes looking
kswingplayer - statistics - hitting - overall - outcomeIntegerNumber of strikes swinging
team_lobplayer - statistics - hitting - overall - onbaseIntegerNumber of players left on base at the end of an inning
btotalplayer - statistics - hitting - overall - pitchesIntegerNumber of balls seen
tbplayer - statistics - hitting - overall - onbaseIntegerNumber of total bases
totalplayer - statistics - hitting - overall - runsIntegerNumber of total runs scored
ktotalplayer - statistics - hitting - overall - outsIntegerNumber of total strikeouts
ktotalplayer - statistics - hitting - overall - outcomeIntegerNumber of strikes seen (not including balls in play)
ktotalplayer - statistics - hitting - overall - pitchesIntegerNumber of strikes seen (including balls in play)
tplayer - statistics - hitting - overall - onbaseIntegerNumber of triples
rbi_2outplayer - statistics - hitting - overallIntegerNumber of 2-out RBI
bbplayer - statistics - hitting - overall - onbaseIntegerNumber of walks
bbpaplayer - statistics - hitting - overallDecimalWalks per plate appearance
ex. 0.25
bbkplayer - statistics - hitting - overallDecimalWalks per strikeout
ex. 0.2
Player Pitching Stats (Game):
AttributeParent ElementTypeDescription
bkplayer - statistics - pitching - overall / starters / bullpenIntegerNumber of balks
ballplayer - statistics - pitching - overall / starters / bullpen - outcomeIntegerNumber of balls thrown
bfplayer - statistics - pitching - overall / starters / bullpenIntegerNumber of batters faced
bf_ipplayer - statistics - pitching - overall / starters / bullpenDecimalBatters faced per inning pitched
ex. 3.5
bf_startplayer - statistics - pitching - overall / starters / bullpenDecimalBatters faced per start
ex. 16.0
bqrplayer - statistics - pitching - overall / starters / bullpen - runsIntegerNumber of bequeathed runners
bqraplayer - statistics - pitching - overall / starters / bullpen - runsIntegerNumber of bequeathed runners allowed to score
blown_saveplayer - statistics - pitching - overall / starters / bullpen - gamesIntegerNumber of blown saves
completeplayer - statistics - pitching - overall / starters / bullpen - gamesIntegerNumber of complete games
dirtballplayer - statistics - pitching - overall / starters / bullpen - outcomeIntegerNumber of dirtballs thrown
dplayer - statistics - pitching - overall / starters / bullpen - onbaseIntegerNumber of doubles allowed
eraplayer - statistics - pitching - overall / starters / bullpenDecimalERA (Earned Run Average)
ex. 4.5
earnedplayer - statistics - pitching - overall / starters / bullpen - runsIntegerNumber of earned runs allowed
fcplayer - statistics - pitching - overall / starters / bullpen - onbaseIntegerNumber of fielder's choices allowed
fipplayer - statistics - pitching - overall / starters / bullpenDecimalFIP (Fielding Independent Pitching)
ex. 4.5
foplayer - statistics - pitching - overall / starters / bullpen - outsIntegerNumber of fly outs
fidpplayer - statistics - pitching - overall / starters / bullpen - outsIntegerNumber of fly outs into double plays
foulplayer - statistics - hitting - overall / starters / bullpen - outcomeIntegerNumber of foul balls
finishplayer - statistics - hitting - overall / starters / bullpen - gamesIntegerNumber of games finished
playplayer - statistics - hitting - overall / starters / bullpen - gamesIntegerNumber of games played
startplayer - statistics - hitting - overall / starters / bullpen - gamesIntegerNumber of games started
gofoplayer - statistics - hitting - overall / starters / bullpenDecimalGround out/fly out ratio
ex. 2.0
goplayer - statistics - hitting - overall / starters / bullpen - outsIntegerNumber of groundouts
gidpplayer - statistics - hitting - overall / starters / bullpen - outsIntegerNumber of grounded into double plays
hbpplayer - statistics - hitting - overall / starters / bullpen - onbaseIntegerNumber of hit batters
hplayer - statistics - hitting - overall / starters / bullpen - onbaseIntegerNumber of hits allowed
h9player - statistics - hitting - overall / starters / bullpen - onbaseDecimalHits allowed per nine innings
ex. 1.5
holdplayer - statistics - hitting - overall / starters / bullpen - gamesIntegerNumber of holds
hrplayer - statistics - hitting - overall / starters / bullpen - onbaseIntegerNumber of homeruns allowed
hr9player - statistics - hitting - overall / starters / bullpen - onbaseDecimalHomeruns allowed per nine innings
ex. 4.5
irplayer - statistics - pitching - overall / starters / bullpen - runsIntegerNumber of inherited runners
iraplayer - statistics - pitching - overall / starters / bullpen - runsIntegerNumber of inherited runners allowed to score
ip_1player - statistics - hitting - overall / starters / bullpenIntegerTotal number of outs recorded
ip_2player - statistics - hitting - overall / starters / bullpenDecimalTotal number of innings pitched
ex. 7.2 (7 2/3 innings)
iballplayer - statistics - pitching - overall / starters / bullpen - outcomeIntegerNumber of intentional balls thrown
ibbplayer - statistics - pitching - overall / starters / bullpen - outcomeIntegerNumber of intentional walks
loplayer - statistics - hitting - overall / starters / bullpen - outsIntegerNumber of lineouts
lidpplayer - statistics - hitting - overall / starters / bullpen - outsIntegerNumber of lineouts into double plays
lossplayer - statistics - hitting - overall / starters / bullpen - gamesIntegerNumber of losses
oabplayer - statistics - pitching - overall / starters / bullpenIntegerNumber of opponent at bats
obaplayer - statistics - pitching - overall / starters / bullpenDecimalOpponents batting average
ex. 0.167
babipplayer - statistics - pitching - overall / starters / bullpenDecimalOpponents BABIP (Batting average on balls in play)
ex. 0.333
flyballplayer - statistics - pitching - overall / starters / bullpen - in-playIntegerNumber of fly balls allowed
gbfbplayer - statistics - pitching - overall / starters / bullpenDecimalOpponents ground ball/fly ball ratio
ex. 2.5
groundballplayer - statistics - pitching - overall / starters / bullpen - in-playIntegerNumber of ground balls allowed
linedriveplayer - statistics - pitching - overall / starters / bullpen - in-playIntegerNumber of line drives allowed
obpplayer - statistics - pitching - overall / starters / bullpenDecimalOpponents On Base Percentage
popupsplayer - statistics - pitching - overall / starters / bullpen - in-playIntegerNumber of popups allowed
lobplayer - statistics - pitching - overall / starters / bullpenIntegerNumber of runners left on base
slgplayer - statistics - pitching - overall / starters / bullpenDecimalOpponents Slugging Percentage
ex. 0.357
pickoffplayer - statistics - pitching - overall / starters / bullpen - stealIntegerNumber of successful pickoffs
pitch_countplayer - statistics - pitching - overall / starters / bullpenIntegerNumber of pitches thrown
per_bfplayer - statistics - pitching - overall / starters / bullpen - pitchesDecimalNumber of pitches per batter faced
ex. - 3.813
per_ipplayer - statistics - pitching - overall / starters / bullpen - pitchesDecimalNumber of pitches per inning pitched
ex. - 15.25
per_startplayer - statistics - pitching - overall / starters / bullpen - pitchesDecimalNumber of pitches per start
ex. - 61.0
poplayer - statistics - hitting - overall / starters / bullpen - outsIntegerNumber of popouts
qstartplayer - statistics - hitting - overall / starters / bullpen - gamesIntegerNumber of quality starts (6 innings pitched & 3 or less earned runs allowed)
roeplayer - statistics - hitting - overall / starters / bullpen - onbaseIntegerNumber of times allowed to reached on error
caughtplayer - statistics - pitching - overall / starters / bullpen - stealIntegerNumber of times caught stealing
sacflyplayer - statistics - hitting - overall / starters / bullpen - outsIntegerNumber of sacrifice flies
sachitplayer - statistics - hitting - overall / starters / bullpen - outsIntegerNumber of sacrifice hits
svoplayer - statistics - hitting - overall / starters / bullpen - gamesIntegerNumber of save opportunities
saveplayer - statistics - hitting - overall / starters / bullpen - gamesIntegerNumber of saves
shutoutplayer - statistics - hitting - overall / starters / bullpen - gamesIntegerNumber of shutouts
splayer - statistics - hitting - overall / starters / bullpen - onbaseIntegerNumber of singles allowed
stolenplayer - statistics - pitching - overall / starters / bullpen - stealIntegerNumber of stolen bases allowed
klookplayer - statistics - hitting - overall / starters / bullpen - outsIntegerNumber of strikeouts looking
k9player - statistics - pitching - overall / starters / bullpenDecimalStrikeouts per nine innings
ex. 6.75
kbbplayer - statistics - pitching - overall / starters / bullpenDecimalStrikeouts per walk ratio
ex. 1.5
kswingplayer - statistics - hitting - overall / starters / bullpen - outsIntegerNumber of strikeouts swinging
klookplayer - statistics - pitching - overall / starters / bullpen - outcomeIntegerNumber of strikes looking
kswingplayer - statistics - pitching - overall / starters / bullpen - outcomeIntegerNumber of strikes swinging
btotalplayer - statistics - pitching - overall / starters / bullpen - pitchesIntegerTotal number of balls thrown
tbplayer - statistics - hitting - overall / starters / bullpen - onbaseIntegerNumber of total bases allowed
countplayer - statistics - pitching - overall / starters / bullpen - pitchesIntegerTotal number of pitches thrown
totalplayer - statistics - pitching - overall / starters / bullpen - runsIntegerTotal number of runs allowed
ktotalplayer - statistics - hitting - overall / starters / bullpen - outsIntegerTotal number of strikeouts
ktotalplayer - statistics - pitching - overall / starters / bullpen - outcomeIntegerTotal number of strikes thrown
ktotalplayer - statistics - pitching - overall / starters / bullpen - pitchesIntegerTotal number of strikes thrown
tplayer - statistics - hitting - overall / starters / bullpen - onbaseIntegerNumber of triples allowed
unearnedplayer - statistics - pitching - overall / starters / bullpen - runsIntegerNumber of unearned runs allowed
bbplayer - statistics - hitting - overall / starters / bullpen - onbaseIntegerNumber of walks allowed
whipplayer - statistics - pitching - overall / starters / bullpenDecimalWHIP (Walks + Hits Per Inning Pitched)
ex. 4.75
wpplayer - statistics - pitching - overall / starters / bullpenIntegerNumber of wild pitches thrown
winplayer - statistics - hitting - overall / starters / bullpen - gamesIntegerNumber of wins
Team Baserunning Stats (Game):
AttributeParent ElementTypeDescription
caughtgame - statistics - hitting - stealIntegerNumber of times caught stealing
pctgame - statistics - hitting - stealDecimalCaught stealing percentage
ex. 0.5
pickoffgame - statistics - hitting - stealDecimalNumber of times picked off
stolengame - statistics - hitting - stealIntegerNumber of stolen bases
Team Fielding Stats (Game):
AttributeParent ElementTypeDescription
agame - statistics - fielding - overallIntegerNumber of assists
outfieldgame - statistics - fielding - assistsIntegerNumber of outfield assists
totalgame - statistics - fielding - assistsIntegerNumber of total assists
dpgame - statistics - fielding - overallIntegerNumber of double plays turned
errorgame - statistics - fielding - overallIntegerNumber of errors committed
fieldinggame - statistics - fielding - errorsIntegerNumber of fielding errors committed
interferencegame - statistics - fielding - errorsIntegerNumber of interference errors committed
throwinggame - statistics - fielding - errorsIntegerNumber of throwing errors committed
totalgame - statistics - fielding - errorsIntegerTotal number of errors committed
fpctgame - statistics - fielding - overallDecimalFielding percentage
ex. 0.969
pbgame - statistics - fielding - overallIntegerNumber of passed balls
pogame - statistics - fielding - overallIntegerNumber of putouts
caughtgame - statistics - fielding - stealIntegerNumber of runners caught stealing
pctgame - statistics - fielding - stealDecimalCaught stealing percentage
ex. 0.5
pickoffgame - statistics - fielding - stealIntegerNumber of successful pickoffs
stolengame - statistics - fielding - stealIntegerNumber of stolen bases allowed
tcgame - statistics - fielding - overallIntegerTotal number of fielding chances
tpgame - statistics - fielding - overallIntegerNumber of triple plays turned
c_wpgame - statistics - fielding - overallIntegerNumber of wild pitches while catching
Team Hitting Stats (Game):
AttributeParent ElementTypeDescription
abgame - statistics - hitting - overallIntegerNumber of at bats
abhrgame - statistics - hitting - overallDecimalAt bats per homerun
abkgame - statistics - hitting - overallDecimalAt bats per strikeout
ab_rispgame - statistics - hitting - overallIntegerNumber of at bats with runners in scoring position
ballgame - statistics - hitting - overall - outcomeIntegerNumber of at balls seen
bipgame - statistics - hitting - overallIntegerNumber of at balls hit in play
avggame - statistics - hitting - overallDecimalBatting average
ex. .333
babipgame - statistics - hitting - overallIntegerBABIP (Batting average on balls in play)
ex. 0.333
cyclegame - statistics - hitting - overall - onbaseIntegerNumber of cycles (player hits a single, double, triple, and homerun)
dirtballgame - statistics - hitting - overall - outcomeIntegerNumber of dirtballs seen
dgame - statistics - hitting - overall - onbaseIntegerNumber of doubles
xbhgame - statistics - hitting - overallIntegerNumber of extra base hits
fcgame - statistics - hitting - overall - onbaseIntegerNumber of hits into fielder's choice
flyballgame - statistics - hitting - overallIntegerNumber of at flyballs
fogame - statistics - hitting - overall - outsIntegerNumber of fly outs
fidpgame - statistics - hitting - overall - outsIntegerNumber of fly outs into double plays
foulgame - statistics - hitting - overall - outcomeIntegerNumber of foul balls
groundballgame - statistics - hitting - overallIntegerNumber of at groundballs
gofogame - statistics - hitting - overallDecimalGround out/fly out ratio
ex. 2.0
gogame - statistics - hitting - overall - outsIntegerNumber of groundouts
gidpgame - statistics - hitting - overall - outsIntegerNumber of grounded into double plays
hbpgame - statistics - hitting - overall - onbaseIntegerNumber of hit by pitches
hgame - statistics - hitting - overall - onbaseIntegerNumber of hits
hit_rispgame - statistics - hitting - overallIntegerNumber of hits with runners in scoring position
hrgame - statistics - hitting - overall - onbaseIntegerNumber of homeruns
iballgame - statistics - hitting - overall - outcomeIntegerNumber of intentional balls taken
ibbgame - statistics - hitting - overall - onbaseIntegerNumber of intentional walks
isogame - statistics - hitting - overallDecimalIsolated power
linedrivegame - statistics - hitting - overallIntegerNumber of at line drives
logame - statistics - hitting - overall - outsIntegerNumber of lineouts
lidpgame - statistics - hitting - overall - outsIntegerNumber of lineouts into double plays
opsgame - statistics - hitting - overallDecimalOPS (On Base Percentage + Slugging Percentage)
ex. 0.833
obpgame - statistics - hitting - overallDecimalOn Base Percentage
pickoffgame - statistics - hitting - overall - stealIntegerNumber of times picked off
pitch_countgame - statistics - hitting - overallIntegerNumber of pitches seen
apgame - statistics - hitting - overallIntegerNumber of plate appearances
popupgame - statistics - hitting - overallIntegerNumber of popups
pogame - statistics - hitting - overall - outsIntegerNumber of putouts
roegame - statistics - hitting - overall - onbaseIntegerNumber of times reached on error
lobgame - statistics - hitting - overall - onbaseIntegerNumber of players left on base
lob_risp_2outgame - statistics - hitting - overall - onbaseIntegerNumber of players left on base with two outs and runners in scoring position
rbigame - statistics - hitting - overall - onbaseIntegerNumber of RBI (Runs Batted In)
sacflygame - statistics - hitting - overall - outsIntegerNumber of sacrifice flies
sachitgame - statistics - hitting - overall - outsIntegerNumber of sacrifice hits
secagame - statistics - hitting - overallDecimalSecondary average
ex. 0.333
sgame - statistics - hitting - overall - onbaseIntegerNumber of singles
slggame - statistics - hitting - overallDecimalSlugging Percentage
ex. 0.333
klookgame - statistics - hitting - overall - outsIntegerNumber of strikeouts looking
kswinggame - statistics - hitting - overall - outsIntegerNumber of strikeouts swinging
klookgame - statistics - hitting - overall - outcomeIntegerNumber of strikes looking
kswinggame - statistics - hitting - overall - outcomeIntegerNumber of strikes swinging
team_lobgame - statistics - hitting - overall - onbaseIntegerNumber of players left on base at the end of an inning
btotalgame - statistics - hitting - overall - pitchesIntegerNumber of balls seen
tbgame - statistics - hitting - overall - onbaseIntegerNumber of total bases
totalgame - statistics - hitting - overall - runsIntegerNumber of total runs scored
ktotalgame - statistics - hitting - overall - outsIntegerNumber of total strikeouts
ktotalgame - statistics - hitting - overall - outcomeIntegerNumber of strikes seen (not including balls in play)
ktotalgame - statistics - hitting - overall - pitchesIntegerNumber of strikes seen (including balls in play)
tgame - statistics - hitting - overall - onbaseIntegerNumber of triples
rbi_2outgame - statistics - hitting - overallIntegerNumber of 2-out RBI
bbgame - statistics - hitting - overall - onbaseIntegerNumber of walks
bbpagame - statistics - hitting - overallDecimalWalks per plate appearance
ex. 0.25
bbkgame - statistics - hitting - overallDecimalWalks per strikeout
ex. 0.2
Team Pitching Stats (Game):
AttributeParent ElementTypeDescription
bkgame - statistics - pitching - overall / starters / bullpenIntegerNumber of balks
ballgame - statistics - pitching - overall / starters / bullpen - outcomeIntegerNumber of balls thrown
bfgame - statistics - pitching - overall / starters / bullpenIntegerNumber of batters faced
bf_ipgame - statistics - pitching - overall / starters / bullpenDecimalBatters faced per inning pitched
ex. 3.5
bf_startgame - statistics - pitching - overall / starters / bullpenDecimalBatters faced per start
ex. 16.0
bqrgame - statistics - pitching - overall / starters / bullpen - runsIntegerNumber of bequeathed runners
bqragame - statistics - pitching - overall / starters / bullpen - runsIntegerNumber of bequeathed runners allowed to score
blown_savegame - statistics - pitching - overall / starters / bullpen - gamesIntegerNumber of blown saves
completegame - statistics - pitching - overall / starters / bullpen - gamesIntegerNumber of complete games
dirtballgame - statistics - pitching - overall / starters / bullpen - outcomeIntegerNumber of dirtballs thrown
dgame - statistics - pitching - overall / starters / bullpen - onbaseIntegerNumber of doubles allowed
eragame - statistics - pitching - overall / starters / bullpenDecimalERA (Earned Run Average)
ex. 4.5
earnedgame - statistics - pitching - overall / starters / bullpen - runsIntegerNumber of earned runs allowed
fcgame - statistics - pitching - overall / starters / bullpen - onbaseIntegerNumber of fielder's choices allowed
fipgame - statistics - pitching - overall / starters / bullpenDecimalFIP (Fielding Independent Pitching)
ex. 4.5
fogame - statistics - pitching - overall / starters / bullpen - outsIntegerNumber of fly outs
fidpgame - statistics - pitching - overall / starters / bullpen - outsIntegerNumber of fly outs into double plays
foulgame - statistics - hitting - overall / starters / bullpen - outcomeIntegerNumber of foul balls
gofogame - statistics - hitting - overall / starters / bullpenDecimalGround out/fly out ratio
ex. 2.0
gogame - statistics - hitting - overall / starters / bullpen - outsIntegerNumber of groundouts
gidpgame - statistics - hitting - overall / starters / bullpen - outsIntegerNumber of grounded into double plays
hbpgame - statistics - hitting - overall / starters / bullpen - onbaseIntegerNumber of hit batters
hgame - statistics - hitting - overall / starters / bullpen - onbaseIntegerNumber of hits allowed
h9game - statistics - hitting - overall / starters / bullpen - onbaseDecimalHits allowed per nine innings
ex. 1.5
holdgame - statistics - hitting - overall / starters / bullpen - gamesIntegerNumber of holds
hrgame - statistics - hitting - overall / starters / bullpen - onbaseIntegerNumber of homeruns allowed
hr9game - statistics - hitting - overall / starters / bullpen - onbaseDecimalHomeruns allowed per nine innings
ex. 4.5
irgame - statistics - pitching - overall / starters / bullpen - runsIntegerNumber of inherited runners
iragame - statistics - pitching - overall / starters / bullpen - runsIntegerNumber of inherited runners allowed to score
ip_1game - statistics - hitting - overall / starters / bullpenIntegerTotal number of outs recorded
ip_2game - statistics - hitting - overall / starters / bullpenDecimalTotal number of innings pitched
ex. 10.0 (10 innings)
iballgame - statistics - pitching - overall / starters / bullpen - outcomeIntegerNumber of intentional balls thrown
ibbgame - statistics - pitching - overall / starters / bullpen - outcomeIntegerNumber of intentional walks
logame - statistics - hitting - overall / starters / bullpen - outsIntegerNumber of lineouts
lidpgame - statistics - hitting - overall / starters / bullpen - outsIntegerNumber of lineouts into double plays
lossgame - statistics - hitting - overall / starters / bullpen - gamesIntegerNumber of losses
oabgame - statistics - pitching - overall / starters / bullpenIntegerNumber of opponent at bats
obagame - statistics - pitching - overall / starters / bullpenDecimalOpponents batting average
ex. 0.167
babipgame - statistics - pitching - overall / starters / bullpenDecimalOpponents BABIP (Batting average on balls in play)
ex. 0.333
flyballgame - statistics - pitching - overall / starters / bullpen - in-playIntegerNumber of fly balls allowed
gbfbgame - statistics - pitching - overall / starters / bullpenDecimalOpponents ground ball/fly ball ratio
ex. 2.5
groundballgame - statistics - pitching - overall / starters / bullpen - in-playIntegerNumber of ground balls allowed
linedrivegame - statistics - pitching - overall / starters / bullpen - in-playIntegerNumber of line drives allowed
obpgame - statistics - pitching - overall / starters / bullpenDecimalOpponents On Base Percentage
popupsgame - statistics - pitching - overall / starters / bullpen - in-playIntegerNumber of popups allowed
lobgame - statistics - pitching - overall / starters / bullpenIntegerNumber of runners left on base
slggame - statistics - pitching - overall / starters / bullpenDecimalOpponents Slugging Percentage
ex. 0.357
pickoffgame - statistics - pitching - overall / starters / bullpen - stealIntegerNumber of successful pickoffs
pitch_countgame - statistics - pitching - overall / starters / bullpenIntegerNumber of pitches thrown
per_bfgame - statistics - pitching - overall / starters / bullpen - pitchesDecimalNumber of pitches per batter faced
ex. - 3.813
per_ipgame - statistics - pitching - overall / starters / bullpen - pitchesDecimalNumber of pitches per inning pitched
ex. - 15.25
per_startgame - statistics - pitching - overall / starters / bullpen - pitchesDecimalNumber of pitches per start
ex. - 61.0
pogame - statistics - hitting - overall / starters / bullpen - outsIntegerNumber of popouts
qstartgame - statistics - hitting - overall / starters / bullpen - gamesIntegerNumber of quality starts (6 innings pitched & 3 or less earned runs allowed)
roegame - statistics - hitting - overall / starters / bullpen - onbaseIntegerNumber of times allowed to reached on error
caughtgame - statistics - pitching - overall / starters / bullpen - stealIntegerNumber of times caught stealing
sacflygame - statistics - hitting - overall / starters / bullpen - outsIntegerNumber of sacrifice flies
sachitgame - statistics - hitting - overall / starters / bullpen - outsIntegerNumber of sacrifice hits
svogame - statistics - hitting - overall / starters / bullpen - gamesIntegerNumber of save opportunities
savegame - statistics - hitting - overall / starters / bullpen - gamesIntegerNumber of saves
shutoutgame - statistics - hitting - overall / starters / bullpen - gamesIntegerNumber of shutouts
sgame - statistics - hitting - overall / starters / bullpen - onbaseIntegerNumber of singles allowed
stolengame - statistics - pitching - overall / starters / bullpen - stealIntegerNumber of stolen bases allowed
klookgame - statistics - hitting - overall / starters / bullpen - outsIntegerNumber of strikeouts looking
k9game - statistics - pitching - overall / starters / bullpenDecimalStrikeouts per nine innings
ex. 6.75
kbbgame - statistics - pitching - overall / starters / bullpenDecimalStrikeouts per walk ratio
ex. 1.5
kswinggame - statistics - hitting - overall / starters / bullpen - outsIntegerNumber of strikeouts swinging
klookgame - statistics - pitching - overall / starters / bullpen - outcomeIntegerNumber of strikes looking
kswinggame - statistics - pitching - overall / starters / bullpen - outcomeIntegerNumber of strikes swinging
btotalgame - statistics - pitching - overall / starters / bullpen - pitchesIntegerTotal number of balls thrown
tbgame - statistics - hitting - overall / starters / bullpen - onbaseIntegerNumber of total bases allowed
countgame - statistics - pitching - overall / starters / bullpen - pitchesIntegerTotal number of pitches thrown
totalgame - statistics - pitching - overall / starters / bullpen - runsIntegerTotal number of runs allowed
ktotalgame - statistics - hitting - overall / starters / bullpen - outsIntegerTotal number of strikeouts
ktotalgame - statistics - pitching - overall / starters / bullpen - outcomeIntegerTotal number of strikes thrown
ktotalgame - statistics - pitching - overall / starters / bullpen - pitchesIntegerTotal number of strikes thrown
tgame - statistics - hitting - overall / starters / bullpen - onbaseIntegerNumber of triples allowed
unearnedgame - statistics - pitching - overall / starters / bullpen - runsIntegerNumber of unearned runs allowed
bbgame - statistics - hitting - overall / starters / bullpen - onbaseIntegerNumber of walks allowed
whipgame - statistics - pitching - overall / starters / bullpenDecimalWHIP (Walks + Hits Per Inning Pitched)
ex. 4.75
wpgame - statistics - pitching - overall / starters / bullpenIntegerNumber of wild pitches thrown
wingame - statistics - hitting - overall / starters / bullpen - gamesIntegerNumber of wins