Numerology Report
Generate a complete numerology profile — driver, conductor, soul, personality, destiny — from name and DOB.
Vedic + Chaldean numerology with master-number preservation (11/22/33).
What you'll build
- 5-number numerology profile (Driver / Conductor / Soul / Personality / Destiny)
- Master numbers (11, 22, 33) preserved instead of reduced
- Lucky number, lucky day, lucky stone for each profile
- One unified report endpoint OR 5 individual endpoints for app-level caching
Build this with AI
Copy the full prompt below, paste it into ChatGPT, Claude, Cursor, or Lovable, and get a working Next.js implementation in minutes. No coding skill required.
Step by step
01Use the one-shot endpoint
For most apps just call /v1/numerology/full — it returns all 5 numbers + their interpretations in a single 2-credit response.
curl "https://api.divyastroapi.com/v1/numerology/full?name=Vikas%20Sharma&dob=1986-12-27" \
-H "Authorization: Bearer dv_live_..."{
"driver": { "number": 9, "is_master": false, "lucky_day": "Tuesday" },
"conductor": { "number": 7, "is_master": false },
"soul": { "number": 5, "is_master": false },
"personality": { "number": 22, "is_master": true },
"destiny": { "number": 4, "is_master": false }
}02Or call the 5 sub-endpoints individually
If you want to cache each number separately, call /driver, /conductor, /soul, /personality, /destiny — each costs 1 credit. Useful when the user can edit name vs DOB independently.
03Combine with the numerology PDF report
For a polished customer-facing deliverable, call /v1/reports/numerology — a 10-page PDF/JSON report (19 credits) with full interpretations, lucky stones, mantras.
APIs used in this recipe
/v1/numerology/fullSingle call returns all 5 numbers.
/v1/numerology/driverJust the driver number (DOB digit-sum).
/v1/numerology/destinyDestiny number from full name.
/v1/reports/numerology10-page polished report.
Next, try building
Ready to try? You get 500 free credits — no card needed.
Sign up for free