Searching for cards
Request
const card = await tcgdex.fetch('cards');
See how to setup the Javascript SDK
SDK currently does not support filtering
const card = await tcgdex.fetch('cards');
See how to setup the Typescript SDK
SDK currently does not support filtering
Card card = tcgdex.fetchCards();
SDK currently does not support filtering
val card = tcgdex.fetchCards()
See how to setup the Kotlin SDK
SDK currently does not support filtering
Sample Response
200 Response
The request return an array of CardBrief
objects
[ { "id": "base4-1", "localId": "1", "name": "Alakazam", "image": "https://assets.tcgdex.net/en/base/base4/1" }, // ... { "id": "xyp-XY99", "localId": "XY99", "name": "Aerodactyl Spirit Link", "image": "https://assets.tcgdex.net/en/xy/xyp/XY99" }]