← 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 card represents motion through the immovable-a flight of wands through an open country; but they draw to the term of their course. That which they signify is at hand; it may be even on the threshold.",
      "meaning_rev": "Arrows of jealousy, internal dispute, stingings of conscience, quarrels; and domestic disputes for persons who are married.",
      "meaning_up": "Activity in undertakings, the path of such activity, swiftness, as that of an express messenger; great haste, great hope, speed towards an end which promises assured felicity; generally, that which is on the move; also the arrows of love.",
      "name": "Eight of Wands",
      "name_short": "wa08",
      "suit": "wands",
      "type": "minor",
      "value": "eight"
    }
  ],
  "success": true
}