Schedule and calendar
Last updated
Was this helpful?
This section covers how the Motorsport API models a racing season, from the championship level down to individual sessions. Understanding this hierarchy is the foundation for any race calendar, fixture list, or results archive.
Leagues and seasons - The championship structure, how to find the current season ID, and how to work with historical seasons.
Schedule - How to retrieve the full race calendar for a season.
Stages - The race weekend structure: practice sessions, qualifying, sprint sessions, and the race itself.
The API is structured as a tree from championship down to session:
League (championship)
βββ Season (calendar year)
βββ Stage (race weekend)
βββ Fixture (individual session: FP1, qualifying, race, etc.)A League is the championship, for example the Formula 1 World Championship. A Season is a calendar year. A Stage is a race weekend, grouping all sessions at one circuit. A Fixture is a single session within that weekend.
When you want all fixtures for the 2025 season, query the season and include fixtures:
https://api.sportmonks.com/v3/motorsport/seasons/SEASON_ID
?api_token=YOUR_TOKEN
&include=fixturesWhen you want all sessions for a specific race weekend, query by stage ID:
Last updated
Was this helpful?
Was this helpful?
https://api.sportmonks.com/v3/motorsport/stages/STAGE_ID
?api_token=YOUR_TOKEN
&include=fixtures