← Entertainment

Random Tarot Card

GET /tarot/random

Draw a random tarot card from the full 78-card deck (22 Major Arcana and 56 Minor Arcana). Returns the card name, arcana type, suit (for Minor Arcana), number, upright and reversed meanings, and description. Each draw is random and independent. Useful for daily tarot reading apps, divination tools, fortune-telling entertainment features, and mysticism-themed games or creative writing prompts.

See it visualized

Example Requests

Basic usage
curl https://nordapi.ee/api/v1/tarot/random
Draw a random tarot card
curl https://nordapi.ee/api/v1/tarot/random
Get your daily tarot reading
curl https://nordapi.ee/api/v1/tarot/random
Draw another card
curl https://nordapi.ee/api/v1/tarot/random

Live Response

{
  "count": 1,
  "data": [
    {
      "desc": "The face suggests that of a dark woman, whose qualities might be summed up in the idea of greatness of soul; she has also the serious cast of intelligence; she contemplates her symbol and may see worlds therein.",
      "meaning_rev": "Evil, suspicion, suspense, fear, mistrust.",
      "meaning_up": "Opulence, generosity, magnificence, security, liberty.",
      "name": "Queen of Pentacles",
      "name_short": "pequ",
      "suit": "pentacles",
      "type": "minor",
      "value": "queen"
    }
  ],
  "success": true
}