get_live_pit_stops
Retrieve live pit stop timing and analysis for Formula 1 races, including crew performance metrics and driver-specific data from OpenF1.
Instructions
Get pit stop analysis with crew timing from OpenF1.
Args: year: Season year (2023+, OpenF1 data availability) country: Country name (e.g., "Monaco", "Italy", "United States") session_name: Session name - 'Race', 'Qualifying', 'Sprint', 'Practice 1/2/3' (default: 'Race') driver_number: Optional filter by driver number (1-99)
Returns: PitStopsResponse with pit stop durations and statistics
Example: get_live_pit_stops(2024, "Monaco", "Race") → All pit stops with timing get_live_pit_stops(2024, "Monaco", "Race", 1) → Verstappen's pit stops
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| year | Yes | ||
| country | Yes | ||
| session_name | No | Race | |
| driver_number | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| year | No | Year | |
| country | No | Country name | |
| pit_stops | Yes | List of pit stops | |
| fastest_stop | No | Fastest pit stop duration | |
| session_name | No | Session name | |
| slowest_stop | No | Slowest pit stop duration | |
| total_pit_stops | Yes | Total number of pit stops | |
| average_duration | No | Average pit stop duration |