← Entretenimiento

Carta de tarot aleatoria

GET /tarot/random

Saque una carta de tarot al azar de la baraja completa de 78 cartas (22 arcanos mayores y 56 arcanos menores). Devuelve el nombre de la carta, el tipo de arcano, el palo (para arcanos menores), el número, los significados al derecho y al revés y una descripción. Cada extracción es aleatoria e independiente. Útil para aplicaciones de lectura diaria de tarot, herramientas de adivinación, secciones de entretenimiento de pronósticos y juegos o consignas de escritura creativa con temática mística.

Véalo visualizado

Ejemplos de solicitudes

Uso basico
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

Respuesta en vivo

{
  "count": 1,
  "data": [
    {
      "desc": "A lithe, active figure holds a sword upright in both hands, while in the act of swift walking. He is passing over rugged land, and about his way the clouds are collocated wildly. He is alert and lithe, looking this way and that, as if an expected enemy might appear at any moment.",
      "meaning_rev": "More evil side of these qualities; what is unforeseen, unprepared state; sickness is also intimated.",
      "meaning_up": "Authority, overseeing, secret service, vigilance, spying, examination, and the qualities thereto belonging.",
      "name": "Page of Swords",
      "name_short": "swpa",
      "suit": "swords",
      "type": "minor",
      "value": "page"
    }
  ],
  "success": true
}