get_tire_strategy
Analyze tire compounds, life, and stint data for F1 sessions to understand race strategy and tire management decisions.
Instructions
Get tire strategy and compound usage for a session.
Analyzes tire compounds used throughout a session, including compound types, tire life, and stint information. Essential for understanding race strategy and tire management.
Args: year: The season year (2018 onwards) gp: The Grand Prix name or round number session: Session type - 'FP1', 'FP2', 'FP3', 'Q', 'S', 'R' driver: Optional driver identifier (3-letter code or number). If None, returns data for all drivers
Returns: TireStrategyResponse: Tire data per lap in JSON-serializable format
Examples: >>> # Get tire strategy for all drivers in 2024 Monza race >>> strategy = get_tire_strategy(2024, "Monza", "R")
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| driver | No | ||
| gp | Yes | ||
| session | Yes | ||
| year | Yes |