Zum Inhalt

3-Karten Tarot-Lesung

Die 3-Karten Tarot-Lesung bietet Einblicke in Ihre Vergangenheit, Gegenwart und Zukunft. Sie zieht drei Karten, die Einflüsse, Herausforderungen und Orientierung widerspiegeln und dabei auf Ihre Namen und Geburtsdatum zugeschnitten sind.

Verwenden Sie diese Lesung, um Klarheit zu gewinnen, Muster zu reflektieren und sich auf kommende Zyklen vorzubereiten.


Endpunkt

Methode Pfad
GET https://api.numerologyapi.com/api/v1/tarot/reading
POST https://api.numerologyapi.com/api/v1/tarot/reading

Erforderliche Header

X-API-Key: YOUR_API_KEY
Content-Type: application/json   (POST only)
Host: api.numerologyapi.com

Sie können sich auch mit Authorization: Bearer YOUR_API_KEY authentifizieren.

Erstellen und verwalten Sie API-Schlüssel im Numerology API Dashboard.


Parameter

Param Typ Erforderlich Beschreibung
name string Ja Ihr vollständiger Name. Wird zur Personalisierung der Lesung verwendet.
dob string Ja Geburtsdatum im Format YYYY-MM-DD.
mode string Nein random (Standard) oder daily. Der "Daily Mode" sorgt für gleiche Karten für denselben Tag.

Fügen Sie den optionalen Abfrageparameter lang hinzu, um die Antworten zu lokalisieren. Unterstützte Werte: en, es, de, fr, pt.

Beispielanfragen

GET-Anfrage

curl --request GET \
  --url "https://api.numerologyapi.com/api/v1/tarot/reading?name=John+Doe&dob=1992-07-16&mode=random&lang=en" \
  --header "X-API-Key: YOUR_API_KEY"

POST-Anfrage (JSON-Body)

curl --request POST \
  --url "https://api.numerologyapi.com/api/v1/tarot/reading?lang=en" \
  --header "X-API-Key: YOUR_API_KEY" \
  --header "Content-Type: application/json" \
  --data '{
  "name": "John Doe",
  "dob": "1992-07-16",
  "mode": "random"
}'

Beispielantwort

{
  "status": "success",
  "mode": "random",
  "name": "john doe",
  "dob": "1992-07-16",
  "timestamp": "2026-02-28T06:36:43.165542",
  "reading": [
    {
      "position": "past",
      "card": "Nine of Wands",
      "reversed": true,
      "image_url": "https://res.cloudinary.com/ds64xs2lp/image/upload/v1746909654/Wands09_REVERSED_c1lzc8.png",
      "meaning": "Reversed, the Nine of Wands suggests burnout, defensiveness, or giving up too soon. Reassess your limits—are you fighting the right battles or exhausting yourself unnecessarily?"
    },
    {
      "position": "present",
      "card": "Queen of Pentacles",
      "reversed": false,
      "image_url": "https://res.cloudinary.com/ds64xs2lp/image/upload/v1746909601/Pentacles13_gcz6tw.png",
      "meaning": "The Queen of Pentacles is nurturing, practical, and abundant. Upright, she embodies care for home, finances, and well-being. She balances work and family effortlessly and offers warmth and security to others."
    },
    {
      "position": "future",
      "card": "Page of Pentacles",
      "reversed": false,
      "image_url": "https://res.cloudinary.com/ds64xs2lp/image/upload/v1746909597/Pentacles11_hbj9js.png",
      "meaning": "The Page of Pentacles is a messenger of opportunity, learning, and ambition. Upright, it signifies a student mindset, practical planning, and the start of a new venture or career path. You're ready to invest in your goals."
    }
  ],
  "card_backcover": "https://res.cloudinary.com/ds64xs2lp/image/upload/v1746909534/backcover_dgkxji.png",
  "_enterprise": {
    "client": "The Numerology API",
    "plan": "Enterprise",
    "request_id": "20bb36de5d26843f",
    "quota": "unlimited",
    "usage_tracking": true
  },
  "_api_metadata_": {
    "api_name": "The Numerology API by Dakidarts®",
    "api_version": "0.1.1",
    "endpoint_name": "tarot_reading",
    "endpoint_description": "Generates a tarot card reading with interpretations and guidance.",
    "developer": "Dakidarts®",
    "copyright": "© 2026 Dakidarts®. All rights reserved.",
    "documentation_url": "https://docs.numerologyapi.com/",
    "response_timestamp": "2026-02-28T07:36:43.169490+01:00",
    "data_source": "Internal Engine / Astro Numerology Interpretation Engine (ANIE)",
    "cacheable_status": true,
    "report_issue": "https://github.com/dakidarts/the-numerology-api/issues",
    "response_language": "en",
    "supported_languages": [
      "en",
      "es",
      "de",
      "fr",
      "pt"
    ],
    "notes": ""
  }
}

Dashboard öffnen


Anmerkung

  • mode=daily steuert die Ziehung der Karten basierend auf Ihrem Namen, Ihrem Geburtsdatum und dem aktuellen Datum – und bietet so konsistente tägliche Orientierung.
  • Der Status der einzelnen Karten (reversed) kann ihre Interpretation verändern.
  • image_url zeigt das Kartendesign; card_backcover ist die Standard-Umkehr-Karte.
  • Die Karten werden in der Reihenfolge Vergangenheit → Gegenwart → Zukunft zurückgegeben.

Verwandte Endpunkte