MLB Stats
get_statcast_pitcher_data
Pulls statcast pitch-level data from Baseball Savant for a given pitcher. ARGUMENTS start_dt : YYYY-MM-DD : the first date for which you want a player's statcast data end_dt : YYYY-MM-DD : the final date for which you want data player_id : INT : the player's MLBAM ID. Find this by calling pthe get_playerid_lookup tool, finding the correct player, and selecting their key_mlbam. 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_pitcher_data?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"end_dt": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "End Dt",
"default": null
},
"end_row": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"title": "End Row",
"default": null
},
"start_dt": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Start Dt",
"default": null
},
"player_id": {
"type": "integer",
"title": "Player Id"
},
"start_row": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"title": "Start Row",
"default": null
}
}
}