Pythagorean & Chaldean | AI Interpretations | FREE Sandbox

Numerology API for Developers

Life Path | Destiny | Soul Urge | Personality | Compatibility

Calculate all core numerology numbers via REST API. Get Life Path from birth date, Destiny from full name, and compatibility between two people. Supports Pythagorean and Chaldean systems with AI-powered interpretations.

FREE Sandbox
6 Numerology Endpoints
Plans from $12/mo

Six Numerology Endpoints

Every numerology calculation your app needs

Life Path Number

Calculate the Life Path number from birth date. Reveals life purpose, natural talents, and core personality traits.

/v2/astrology/numerology/life-path

Destiny Number

Calculate the Destiny (Expression) number from full name. Reveals goals, ambitions, and potential achievements.

/v2/astrology/numerology/destiny

Soul Urge Number

Calculate the Soul Urge (Heart's Desire) number from vowels in the name. Reveals inner motivations and desires.

/v2/astrology/numerology/soul-urge

Personality Number

Calculate the Personality number from consonants in the name. Reveals how others perceive you.

/v2/astrology/numerology/personality

Complete Profile

Get all numerology numbers in a single API call. Life Path, Destiny, Soul Urge, and Personality together.

/v2/astrology/numerology/complete

Compatibility

Numerological compatibility analysis between two people. Compare Life Path and Destiny numbers for relationship insights.

/v2/astrology/numerology/compatibility

Why Vedika for Numerology?

The most complete numerology API on the market

Feature
Vedika Vedika API
Competitors
Numerology Endpoints 6 dedicated endpoints 1-2 generic
Calculation Systems Pythagorean + Chaldean Pythagorean only
AI Interpretation
Compatibility Analysis
Astrology + Numerology Bundle 140+ endpoints total Numerology only
Free Sandbox Unlimited (mock data) Limited / None

Simple Integration

Get numerology data in seconds

cURL
curl -X POST https://api.vedika.io/v2/astrology/numerology/life-path \
  -H "Authorization: Bearer your_api_key" \
  -H "Content-Type: application/json" \
  -d '{
    "date_of_birth": "1990-05-15"
  }'

# Complete profile (all numbers at once)
curl -X POST https://api.vedika.io/v2/astrology/numerology/complete \
  -H "Authorization: Bearer your_api_key" \
  -H "Content-Type: application/json" \
  -d '{
    "full_name": "Arjun Sharma",
    "date_of_birth": "1990-05-15"
  }'
Python
from vedika import VedikaClient

client = VedikaClient("your_api_key")

# Life Path number
life_path = client.numerology.life_path(
    date_of_birth="1990-05-15"
)
print(f"Life Path: {life_path.number}")
print(f"Meaning: {life_path.meaning}")

# Complete profile
profile = client.numerology.complete(
    full_name="Arjun Sharma",
    date_of_birth="1990-05-15"
)
print(f"Destiny: {profile.destiny}")
print(f"Soul Urge: {profile.soul_urge}")
JavaScript
const Vedika = require('vedika');
const client = new Vedika('your_api_key');

// Life Path number
const lifePath = await client.numerology.lifePath({
  dateOfBirth: '1990-05-15'
});
console.log('Life Path:', lifePath.number);

// Compatibility
const compat = await client.numerology.compatibility({
  person1: { name: 'Arjun', dob: '1990-05-15' },
  person2: { name: 'Priya', dob: '1992-08-20' }
});
console.log('Score:', compat.score);
Sample Response
{
  "life_path": {
    "number": 7,
    "meaning": "The Seeker",
    "traits": ["analytical", "introspective",
               "spiritual", "intellectual"],
    "career": ["researcher", "analyst",
               "philosopher", "scientist"],
    "compatibility": [3, 5, 7]
  },
  "destiny": {
    "number": 5,
    "meaning": "The Adventurer"
  },
  "soul_urge": { "number": 3, "meaning": "The Communicator" },
  "personality": { "number": 2, "meaning": "The Diplomat" },
  "system": "pythagorean"
}

Pricing

Wallet-based credits. All 140+ endpoints included.

Starter

$12/mo
  • 300 credits/month
  • 140+ endpoints
Get Started
POPULAR

Pro

$60/mo
  • 1,500 credits/month
  • AI chatbot included
Get Started

Business

$120/mo
  • 3,000 credits/month
  • Priority support
Get Started

Enterprise

$240/mo
  • 6,000 credits/month
  • White labeling
Contact Sales

Frequently Asked Questions

Start Using Numerology API Today

FREE Sandbox for development. 6 endpoints. Plans from $12/month.