Skip to content

PokemonTCG/pokemon-tcg-sdk-go-v2

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

PokemonTCG.io V2 SDK for Go

CircleCI Status Go Reference

Installation

go get -u github.com/PokemonTCG/pokemon-tcg-sdk-go-v2

Basic usage

package main

import (
    "log"

    tcg "github.com/PokemonTCG/pokemon-tcg-sdk-go-v2/pkg"
    "github.com/PokemonTCG/pokemon-tcg-sdk-go-v2/pkg/request"
)

func main() {
    // If an empty string is used here, you can stil use the API with stricter limits.
    // See: https://docs.pokemontcg.io/#documentationrate_limits
    c := tcg.NewClient("your_api_key")

    cards, err := c.GetCards(
        request.Query("name:jirachi", "types:psychic"),
        request.PageSize(5),
    )
    if err != nil {
        log.Fatal(err)
    }

    for _, card := range cards {
        log.Println(card.Name)
    }
}

More Examples

Check out the Examples directory.