go get github.com/PokemonTCG/pokemon-tcg-sdk-go/src
package main
import (
"fmt"
"log"
"github.com/PokemonTCG/pokemon-tcg-sdk-go/src"
)
func main() {
noParams := make(map[string]string)
cards, err := pokemontcgsdk.GetCards(noParams)
if err != nil {
log.Fatal(err)
}
fmt.Println(cards)
}
See examples section for more.
See the pokemontcg website (The docs).