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 SWU cards, we store the following metadata fields:
Text
string
optional
The card’s main effect or rules text.
Cost
string
optional
Resource cost to play the card.
HP
string
optional
Hit points value shown on the card.
Power
string
optional
Power value shown on the card.
Traits
string[]
optional
Trait keywords associated with the card.
Arenas
string[]
optional
Arena categories where the card can be used.
Aspects
string[]
optional
Aspect affiliations tied to the card.
{
  // additional item properties omitted
  "urn": "urn:managem:star-wars-unlimited:set/2025-promo/card/103",
  "metadata": [
    {
      "name": "Text",
      "value": "Ambush\n\nWhen Played: Search the top 10 cards of your deck for any number of [Villainy] units with combined cost 3 or less and play each of them for free."
    },
    {
      "name": "Cost",
      "value": "7"
    },
    {
      "name": "HP",
      "value": "7"
    },
    {
      "name": "Power",
      "value": "5"
    },
    {
      "name": "Traits",
      "detail": [
        "Force",
        "Imperial",
        "Sith"
      ]
    },
    {
      "name": "Arenas",
      "detail": [
        "Ground"
      ]
    },
    {
      "name": "Aspects",
      "detail": [
        "Command",
        "Villainy"
      ]
    }
  ]
}