0.0
The project is in a healthy, maintained state
A Ruby wrapper for the OpenF1 API providing access to Formula 1 timing data
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
 Dependencies

Runtime

~> 2.0
 Project Readme

Openf1::Ruby

A simple Ruby client for the OpenF1 API, providing access to Formula 1 timing data, telemetry, and race information.

Installation

Add this line to your application's Gemfile:

gem "openf1-ruby"

If bundler is not being used to manage dependencies, install the gem by executing:

gem install openf1-ruby

Usage

Basic Setup

Create a client to interact with the OpenF1 API:

client = Openf1::Client.new

Available Endpoints

The client provides access to all OpenF1 API endpoints:

client.car_data      # Car telemetry data
client.drivers       # Driver information
client.intervals     # Timing intervals
client.laps          # Lap timing data
client.location      # Track location data
client.meetings      # Race meeting information
client.pit           # Pit stop data
client.position      # Car position data
client.race_control  # Race control messages
client.sessions      # Session information
client.stints        # Stint data
client.team_radio    # Team radio messages
client.weather       # Weather data

Making Requests

All endpoint methods accept optional parameters as a hash:

# Get all drivers
client.drivers

# Get drivers for a specific session
client.drivers(session_key: "12345")

# Get sessions for a specific year
client.sessions(year: 2024)

# Get Sprint Sessions for a specific year
client.sessions({year: 2024, session_name: "Sprint"})

Response Format

All responses are returned as OpenStruct objects with data accessible through the data attribute:

response = client.drivers
response.data.each do |driver|
  puts "#{driver.full_name} (#{driver.driver_number})"
end

Development

After checking out the repo, run bin/setup to install dependencies. Then, run rake test to run the tests. You can also run bin/console for an interactive prompt that will allow you to experiment.

To install this gem onto your local machine, run bundle exec rake install. To release a new version, update the version number in version.rb, and then run bundle exec rake release, which will create a git tag for the version, push git commits and the created tag, and push the .gem file to rubygems.org.

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/gregdodd/openf1-ruby.