GET/v1/tarot/card-of-the-day
Card of the Day
Returns a deterministic daily tarot card. The same card is returned for all requests on the same date — seeded by SHA-256 hash of the date string. Optionally provide a date (YYYY-MM-DD) to get the card for any day. Defaults to today.
Request parameters
dateoptional
string | null
Date in YYYY-MM-DD format. Defaults to today.
allow_reversedoptional
boolean
If true, the card may appear reversed (also deterministic by date).
Response fields
success
boolean
True if the request succeeded
message
string
Human-readable status message
data
object
data.date
string
Date for this card in YYYY-MM-DD format
data.card
object
data.card.id
string
Unique slug identifier e.g. 'the-fool'
data.card.name
string
Full card name e.g. 'The Fool'
data.card.arcana_type
string
'major' or 'minor'
data.card.suit
string | null
Suit for minor arcana: wands, cups, swords, pentacles. Null for major arcana.
data.card.number
integer
Card number. Major arcana: 0-21. Minor arcana: 1=Ace, 11=Page, 12=Knight, 13=Queen, 14=King.
data.card.element
string
Elemental correspondence: fire, water, air, earth, spirit
data.card.astrology_correspondence
string
Astrological planet or sign correspondence
data.card.keywords_upright
array[string]
Upright keywords
data.card.keywords_reversed
array[string]
Reversed keywords
data.card.upright_meaning
string
Full upright interpretation
data.card.reversed_meaning
string
Full reversed interpretation
data.card.yes_no
string
Yes/No polarity: 'yes', 'no', or 'maybe'
data.card.description
string
Visual description of the card imagery
data.is_reversed
boolean
data.active_meaning
string
data.active_keywords
array[string]
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.