get_session_results
Retrieve Formula 1 session results including positions, times, teams, and driver information for any Grand Prix from 2018 onwards. Access qualifying, race, sprint, and practice session classifications with comprehensive performance data.
Instructions
Get results/classification from a specific F1 session.
Retrieves the final classification or results for any F1 session, including positions, times, teams, and driver information.
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)
Returns: SessionResultsResponse: Session results with driver positions, times, teams, and other classification data in JSON-serializable format.
Examples: >>> # Get race results from 2024 Monaco GP >>> results = get_session_results(2024, "Monaco", "R")
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| gp | Yes | ||
| session | Yes | ||
| year | Yes |