Categorygithub.com/badkaktus/go-api-football
repositorypackage
0.0.0-20241110162934-b6dc82c3abaa
Repository: https://github.com/badkaktus/go-api-football.git
Documentation: pkg.go.dev

# README

Go client for api-football.com

Use this simple client if you want to use REST API v3 api-football.com

How to use

Just import

import (
	"github.com/badkaktus/go-api-football"
)

Create client

gafClient := gaf.NewClient("token")

Example

Get teams (endpoint: /teams)

req := gaf.TeamsOptions{
    Id: 621,
}
team, err := gafClient.GetTeams(context.Background(), &req)

if err != nil {
	return fmt.Fprintf("%+v", err)
}

Not all endpoints have been added to the client at the moment.

List of added endpoints:

EndpointsRouteMethodStruct with options for method
Status/statusGetStatus-
Timezone/timezoneGetTimezone-
Countries/countriesGetCountriesCountriesOptions
Leagues/leaguesGetLeaguesLeaguesOptions
Leagues seasons/leagues/seasonsGetLeaguesSeasons-
Teams information/teamsGetTeamsTeamsOptions
Teams statistics/teams/statisticsGetTeamStatisticsTeamStatisticsOption
Teams seasons/teams/seasonsGetTeamSeasonsTeamSeasonsOptions
Venues/venuesGetVenuesVenuesOptions
Standings/standingsGetStandingsStandingsOptions
Fixtures/fixturesGetFixturesFixturesOptions
Fixtures head To head/fixtures/headtoheadGetHead2HeadHead2HeadOptions
Fixtures statistics/fixtures/statisticsGetFixturesStatisticsFixturesStatisticsOptions
Fixtures events/fixtures/eventsGetFixturesEventsFixturesEventsOptions
Fixtures lineups/fixtures/lineupsGetFixturesLineupsFixturesLineupsOptions
Fixtures players statistics/fixtures/playersGetFixturesPlayersFixturesPlayersOptions
Predictions/predictionsGetPredictionsPredictionsOptions
Coachs/coachsGetCoachsCoachsOptions
Transfers/transfersGetTransfersTransfersOptions
Sidelined/sidelinedGetSidelinedSidelinedOptions
Odds (In-Play)/odds/liveGetOddsLiveOddsLiveOptions

TODO

  • /teams/countries
  • /fixtures/rounds
  • /injuries
  • /players/seasons
  • /players/profiles
  • /players
  • /players/squads
  • /players/teams
  • /players/topscorers
  • /players/topassists
  • /players/topyellowcards
  • /players/topredcards
  • /trophies
  • /odds/live/bets
  • /odds
  • /odds/mapping
  • /odds/bookmakers
  • /odds/bets