get_session_details
Retrieve comprehensive Formula 1 session details including results, weather conditions, fastest lap data, and statistics for any Grand Prix session from 2018 onwards.
Instructions
Get comprehensive details of a specific F1 session.
Provides complete session information including results, weather conditions, fastest lap, and session statistics for any F1 session from 2018 onwards.
Args: year: The season year (2018 onwards) gp: The Grand Prix name (e.g., 'Monza', 'Monaco') or round number session: Session type - 'FP1' (Free Practice 1), 'FP2' (Free Practice 2), 'FP3' (Free Practice 3), 'Q' (Qualifying), 'S' (Sprint), 'R' (Race) include_weather: Whether to include weather data (default: True) include_fastest_lap: Whether to include fastest lap information (default: True)
Returns: SessionDetailsResponse: Complete session details including: - Session information (name, location, date, circuit) - Driver results/classification with positions, times, and teams - Weather conditions (temperature, humidity, wind, rainfall) - Fastest lap information (driver, time, compound) - Session statistics (total laps, duration)
Examples: >>> # Get Free Practice 1 details from 2019 Monza GP >>> get_session_details(2019, "Monza", "FP1")
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| gp | Yes | ||
| include_fastest_lap | No | ||
| include_weather | No | ||
| session | Yes | ||
| year | Yes |