get_championship_standings
Retrieve Formula One championship standings for a specific season or round using year and optional round number inputs in Python via FastF1.
Instructions
Get Formula One championship standings
Input Schema
Name | Required | Description | Default |
---|---|---|---|
round_num | No | Round number (optional, gets latest standings if not provided) | |
year | Yes | Season year (e.g., 2023) |
Input Schema (JSON Schema)
{
"properties": {
"round_num": {
"description": "Round number (optional, gets latest standings if not provided)",
"type": "number"
},
"year": {
"description": "Season year (e.g., 2023)",
"type": "number"
}
},
"required": [
"year"
],
"type": "object"
}