POST/v1/tarot/draw
Draw Tarot Cards
Draw N random unique cards from the 78-card deck using cryptographic randomness. Each API call produces a fresh independent draw. Count must be between 1 and 78. Default: 1. Set allow_reversed=true to enable reversed card orientation (each card independently has a 50% chance of reversal).
Request parameters
countoptional
integer
Number of cards to draw (1-78). Default: 1.
allow_reversedoptional
boolean
If true, each card has a 50% chance of appearing reversed.
Response fields
success
boolean
True if the request succeeded
message
string
Human-readable status message
data
object
data.cards
array[object]
data.cards[].card
object
data.cards[].card.id
string
Unique slug identifier e.g. 'the-fool'
data.cards[].card.name
string
Full card name e.g. 'The Fool'
data.cards[].card.arcana_type
string
'major' or 'minor'
data.cards[].card.suit
string | null
Suit for minor arcana: wands, cups, swords, pentacles. Null for major arcana.
data.cards[].card.number
integer
Card number. Major arcana: 0-21. Minor arcana: 1=Ace, 11=Page, 12=Knight, 13=Queen, 14=King.
data.cards[].card.element
string
Elemental correspondence: fire, water, air, earth, spirit
data.cards[].card.astrology_correspondence
string
Astrological planet or sign correspondence
data.cards[].card.keywords_upright
array[string]
Upright keywords
data.cards[].card.keywords_reversed
array[string]
Reversed keywords
data.cards[].card.upright_meaning
string
Full upright interpretation
data.cards[].card.reversed_meaning
string
Full reversed interpretation
data.cards[].card.yes_no
string
Yes/No polarity: 'yes', 'no', or 'maybe'
data.cards[].card.description
string
Visual description of the card imagery
data.cards[].is_reversed
boolean
True if the card was drawn in reversed orientation
data.cards[].position
string | null
Spread position name e.g. 'past', 'present', 'outcome'
data.cards[].position_meaning
string | null
What this spread position represents
data.cards[].active_meaning
string
The meaning to apply — upright_meaning when is_reversed=False, reversed_meaning when True
data.cards[].active_keywords
array[string]
Active keywords for this orientation
data.count
integer
data.allow_reversed
boolean
Errors
Missing or invalid API key.
Upstream ephemeris service error.
API key tier does not include this endpoint.
Unexpected server error.
Too many requests in a short window.
Request body exceeds the size limit.
Referenced resource was not found.
Request body failed schema validation.