get_session_drivers
Retrieve all driver identifiers who participated in a specific Formula 1 session by providing the year, Grand Prix, and session type.
Instructions
Get list of drivers who participated in a session.
Retrieves all driver identifiers who took part in the specified session.
Args: year: The season year (2018 onwards) gp: The Grand Prix name (e.g., 'Monza', 'Monaco') or round number session: Session type - 'FP1', 'FP2', 'FP3', 'Q', 'S', 'R'
Returns: SessionDriversResponse: List of driver abbreviations in JSON-serializable format
Examples: >>> # Get all drivers from 2024 Monza race >>> drivers = get_session_drivers(2024, "Monza", "R") >>> # Output: SessionDriversResponse with drivers list
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| gp | Yes | ||
| session | Yes | ||
| year | Yes |