← Underhållning

Slumpmässigt tarotkort

GET /tarot/random

Dra ett slumpmässigt tarotkort från den fullständiga leken på 78 kort (22 Major Arcana och 56 Minor Arcana). Returnerar kortets namn, arkana-typ, färg (för Minor Arcana), nummer, upprättstående och omvänd betydelse samt beskrivning. Varje dragning är slumpmässig och oberoende. Användbart för dagliga tarotläsningsappar, divinationsverktyg, underhållningsfunktioner för spådom och mysticism-tema-spel eller skrivuppgifter.

Se det visualiserat

Exempelförfrågningar

Grundläggande användning
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

Livesvar

{
  "count": 1,
  "data": [
    {
      "desc": "A dark, cloaked figure, looking sideways at three prone cups two others stand upright behind him; a bridge is in the background, leading to a small keep or holding. Divanatory Meanings: It is a card of loss, but something remains over; three have been taken, but two are left; it is a card of inheritance, patrimony, transmission, but not corresponding to expectations; with some interpreters it is a card of marriage, but not without bitterness or frustration. Reversed: News, alliances, affinity, consanguinity, ancestry, return, false projects",
      "meaning_rev": "News, alliances, affinity, consanguinity, ancestry, return, false projects.",
      "meaning_up": "A dark, cloaked figure, looking sideways at three prone cups two others stand upright behind him; a bridge is in the background, leading to a small keep or holding. Divanatory Meanings: It is a card of loss, but something remains over; three have been taken, but two are left; it is a card of inheritance, patrimony, transmission, but not corresponding to expectations; with some interpreters it is a card of marriage, but not without bitterness or frustration.",
      "name": "Five of Cups",
      "name_short": "cu05",
      "suit": "cups",
      "type": "minor",
      "value": "five"
    }
  ],
  "success": true
}