Kettle is a simple Go package for accessing theSteam API, or xPaw documentation and the Storefront API.
If you find any errors please create an issue or I'll accept your pull request :)
go get -u github.com/peppage/kettle
httpClient := http.DefaultClient
steamClient = kettle.NewClient(httpClient, "steamkey")
// Get the full app list
games, _, err := steamClient.ISteamAppsService.GetAppList()
// Get reviews for a game
d, _, err := steamClient.Store.AppReviews(&kettle.AppReviewsParams{
AppID: gameID,
Language: "all",
})
// Get details about a game
d, _, err := steamClient.Store.AppDetails(game.ID)