Skip to content
Crypto-only, prepaid. Top up a balance and we draw from it monthly — nothing is ever charged automatically.
tcggraph

Ravensburger · since 2023

Disney Lorcana API

Six ink colours, inkable status, lore value, strength, willpower and classifications for every card and Enchanted variant.

1,720
Cards
5,480
Printings
12
Sets
5
Languages

Overview

What the Lorcana dataset covers

Disney Lorcana climbed to fifth place in quarterly sales in 2026 and has become the standout mainstream entrant of the decade. TCGGraph models ink cost, inkability, ink colour, lore value, strength, willpower, move cost, classifications and song abilities, and treats every Enchanted, Special and foil treatment as an individually priced printing.

Sourced from Lorcast, Ravensburger set lists and TCGplayer.

Formats

  • Core Constructed
  • Infinity Constructed

Price sources

  • TCGplayer
  • Cardmarket
REST
curl -G "https://api.tcggraph.com/v1/cards" \
  -d game=disney-lorcana \
  -d limit=5 \
  -H "Authorization: Bearer $TCGGRAPH_KEY"
GraphQL
{
  cards(
    game: LORCANA
    filter: { ink: AMETHYST, inkCost: { lte: 3 } }
  ) {
    nodes {
      name
      lorcana { lore strength willpower inkable }
    }
  }
}

Schema

Lorcana-specific fields

Every card carries the shared core fields. These live under gameData in REST, and under the typed lorcana field in GraphQL.

FieldTypeDescription
inkCostIntInk required to play the card.
inkableBooleanWhether the card can be put into the inkwell.
inkEnumAmber, Amethyst, Emerald, Ruby, Sapphire or Steel.
loreIntLore gained when questing.
strengthIntCharacter strength.
willpowerIntCharacter willpower.
cardTypeEnumCHARACTER, ACTION, ITEM, LOCATION or SONG.
classifications[String]Storyborn, Dreamborn, Floodborn, Hero, Villain, Sorcerer…
moveCostIntInk cost to move a character to a Location.

Plus 21 core fields shared by every game — see the full reference.

Live data

Lorcana cards in the public dataset

Real records returned by the API right now, sorted by market value, with both the American and the European quote.

CardSetNumberRarityTCGplayerCardmarket
Lilo & Stitch — Fun-Loving FriendsAttack of the Vine!31Super_rare$1.86€1.69
Mickey Mouse — Amber ChampionWhispers in the Well23Rare$1.00€0.87
Maleficent — Biding Her TimeThe First Chapter48Rare$0.64€0.48
Belle — Accomplished MysticFabled40Super_rare$0.56€0.43
Ursula — Created by the VineAttack of the Vine!26Rare$0.14€0.15
Elsa — Concerned SisterWinterspell125Uncommon$0.13€0.10
Rapunzel — Appreciative ArtistUrsula's Return153Rare$0.13€0.13
Simba — Adventurous SuccessorShimmering Skies125Common$0.05€0.05

The European market for Lorcana

Ravensburger is a German publisher, and Lorcana's European distribution is unusually deep as a result. This is one of the few games where European prices sit consistently below American ones across the whole catalog rather than only on localised printings.

Traded on Cardmarket in German, French, Italian, Spanish beyond English. How European pricing works.

Sets

Notable Lorcana sets

  • TFC

    The First Chapter

    216 cards · 2023-08-18

  • ROF

    Rise of the Floodborn

    216 cards · 2023-11-17

  • AZS

    Azurite Sea

    214 cards · 2025-05-30

  • WHM

    Whispers in the Well

    204 cards · 2026-05-29

Modelling

Working with Lorcana data

The decisions that catch people out when they first integrate Lorcana. Each of these is a bug we have watched somebody ship.

  • The subtitle is part of the identity

    Elsa - Snow Queen and Elsa - Spirit of Winter are different cards with different costs and abilities, and a deck may contain four of each. Matching on the base name alone will merge cards that the rules keep apart. Always compare the full name including the version.

  • Inkable is a deckbuilding constraint, not a cosmetic

    The border tells you whether a card can be put into the inkwell as a resource. An uninkable card is strictly less flexible, and any curve or resource calculation that ignores the flag will overstate how playable a deck is. It is a boolean on every card and it matters.

  • Lore is the win condition, not a stat

    Lore is how much a character generates when questing, and twenty lore ends the game. It is not a power level. Sorting by lore descending gives you the fastest clocks in the format, which is a genuinely useful query and not at all the same as sorting by strength.

  • Enchanted printings share a number

    Enchanted rarity cards are alternate treatments of an existing card, carrying a collector number above the set total. They are the same card for deckbuilding and a completely different card for pricing, often by two orders of magnitude.

Recipes

Common Lorcana queries

Three requests that cover most of what applications in this game actually ask for.

Fast questing characters on a budget

Aggressive decks want high lore for low ink. Two numeric filters and a sort.

inkable is a boolean filter, and leaving it off returns both kinds.

GET /v1/cards
  ?game=disney-lorcana
  &maxCost=3
  &minLore=2
  &inkable=true
  &sort=lore:desc

Everything in one ink colour

Decks use at most two inks, so the colour filter is the first thing most builders apply.

Classifications drive most tribal synergies and are indexed for filtering.

GET /v1/cards
  ?game=disney-lorcana
  &ink=Amethyst
  &classifications=Sorcerer
  &limit=100

Enchanted cards by market value

The chase cards for a collection tracker or a singles storefront.

Enchanted printings are separate records, so prices do not blend with the base card.

GET /v1/cards
  ?game=disney-lorcana
  &rarity=Enchanted
  &include=prices,set
  &sort=prices.market:desc

Glossary

Lorcana terms, and the fields that hold them

What players call a thing on the left, what you query on the right.

TermFieldNotes
Ink costlorcana.costInk required to play the card. The primary curve axis.
Inkablelorcana.inkableWhether the card may be placed in the inkwell as a resource. Boolean.
Lorelorcana.loreLore gained when this character quests. Twenty wins the game.
Strength / Willpowerlorcana.strengthCombat stats. Willpower is damage capacity rather than defence.
Ink colourlorcana.inkAmber, Amethyst, Emerald, Ruby, Sapphire or Steel. Decks use at most two.
Classificationslorcana.classifications[]Storyborn, Dreamborn, Floodborn, Hero, Villain, Princess and so on.
Versionlorcana.versionThe subtitle after the dash. Part of the card's identity, not decoration.

FAQ

Lorcana API questions

Anything not covered here, email hello@tcggraph.com and a human who knows Lorcana answers.

Also available

Add another game without another integration

Your Lorcana key already works for every other game in the catalog. Change the DISNEY_LORCANA enum and the rest of your code stays as it is.