Daily Tarot Draw

🎲 Randomness Generators 🌭🌭 Medium 4,582 calls

The Daily Tarot Draw API pulls a real card from the standard 78-card Rider-Waite tarot deck and interprets it for your specific question or situation. The cards don't know your situation. They have opinions anyway. Supports single card, three-card, and Celtic Cross spreads for those who want more unsolicited cosmic advice.

Try It — No Seriously

Daily Tarot Draw.exe
_ ×
Your question for the cards. They'll answer whether you ask or not.
Spread type: single, three, or celtic_cross. More cards = more confusion.

Parameters

Parameter Type Required Default Description
question string Optional Your question for the cards. They'll answer whether you ask or not.
spread string Optional "single" Spread type: single, three, or celtic_cross. More cards = more confusion.

Examples

curl "https://api.stupidapis.com/tarot-draw/pull?question=Should+I+change+jobs"
import requests

response = requests.get(
    "https://api.stupidapis.com/tarot-draw/pull",
    params={"question": "Should I change jobs"}
)
print(response.json())
const response = await fetch(
  "https://api.stupidapis.com/tarot-draw/pull?question=Should+I+change+jobs"
);
const data = await response.json();
console.log(data);

Response Schema

Field Type Description
card string The drawn card
position string Card position (upright or reversed)
reversed boolean Whether the card is reversed
interpretation string AI interpretation of the card for your situation
advice string Actionable cosmic guidance

Example Response

{
  "card": "The Tower",
  "position": "Upright",
  "reversed": false,
  "interpretation": "The Tower represents sudden upheaval and destruction of the old to make way for the new. In the context of your career question, it suggests that change is coming whether you want it or not.",
  "advice": "Update your resume. Not because of this card — you should just always have an updated resume."
}
...
Clippy