MLB Stats
get_statcast_batter_pitch_arsenal
Retrieves outcome data for batters split by the pitch type in a given year. ARGUMENTS year: The year for which you wish to retrieve pitch arsenal data. Format: YYYY. minPA: The minimum number of plate appearances for each player. If a player falls below this threshold, they will be excluded from the results. If no value is specified, the default number of plate appearances is 25. 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_pitch_arsenal?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"year": {
"type": "integer",
"title": "Year"
},
"minPA": {
"type": "integer",
"title": "Minpa",
"default": 25
},
"end_row": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"title": "End Row",
"default": null
},
"start_row": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"title": "Start Row",
"default": null
}
}
}