Discover/Formula 1 API
live

Formula 1 APIformula1.com

Access F1 race results, qualifying times, pit stops, driver/constructor standings, and World Champion data from formula1.com via 13 structured endpoints.

Endpoint health
verified 11h ago
get_race_results_by_season
get_practice_result
get_meetings_list
get_race_result_detail
get_world_champion_by_year
13/13 passing latest checkself-healing
Endpoints
13
Updated
22d ago

What is the Formula 1 API?

This API exposes 13 endpoints covering Formula 1 race data sourced from formula1.com, spanning seasons from 1950 to the present. You can retrieve full race result detail including all finishing positions and gap times via get_race_result_detail, pull qualifying Q1/Q2/Q3 lap times per driver, fetch pit stop summaries with per-stop durations, and query both Drivers' and Constructors' Championship standings for any season.

Try it
Season year (e.g. 2024, 2025)
api.parse.bot/scraper/9bfc909e-ec35-447c-aee1-476971bf8f19/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/9bfc909e-ec35-447c-aee1-476971bf8f19/get_meetings_list?year=2024' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace formula1-com-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

"""
Formula 1 API - Usage Example

Get your API key from: https://parse.bot/settings
"""
from parse_apis.formula_1_api import F1, SessionNumber

f1 = F1()

# Get 2024 season data
season = f1.season("2024")

# List all meetings in the season
for meeting in season.meetings():
    print(meeting.name, meeting.country_code)

# Get driver standings
standings = season.driver_standings()
for driver in standings.drivers:
    print(driver.position_number, driver.driver_first_name, driver.driver_last_name, driver.championship_points)

# Get the world champion
champion = season.champion()
print(champion.driver_first_name, champion.driver_last_name, champion.team_name)

# Get team standings
team_standings = season.team_standings()
for team in team_standings.constructors:
    print(team.position_number, team.team_name, team.championship_points)

# Access a specific meeting's data
bahrain = f1.meeting("1229")
practice = bahrain.practice_result(year="2024", session_number=SessionNumber.FP1)
print(practice.year, practice.season_state)

# List available sessions for a meeting
for session_ds in bahrain.sessions(year="2024"):
    print(session_ds.text, session_ds.is_available)
All endpoints · 13 totalmissing one? ·

Get list of Grand Prix meetings for a season. Returns an array of meeting objects with location names, numeric IDs, and country information. Use the meeting ID (value field) to query session-specific endpoints.

Input
ParamTypeDescription
yearrequiredstringSeason year (e.g. 2024, 2025)
Response
{
  "type": "object",
  "fields": {
    "data": "object containing items array of meeting objects with value (meeting ID), text (location name), meetingCountryCode, meetingIsoCountryName"
  },
  "sample": {
    "data": {
      "items": [
        {
          "text": "Bahrain",
          "value": 1229,
          "isDefault": false,
          "meetingCountryCode": "BRN",
          "meetingIsoCountryName": "Bahrain"
        }
      ]
    },
    "status": "success"
  }
}

About the Formula 1 API

Session and Meeting Data

All per-event endpoints require a meeting_id, which you obtain from get_meetings_list by passing a year parameter. That endpoint returns an array of meeting objects with a value field (the meeting ID), a text field for the location name, and meetingIsoCountryName for the country. Before fetching any session data, you can call get_session_datasets with a year and meeting_id to discover which result types — race, qualifying, practice, fastest laps, pit stops, starting grid — are actually available for that event, since not every meeting has all sessions populated.

Race Weekend Results

get_race_result_detail returns a raceResultsRace object containing a full results array with each driver's finishing position, classified time, and gap to the leader. get_qualifying_result adds per-driver q1, q2, and q3 lap times. get_practice_result accepts an optional session_number (1, 2, or 3) to target a specific free practice session, returning a raceResultsPractice1/2/3 object. get_starting_grid provides positionNumber and classifiedTime per driver. get_fastest_laps returns a ranked list including lapNumber, classifiedTime, and averageSpeed. get_pit_stop_summary exposes each stop's lapNumber, pitStopNumber, and totalPitTime.

Standings and Champions

get_driver_standings and get_team_standings both accept a year and return championship points, positions, and associated team or driver details. Note that the drivers array from get_driver_standings may not be sorted by positionNumber — sort client-side if you need ordered output. get_world_champion_by_year isolates the driver at positionNumber 1 for a given season and returns upstream_error if no champion data exists yet for that year.

Season Schedule and Awards

get_race_results_by_season returns the full calendar for a year as an events array, including top-3 finishers and seasonState indicating whether the season is complete or ongoing. get_award_results retrieves Driver of the Day voting results, including votePercentage and votePosition per driver, and can be filtered to a specific meeting by appending a meeting filter to the award_path parameter.

Reliability & maintenanceVerified

The Formula 1 API is a managed, monitored endpoint for formula1.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when formula1.com changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official formula1.com API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
11h ago
Latest check
13/13 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Build a season results tracker showing race winners and podium finishers for every Grand Prix using get_race_results_by_season.
  • Compare qualifying performance across a season by pulling Q1/Q2/Q3 lap times per driver from get_qualifying_result.
  • Analyze pit stop strategy by extracting totalPitTime and lapNumber data from get_pit_stop_summary across multiple races.
  • Display live or historical Drivers' and Constructors' Championship tables sorted by championshipPoints from get_driver_standings and get_team_standings.
  • Show fastest lap rankings with averageSpeed per driver for any race using get_fastest_laps.
  • Build a historical World Champions page by iterating get_world_champion_by_year across multiple decades.
  • Surface Driver of the Day fan vote results including vote percentages per meeting using get_award_results.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does Formula 1 have an official developer API?+
Formula 1 does not publish a public developer API. The official site at formula1.com exposes data through its web properties, but there is no documented public API with keys or documentation available to third-party developers.
What does `get_race_result_detail` return beyond finishing positions?+
get_race_result_detail returns a raceResultsRace object with a full results array covering each driver's finishing position, classified time, and gap to the race leader, along with session metadata and meeting information. It does not include telemetry or lap-by-lap breakdowns — only final classified results.
Does the driver standings endpoint return results sorted by championship position?+
Not necessarily. The drivers array from get_driver_standings may be unordered by positionNumber. You should sort the array client-side on positionNumber to display a correctly ordered standings table.
Does the API cover Sprint race results?+
Sprint race results are not currently exposed as a dedicated endpoint. The API covers the main race, qualifying, practice sessions (FP1/FP2/FP3), fastest laps, pit stops, and starting grid. You can fork this API on Parse and revise it to add a Sprint results endpoint for meetings where that session is available.
How far back does historical season data go, and are all sessions available for older years?+
The year parameter accepts seasons going back to 1950 according to the prior description, but session-level data such as qualifying times and pit stop summaries may not be populated for older seasons. You can call get_session_datasets for a given year and meeting_id to check which result types have isAvailable set to true before attempting to fetch them.
Page content last updated . Spec covers 13 endpoints from formula1.com.
Related APIs in SportsSee all →
f1.com API
Track driver and constructor standings, view detailed race results and schedules, and explore driver profiles and awards from across Formula 1 history. Stay updated with comprehensive F1 season data including current standings, past race outcomes, and upcoming event schedules.
motorsport.com API
Access comprehensive Formula 1 data from Motorsport.com, including the latest news headlines, driver profiles, race schedules, championship standings, and detailed race results by season.
ergast.com API
Access comprehensive Formula 1 historical data dating back to 1950, including race results, driver and constructor standings, qualifying times, lap records, and pit stop information. Track driver and constructor performance across seasons, explore circuit details, and analyze standings to dive deep into F1 history.
driverdb.com API
Access driver performance data, detailed career statistics, and race results across all major motorsports series. Retrieve championship standings, team information, and head-to-head driver comparisons, and browse comprehensive profiles, race calendars, and circuit details.
racing.hkjc.com API
Access comprehensive horse racing data from the Hong Kong Jockey Club. Retrieve race results, detailed horse profiles including pedigree and form records, jockey and trainer season rankings, upcoming race meeting fixtures, and horse search by name.
procyclingstats.com API
Access comprehensive professional cycling data including race results, team rosters, and rider victory rankings to analyze performance and track statistics across the sport. Build cycling applications that deliver real-time insights into races, teams, and top-performing athletes.
racingpost.com API
Access comprehensive horse racing data from Racing Post, including daily racecards, meeting schedules, race results, and detailed horse profiles with form history, stats, and pedigree.
results.usatf.org API
Access meet information, competition schedules, and event results from USATF track and field competitions. Look up athlete profiles, browse daily schedules, and retrieve detailed results from meets including para nationals events.