module ApiFootballV3::Rest::Fixtures
Public Instance Methods
fixture_events(options = {})
click to toggle source
# File lib/api_football_v3/rest/fixtures.rb, line 24 def fixture_events(options = {}) get('/fixtures/events', options) end
fixture_lineups(options = {})
click to toggle source
# File lib/api_football_v3/rest/fixtures.rb, line 28 def fixture_lineups(options = {}) get('/fixtures/lineups', options) end
fixture_player_statistics(options = {})
click to toggle source
# File lib/api_football_v3/rest/fixtures.rb, line 32 def fixture_player_statistics(options = {}) get('/fixtures/players', options) end
fixture_statistics(options = {})
click to toggle source
# File lib/api_football_v3/rest/fixtures.rb, line 20 def fixture_statistics(options = {}) get('/fixtures/statistics', options) end
fixtures(options = {})
click to toggle source
# File lib/api_football_v3/rest/fixtures.rb, line 4 def fixtures(options = {}) get('/fixtures', options) end
head_to_head(options = {})
click to toggle source
# File lib/api_football_v3/rest/fixtures.rb, line 16 def head_to_head(options = {}) get('/fixtures/headtohead', options) end
live()
click to toggle source
# File lib/api_football_v3/rest/fixtures.rb, line 8 def live get('/fixtures', { live: 'all' }) end
rounds(options = {})
click to toggle source
# File lib/api_football_v3/rest/fixtures.rb, line 12 def rounds(options = {}) get('/fixtures/rounds', options) end