Playground
Query real cards, right now
These requests hit the live API against a public sample of the catalog. No key, no signup, no sandbox data — the response you see is the response you would get in production.
Game
Name contains
Price market
Digimon filters
Sort
Limit
Request
GET https://api.tcggraph.com/v1/cards
?game=digimon
&limit=5
&sort=-price
&source=tcgplayerResponse20012 ms6 matches
{
"data": [
{
"id": "dgm_bt1_112",
"game": "digimon",
"name": "Dimension Scissor",
"set": {
"code": "BT1",
"name": [
"BT-01: Booster New Evolution",
"BT01-03: Release Special Booster Ver.1.0",
"BTC-01: Booster Ultimate Evolution"
],
"releasedAt": null
},
"collectorNumber": "BT1-112",
"rarity": "Common",
"artist": null,
"text": null,
"images": {
"small": "/cards/digimon/BT1-112.jpg",
"normal": "/cards/digimon/BT1-112.jpg",
"large": "/cards/digimon/BT1-112.jpg"
},
"prices": [],
"legalities": {
"standard": "legal"
},
"gameData": {
"cardType": "OPTION",
"colors": [
"Green"
],
"level": null,
"playCost": 3,
"dp": null,
"attribute": null,
"form": null,
"digimonType": null,
"inheritedEffect": null
}
},
{
"id": "dgm_bt3_072",
"game": "digimon",
"name": "BryweLudramon",
"set": {
"code": "BT3",
"name": [
"BT-03: Booster Union Impact",
"BT01-03: Release Special Booster Ver.1.5"
],
"releasedAt": null
},
"collectorNumber": "BT3-072",
"rarity": "Common",
"artist": null,
"text": null,
"images": {
"small": "/cards/digimon/BT3-072.jpg",
"normal": "/cards/digimon/BT3-072.jpg",
"large": "/cards/digimon/BT3-072.jpg"
},
"prices": [],
"legalities": {
"standard": "legal"
},
"gameData": {
"cardType": "DIGIMON",
"colors": [
"Black"
],
"level": 6,
"playCost": 10,
"dp": 12000,
"attribute": "DATA",
"form": "Mega",
"digimonType": "Armor",
"inheritedEffect": null
}
},
{
"id": "dgm_bt2_030",
"game": "digimon",
"name": "MetalSeadramon",
"set": {
"code": "BT2",
"name": [
"BT-02: Booster Ultimate Power",
"BT01-03: Release Special Booster Ver.1.0",
"BTC-01: Booster Ultimate Evolution",
"Dash Pack Ver. 1.0"
],
"releasedAt": null
},
"collectorNumber": "BT2-030",
"rarity": "Common",
"artist": null,
"text": null,
"images": {
"small": "/cards/digimon/BT2-030.jpg",
"normal": "/cards/digimon/BT2-030.jpg",
"large": "/cards/digimon/BT2-030.jpg"
},
"prices": [],
"legalities": {
"standard": "legal"
},
"gameData": {
"cardType": "DIGIMON",
"colors": [
"Blue"
],
"level": 6,
"playCost": 11,
"dp": 10000,
"attribute": "DATA",
"form": "Mega",
"digimonType": "Cyborg",
"inheritedEffect": null
}
},
{
"id": "dgm_bt1_084",
"game": "digimon",
"name": "Omnimon",
"set": {
"code": "BT1",
"name": [
"BT-01: Booster New Evolution",
"BT-06: Booster Double Diamond",
"BT01-03: Release Special Booster Ver.1.0",
"BTC-01: Booster Ultimate Evolution",
"PB-12E: Digimon Card Game 2nd Anniversary Set",
"Ultimate Cup 2022"
],
"releasedAt": null
},
"collectorNumber": "BT1-084",
"rarity": "Common",
"artist": null,
"text": null,
"images": {
"small": "/cards/digimon/BT1-084.jpg",
"normal": "/cards/digimon/BT1-084.jpg",
"large": "/cards/digimon/BT1-084.jpg"
},
"prices": [],
"legalities": {
"standard": "legal"
},
"gameData": {
"cardType": "DIGIMON",
"colors": [
"White"
],
"level": 7,
"playCost": 15,
"dp": 15000,
"attribute": "VACCINE",
"form": null,
"digimonType": "Holy Warrior",
"inheritedEffect": null
}
},
{
"id": "dgm_bt1_010",
"game": "digimon",
"name": "Agumon",
"set": {
"code": "BT1",
"name": [
"25th Special Memorial Pack",
"BT-01: Booster New Evolution",
"BT01-03: Release Special Booster Ver.1.0",
"BTC-01: Booster Ultimate Evolution",
"Dash Pack Ver. 1.0",
"Memorial Collection 01",
"Memorial Collection 25th Anniversary",
"PB-09: Memorial Collection 01 Playmat",
"RB-01: Resurgence Booster"
],
"releasedAt": null
},
"collectorNumber": "BT1-010",
"rarity": "Common",
"artist": null,
"text": null,
"images": {
"small": "/cards/digimon/BT1-010.jpg",
"normal": "/cards/digimon/BT1-010.jpg",
"large": "/cards/digimon/BT1-010.jpg"
},
"prices": [],
"legalities": {
"standard": "legal"
},
"gameData": {
"cardType": "DIGIMON",
"colors": [
"Red"
],
"level": 3,
"playCost": 3,
"dp": 2000,
"attribute": "VACCINE",
"form": "Rookie",
"digimonType": "Reptile",
"inheritedEffect": null
}
}
],
"meta": {
"page": 1,
"limit": 5,
"totalCount": 6,
"totalPages": 2,
"hasMore": true,
"priceSource": "tcgplayer"
}
}Every card comes back with both a TCGplayer quote in USD and a Cardmarket quote in EUR; the market toggle picks which one the sort and price filters read from. See European pricing for what the EU side covers.
The public sample covers a slice of each game. An API key unlocks the full catalog, and the REST reference documents every filter shown here.