การอ่านไพ่ 3 ใบ¶
การอ่านไพ่ 3 ใบ ให้ข้อมูลเชิงลึกเกี่ยวกับ อดีต, ปัจจุบัน และอนาคตของคุณ เป็นการดึงไพ่ 3 ใบ ซึ่งสะท้อนถึงอิทธิพล, ความท้าทาย และคำแนะนำ โดยปรับให้เข้ากับชื่อและวันเกิดของคุณ
ใช้การอ่านนี้เพื่อ ได้รับความชัดเจน, พิจารณาแนวโน้ม และเตรียมพร้อมสำหรับวงจรที่จะเกิดขึ้น
Endpoint (จุดปลาย)¶
| วิธี | เส้นทาง |
|---|---|
GET | https://api.numerologyapi.com/api/v1/tarot/reading |
POST | https://api.numerologyapi.com/api/v1/tarot/reading |
Header ที่จำเป็น¶
คุณยังสามารถยืนยันตัวตนด้วย
Authorization: Bearer YOUR_API_KEYได้ สร้างและจัดการ API key ใน แดชบอร์ด Numerology API
Parameters (พารามิเตอร์)| พารามิเตอร์ | ประเภท | จำเป็น | คำอธิบาย |¶
| -------- | ------ | -------- | ----------------------------------------------------------------------------------------------- | | 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 คือการ์ดกลับแบบทั่วไป * การ์ดจะถูกแสดงในลำดับ อดีต → ปัจจุบัน → อนาคต*