POST V2 $0.004

Numerology API

Calculate comprehensive numerology analysis including Life Path, Destiny, Soul Urge, and Personality numbers from name and birth date.

/v2/astrology/numerology

Overview

Numerology analyzes the vibration of numbers derived from name and birth date. This API calculates:

  • Life Path Number: Core life purpose (from birth date)
  • Destiny Number: Life's mission (from full name)
  • Soul Urge Number: Inner desires (from vowels)
  • Personality Number: How others perceive you (from consonants)
  • Birthday Number: Special talents (birth day only)
  • Personal Year: Current year's theme

Request

curl -X POST "https://api.vedika.io/v2/astrology/numerology" \
  -H "Content-Type: application/json" \
  -H "x-api-key: YOUR_API_KEY" \
  -d '{
    "fullName": "Rahul Kumar Sharma",
    "birthDate": "1990-05-15",
    "system": "pythagorean"
  }'

Parameters

ParameterTypeRequiredDescription
fullNamestringRequiredFull legal name at birth
birthDatestringRequiredBirth date (YYYY-MM-DD)
systemstringOptionalpythagorean (default), chaldean, indian
currentNamestringOptionalCurrent name if different (for comparison)

Response

{
  "success": true,
  "data": {
    "coreNumbers": {
      "lifePath": {
        "number": 3,
        "masterNumber": false,
        "calculation": "1+9+9+0+0+5+1+5 = 30 = 3+0 = 3",
        "meaning": "Creative Expression",
        "description": "You are here to express yourself creatively and inspire others. Natural communicator, artist, and entertainer.",
        "strengths": ["Creative", "Optimistic", "Articulate", "Sociable"],
        "challenges": ["Scattered focus", "Superficiality", "Moodiness"]
      },
      "destiny": {
        "number": 7,
        "calculation": "R(9)+A(1)+H(8)+U(3)+L(3)+K(2)+U(3)+M(4)+A(1)+R(9)+S(1)+H(8)+A(1)+R(9)+M(4)+A(1) = 67 = 6+7 = 13 = 1+3 = 4... (simplified)",
        "meaning": "Seeker of Truth",
        "description": "Your life's mission is to seek wisdom, analyze deeply, and understand life's mysteries.",
        "career": ["Research", "Analysis", "Technology", "Spirituality", "Writing"]
      },
      "soulUrge": {
        "number": 5,
        "fromVowels": "A+U+U+A+A+A = 1+3+3+1+1+1 = 10 = 1",
        "meaning": "Freedom and Adventure",
        "description": "Deep inner desire for freedom, variety, and experiencing life fully."
      },
      "personality": {
        "number": 9,
        "fromConsonants": "R+H+L+K+M+R+S+H+R+M = ...",
        "meaning": "Humanitarian",
        "description": "Others see you as compassionate, broad-minded, and idealistic."
      },
      "birthday": {
        "number": 15,
        "reduced": 6,
        "meaning": "The Nurturer",
        "description": "Natural caretaker with magnetic personality and business acumen."
      }
    },
    "personalCycles": {
      "personalYear": {
        "year": 2026,
        "number": 5,
        "calculation": "2+0+2+6 + birth month (5) + birth day (15=6) = 10+5+6 = 21 = 3... (simplified)",
        "theme": "Change and Freedom",
        "description": "Year of major changes, travel, and breaking free from restrictions.",
        "advice": "Embrace change, explore new opportunities, avoid impulsive decisions"
      },
      "personalMonth": {
        "month": "January 2026",
        "number": 6,
        "theme": "Home and Responsibility"
      }
    },
    "compatibility": {
      "mostCompatible": [1, 5, 7],
      "challenging": [4, 8],
      "note": "Life Path 3 harmonizes well with 1 (inspiration), 5 (adventure), and 7 (depth)"
    },
    "luckyElements": {
      "numbers": [3, 6, 9],
      "days": ["Wednesday", "Friday", "Sunday"],
      "colors": ["Yellow", "Orange", "Pink"],
      "gemstone": "Yellow Sapphire"
    },
    "nameAnalysis": {
      "currentVibration": "Positive alignment between Life Path 3 and Destiny 7",
      "recommendation": "Name supports creative and intellectual pursuits",
      "powerfulLetters": ["R (appears 3 times - leadership energy)"]
    },
    "system": "pythagorean",
    "letterValues": {
      "A": 1, "B": 2, "C": 3, "D": 4, "E": 5, "F": 6, "G": 7, "H": 8, "I": 9,
      "J": 1, "K": 2, "L": 3, "M": 4, "N": 5, "O": 6, "P": 7, "Q": 8, "R": 9,
      "S": 1, "T": 2, "U": 3, "V": 4, "W": 5, "X": 6, "Y": 7, "Z": 8
    }
  },
  "metadata": { "cost": 0.004 }
}

Core Numbers Explained

Life Path (1-9, 11, 22, 33)

Your core identity and life purpose. Calculated from full birth date.

Destiny/Expression

Your life's mission and talents. Calculated from all letters in name.

Soul Urge/Heart's Desire

Your inner motivation and desires. Calculated from vowels only.

Personality

How others perceive you. Calculated from consonants only.

Pricing: $0.004 per request