module ApiFootballV3::Rest::Players

Public Instance Methods

players(options = {}) click to toggle source
# File lib/api_football_v3/rest/players.rb, line 4
def players(options = {})
  get('/players', options)
end
players_seasons() click to toggle source
# File lib/api_football_v3/rest/players.rb, line 12
def players_seasons
  get('/players/seasons')
end
top_scorers(options = {}) click to toggle source
# File lib/api_football_v3/rest/players.rb, line 8
def top_scorers(options = {})
  get('/players/topscorers', options)
end