get_event_schedule
Retrieve the Formula One race calendar for a specific season by inputting the year. Access event schedules directly using Python-based FastF1 library integration.
Instructions
Get Formula One race calendar for a specific season
Input Schema
Name | Required | Description | Default |
---|---|---|---|
year | Yes | Season year (e.g., 2023) |
Input Schema (JSON Schema)
{
"properties": {
"year": {
"description": "Season year (e.g., 2023)",
"type": "number"
}
},
"required": [
"year"
],
"type": "object"
}