ExternalIds

IDs this product carries on other marketplaces and card databases. Use these to bridge with existing Cardmarket / TCGplayer integrations or external card data sources.

  • cardmarket
    Type: array object[]

    Cardmarket product IDs, one per finish. Empty / absent if no Cardmarket mapping exists for this product.

    • finish
      Type: string enum
      required

      Which finish this id maps to (e.g. Standard, Foil).

      values
      • Standard

        A standard, non-foil card.

      • Foil

        A foil card.

      • Rainbow
      • Gold
      • Rainbow Foil
    • id
      Type: integer
      min:  
      0
      max:  
      9007199254740991
      required

      The Cardmarket or TCGplayer product id for this finish.

  • dreambornId
    Type: string

    The card's Dreamborn id. Disney Lorcana cards only.

  • fabId
    Type: string

    The card's FAB id. Flesh and Blood cards only.

  • konamiId
    Type: string

    The card's Konami id. Yu-Gi-Oh! cards only.

  • riotId
    Type: string

    The card's Riot id. Riftbound cards only.

  • scryfallId
    Type: string

    This printing's Scryfall id. Magic: The Gathering cards only.

  • scryfallOracleId
    Type: string

    The card's Scryfall oracle id, shared by every printing of the card. Magic: The Gathering cards only.

  • tcgplayer
    Type: array object[]

    TCGplayer product IDs, one per finish. Empty / absent if no TCGplayer mapping exists for this product.

    • finish
      Type: string enum
      required

      Which finish this id maps to (e.g. Standard, Foil).

      values
      • Standard

        A standard, non-foil card.

      • Foil

        A foil card.

      • Rainbow
      • Gold
      • Rainbow Foil
    • id
      Type: integer
      min:  
      0
      max:  
      9007199254740991
      required

      The Cardmarket or TCGplayer product id for this finish.

Examples
{
  "cardmarket": [
    {
      "finish": "Standard",
      "id": 1234
    },
    {
      "finish": "Foil",
      "id": 1235
    }
  ],
  "tcgplayer": [
    {
      "finish": "Standard",
      "id": 567890
    }
  ],
  "scryfallId": "ff1b8fc5-604a-4449-a73d-861e53642a70",
  "scryfallOracleId": "b7ad39b3-5d10-45a4-99ae-30972ea6ac42"
}