Skip to main content
Each card in our catalog stores metadata properties extracted from the card, specific to the game. This metadata is stored inside the item data returned from our APIs. You can read more about our item structure in Item Structure.
For Lorcana cards, we store the following metadata fields:
Clarifications
string[]
optional
Extra clarification notes for card text.
Abilities
object[]
optional
Ability details for the card.
Effects
object[]
optional
Effect details related to the card.
Code
string
The card’s set/code identifier.
Color
string
Primary ink color for the card.
Colors
string[]
optional
All ink colors associated with the card.
Cost
number
Ink cost to play the card.
Lore
number
optional
Lore value the card can gain.
Move Cost
number
optional
Cost to move to a location, when applicable.
KeyworldAbilities
string[]
optional
Keyword abilities associated with the card.
Inkwell
string
optional
Whether the card can be placed into the inkwell.
Willpower
number
optional
Willpower value shown on the card.
Strength
number
optional
Strength value shown on the card.
Story
string
Story grouping associated with the card.
MaxCopiesInDeck
number
Maximum allowed copies in a deck.
Subtypes
string[]
optional
Subtype labels for the card.
Type
string
The card’s type classification.
{
  // additional item properties omitted
  "urn": "urn:managem:lorcana:set/the-first-chapter/card/113",
  "metadata": [
    {
      "name": "Clarifications"
    },
    {
      "name": "Abilities",
      "detail": [
        {
          "name": "DRAGON FIRE",
          "type": "triggered",
          "effect": "When you play this character, you may banish chosen character.",
          "fullText": "DRAGON FIRE When you play this character,\nyou may banish chosen character."
        }
      ]
    },
    {
      "name": "Effects"
    },
    {
      "name": "Code",
      "value": "1P"
    },
    {
      "name": "Color",
      "value": "Ruby"
    },
    {
      "name": "Colors"
    },
    {
      "name": "Cost",
      "value": 9
    },
    {
      "name": "Lore",
      "value": 2
    },
    {
      "name": "Move Cost"
    },
    {
      "name": "KeyworldAbilities"
    },
    {
      "name": "Inkwell",
      "value": "Yes"
    },
    {
      "name": "Willpower",
      "value": 5
    },
    {
      "name": "Strength",
      "value": 7
    },
    {
      "name": "Story",
      "value": "Sleeping Beauty"
    },
    {
      "name": "MaxCopiesInDeck",
      "value": 4
    },
    {
      "name": "Subtypes",
      "detail": [
        "Storyborn",
        "Villain",
        "Dragon"
      ]
    },
    {
      "name": "Type",
      "value": "Character"
    }
  ]
}