Searching Sets
Request
// Fetch the cards !$sets = $tcgdex->fetchSets();
SDK currently does not support filtering
// Fetch the cards !const sets = await tcgdex.fetch('sets');
See how to setup the Javascript SDK
SDK currently does not support filtering
// Fetch the cards !const sets = await tcgdex.fetch('sets');
See how to setup the Typescript SDK
SDK currently does not support filtering
// Fetch the cards !ArrayList<SetResume> sets = tcgdex.getchSets();
SDK currently does not support filtering
// returns you a Card Class with every informations filled!val sets = tcgdex.getchSets()
See how to setup the Kotlin SDK
SDK currently does not support filtering
Sample Response
[ { "id": "base1", "name": "Base Set", "logo": "https://assets.tcgdex.net/en/base/base1/logo", "cardCount": { "total": 102, "official": 102 } }, // ... { "id": "swsh3", "name": "Darkness Ablaze", "logo": "https://assets.tcgdex.net/en/swsh/swsh3/logo", "symbol": "https://assets.tcgdex.net/univ/swsh/swsh3/symbol", "cardCount": { "total": 201, "official": 189 } }, // ... { "id": "sv06", "name": "Twilight Masquerade", "logo": "https://assets.tcgdex.net/en/sv/sv06/logo", "symbol": "https://assets.tcgdex.net/univ/sv/sv06/symbol", "cardCount": { "total": 226, "official": 167 } }]