3-कार्ड टैरो रीडिंग¶
3-कार्ड टैरो रीडिंग आपको अपने अतीत, वर्तमान और भविष्य के बारे में जानकारी प्रदान करता है। यह तीन कार्ड निकालता है जो प्रभावों, चुनौतियों और मार्गदर्शन को दर्शाते हैं, जिन्हें आपके नाम और जन्मतिथि के आधार पर अनुकूलित किया जाता है।
इस रीडिंग का उपयोग स्पष्टता प्राप्त करने, पैटर्न पर विचार करने और आगामी चक्रों की तैयारी के लिए करें।
एंडपॉइंट¶
| विधि | पथ |
|---|---|
GET | https://api.numerologyapi.com/api/v1/tarot/reading |
POST | https://api.numerologyapi.com/api/v1/tarot/reading |
आवश्यक हेडर¶
आप
Authorization: Bearer YOUR_API_KEYके साथ भी प्रमाणीकरण कर सकते हैं। टैरो एपीआई डैशबोर्ड में एपीआई कुंजियों का निर्माण और प्रबंधन करें।
पैरामीटर| पैरामीटर | प्रकार | आवश्यक | विवरण |¶
| -------- | ------ | -------- | ----------------------------------------------------------------------------------------------- | | name | स्ट्रिंग | हाँ | आपका पूरा नाम। इसका उपयोग रीडिंग को निजीकृत करने के लिए किया जाता है। | | dob | स्ट्रिंग | हाँ | जन्म तिथि YYYY-MM-DD प्रारूप में। | | mode | स्ट्रिंग | नहीं | random (डिफ़ॉल्ट) या daily। दैनिक मोड ड्रॉ को समान कार्ड सुनिश्चित करने के लिए बीज देता है। |
प्रतिक्रियाओं को स्थानीय बनाने के लिए वैकल्पिक
langक्वेरी पैरामीटर जोड़ें। समर्थित मान:en,es,de,fr,pt।
उदाहरण अनुरोध¶
GET अनुरोध¶
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 अनुरोध (JSON बॉडी)¶
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"
}'
प्रतिक्रिया का उदाहरण¶
{
"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": ""
}
}
!!! ध्यान दें mode=daily आपके नाम, जन्मतिथि और वर्तमान तिथि के आधार पर कार्डों को खींचने में मदद करता है - जो लगातार दैनिक मार्गदर्शन प्रदान करता है। * प्रत्येक कार्ड का reversed स्थिति इसके अर्थ को बदल सकती है। * image_url कार्ड की छवि प्रदान करता है; card_backcover एक सामान्य उलट कार्ड है। * कार्ड अतीत → वर्तमान → भविष्य* क्रम में लौटाए जाते हैं।