OrbTop

Disney Lorcana Cards API Wrapper (Lorcast)

ECOMMERCEGAMES

Disney Lorcana Cards API Wrapper (Lorcast)

Fetch complete Disney Lorcana card data from the Lorcast open API. No API key or authentication required.

What it does

Returns full card records for Disney Lorcana — the fastest-growing modern TCG since its 2023 launch. Covers all cards across every set, with prices, images, stats, keywords, classifications, and legalities.

Powered by Lorcast, the open community card API for Disney Lorcana (analogous to Scryfall for Magic: The Gathering and PokémonTCG.io for Pokémon).

Modes

Mode Description Required input
all_cards Full catalog walk — fetches every card across all sets (none)
set All cards from one specific set setId (Lorcast set ID or short code like "1", "TFC")
search Free-text search using Lorcast's query syntax query
card_ids Specific cards by Lorcast card ID cardIds (array)

Search query examples

  • elsa — all Elsa cards
  • ink:ruby rarity:legendary — Legendary Ruby cards
  • type:character classifications:hero — Hero characters

Output fields

Field Type Description
lorcast_id string Lorcast unique card ID
name string Card name
version string Card version/subtitle (e.g. "Concerned Sister")
set_code string Set code (e.g. "1", "TFC")
set_name string Full set name
collector_number string Collector number within the set
rarity string Card rarity
ink string Primary ink color
inks string All ink colors (pipe-separated)
cost integer Ink cost to play
inkwell boolean Whether the card can be inked
type string Card types (pipe-separated)
classifications string Character classifications (pipe-separated)
strength integer Character strength
willpower integer Character willpower
lore integer Lore value
move_cost integer Location move cost
keywords string Card keywords (pipe-separated)
text string Rules text
flavor_text string Flavor text
illustrators string Illustrators (pipe-separated)
layout string Card layout
lang string Language code
released_at string Release date (YYYY-MM-DD)
price_usd number Market price (non-foil, USD)
price_usd_foil number Market price (foil, USD)
image_small_url string Small card image URL
image_normal_url string Normal card image URL
image_large_url string Large card image URL
legalities string Format legalities (e.g. "core:legal")
tcgplayer_id integer TCGPlayer product ID

Usage tips

  • Start with mode: set and a set code (e.g. "1" for The First Chapter) for a quick first run.
  • Use mode: all_cards to pull the full ~2,000+ card catalog. Set maxItems: 0 for unlimited.
  • Prices are sourced from Lorcast's aggregated market data and refresh frequently.
  • The actor is polite to the Lorcast community API — it includes automatic rate-limit handling and a small delay between requests.