get_mlb_game_pace
Retrieve game pace statistics for a specific MLB season using season year and sport ID. Access key metrics to analyze gameplay duration and trends in baseball data.
Instructions
Get game pace statistics for a given season.
Args: season (int): Season year. sport_id (int): Sport ID (default: 1 for MLB).
Returns: dict: Game pace statistics.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
season | Yes | ||
sport_id | No |
Input Schema (JSON Schema)
{
"properties": {
"season": {
"title": "Season",
"type": "integer"
},
"sport_id": {
"default": 1,
"title": "Sport Id",
"type": "integer"
}
},
"required": [
"season"
],
"type": "object"
}