MLB Stats
get_statcast_batter_exitvelo_barrels
Retrieves batted ball data for all batters in a given year. ARGUMENTS year: The year for which you wish to retrieve batted ball data. Format: YYYY. minBBE: The minimum number of batted ball events for each player. If a player falls below this threshold, they will be excluded from the results. If no value is specified, only qualified batters will be returned. start_row: optional (defaults to None) : starting row index for truncating large results (0-based, inclusive) end_row: optional (defaults to None) : ending row index for truncating large results (0-based, exclusive) Use start_row and end_row to limit response size when dealing with large datasets.
Other tools also called get_statcast_batter_exitvelo_barrels?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"year": {
"type": "integer",
"title": "Year"
},
"minBBE": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"title": "Minbbe",
"default": null
},
"end_row": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"title": "End Row",
"default": null
},
"start_row": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"title": "Start Row",
"default": null
}
}
}