JSON API - Get a set /v2/:lang/cards

    Fields

    NameDescriptionType
    idSet Unique IDString
    nameSet NameString
    logoSet logo (you can add .(webp|png|jpg) to customize the format) (see Assets)String
    symbolSet Symbol (you can add .(webp|png|jpg) to customize the format (see Assets)String
    cardCountContain information about the number of cards in the setObject
    cardCount.totalThe total amount of cards in this set (including hidden)Number
    cardCount.officialThe amount of cards in this set (displayed on the bottom left/right of the card)Number
    cardCount.reverseThe amount of cards in this set that can be found in reverse holoNumber
    cardCount.holoThe amount of cards in this set that can be found in holoNumber
    cardCount.firstEdThe amount of cards in this set that can be found with the firstEdition TagNumber
    serieInformations about the serieSerie Resume
    tcgOnlinePokémon TCG Online Set codeString
    releaseDateThe set release date in the form yyyy-mm-ddString
    legalSet usability in competitionsObject
    legal.standardAbility to use this set in standard competitionsBoolean
    legal.expandedAbility to use this set in Expanded competitionsBoolean
    cardsList of cards in this setArray of Card Resume
    https://api.tcgdex.net/v2/en/sets

    Response

    
    {
    	"cardCount": {
    		"firstEd": 0,
    		"holo": 64,
    		"normal": 137,
    		"official": 189,
    		"reverse": 155,
    		"total": 201
    	},
    	"cards": [..., {
    		"id": "swsh3-136",
    		"image": "https://assets.tcgdex.net/en/swsh/swsh3/136",
    		"localId": "136",
    		"name": "Furret"
    	}, ...],
    	"id": "swsh3",
    	"legal": {
    		"expanded": true,
    		"standard": false
    	},
    	"logo": "https://assets.tcgdex.net/en/swsh/swsh3/logo",
    	"name": "Darkness Ablaze",
    	"releaseDate": "2020-08-14",
    	"serie": {
    		"id": "swsh",
    		"name": "Sword & Shield"
    	},
    	"symbol": "https://assets.tcgdex.net/univ/swsh/swsh3/symbol"
    }