MLB Stats
get_statcast_pitcher_percentile_ranks
Retrieves percentile ranks for each player in a given year, including batters with 2.1 PA per team game and 1.25 for pitchers. It includes percentiles on expected stats, batted ball data, and spin rates, among others. ARGUMENTS year: The year for which you wish to retrieve percentile data. Format: YYYY. 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_percentile_ranks?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"year": {
"type": "integer",
"title": "Year"
},
"end_row": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"title": "End Row",
"default": null
},
"start_row": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"title": "Start Row",
"default": null
}
}
}