Skip to main content
Glama

Pitstop

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")

>>> # Get qualifying results from 2023 Silverstone >>> quali = get_session_results(2023, "Silverstone", "Q")

Input Schema

NameRequiredDescriptionDefault
gpYes
sessionYes
yearYes

Input Schema (JSON Schema)

{ "properties": { "gp": { "anyOf": [ { "type": "string" }, { "type": "integer" } ], "title": "Gp" }, "session": { "title": "Session", "type": "string" }, "year": { "title": "Year", "type": "integer" } }, "required": [ "year", "gp", "session" ], "type": "object" }

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/praneethravuri/pitstop'

If you have feedback or need assistance with the MCP directory API, please join our Discord server