Skip to content

Card reference

A card reference contains the minimal amount of information in order to uniquely identify a card. It cannot exist as a resource on its own.

Property Type Is required Description
cardId string|null No See CMS.
cardName string|null No
expansion Expansion Yes
cardNumber string|null Yes
cardNumberSortingOrder int32|null No
cardRarity string|null No
isCardRaritySet boolean No Defaults to false. Because not all cards have a rarity, this property is required to indicate if a null value means the card has no rarity (true) or the property isn't set (false).
cardIllustrators string[]|null No

Example

{
  "cardName": "Chansey",
  "expansion": {
    "name": "Base Set",
    "series": "Original Series",
    "tcgRegion": "International",
    "codes": [
      "BS"
    ],
    "releaseDate": "1999-01-09T00:00:00Z",
    "cardNumberRightPart": "102"
  },
  "cardNumber": "3/102",
  "cardNumberSortingOrder": 3,
  "cardRarity": "Rare Holo",
  "isCardRaritySet": true,
  "cardIllustrators": [
    "Ken Sugimori"
  ]
}