Generate the D9 divisional chart for marriage analysis, spouse characteristics, dharma, and spiritual evolution.
/v2/astrology/navamsa
The Navamsa (D9) chart is the most important divisional chart in Vedic astrology. It reveals:
curl -X POST "https://api.vedika.io/v2/astrology/navamsa" \
-H "Content-Type: application/json" \
-H "x-api-key: YOUR_API_KEY" \
-d '{
"datetime": "1990-05-15T10:30:00+05:30",
"latitude": 28.6139,
"longitude": 77.2090
}'
const response = await fetch('https://api.vedika.io/v2/astrology/navamsa', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'x-api-key': 'YOUR_API_KEY'
},
body: JSON.stringify({
datetime: '1990-05-15T10:30:00+05:30',
latitude: 28.6139,
longitude: 77.2090
})
});
const data = await response.json();
import requests
response = requests.post(
'https://api.vedika.io/v2/astrology/navamsa',
headers={
'Content-Type': 'application/json',
'x-api-key': 'YOUR_API_KEY'
},
json={
'datetime': '1990-05-15T10:30:00+05:30',
'latitude': 28.6139,
'longitude': 77.2090
}
)
data = response.json()
| Parameter | Type | Required | Description |
|---|---|---|---|
datetime |
string | Required | Birth date and time in ISO 8601 format |
latitude |
number | Required | Birth location latitude (-90 to 90) |
longitude |
number | Required | Birth location longitude (-180 to 180) |
ayanamsa |
string | Optional | Ayanamsa system (default: "lahiri") |
{
"success": true,
"data": {
"d1Ascendant": {
"sign": "Cancer",
"degree": 15.234
},
"d9Ascendant": {
"sign": "Pisces",
"degree": 17.112,
"lord": "Jupiter"
},
"planets": [
{
"name": "Sun",
"d1Sign": "Taurus",
"d1Degree": 0.639,
"d9Sign": "Sagittarius",
"d9Degree": 5.751,
"d9House": 10,
"isVargottama": false,
"isPushkara": false,
"d9SignLord": "Jupiter"
},
{
"name": "Moon",
"d1Sign": "Aquarius",
"d1Degree": 12.456,
"d9Sign": "Libra",
"d9Degree": 22.104,
"d9House": 8,
"isVargottama": false,
"isPushkara": true,
"d9SignLord": "Venus"
},
{
"name": "Venus",
"d1Sign": "Aries",
"d1Degree": 8.123,
"d9Sign": "Aries",
"d9Degree": 13.107,
"d9House": 2,
"isVargottama": true,
"isPushkara": false,
"d9SignLord": "Mars"
}
// ... remaining planets
],
"houses": [
{ "house": 1, "sign": "Pisces", "lord": "Jupiter", "planets": [] },
{ "house": 2, "sign": "Aries", "lord": "Mars", "planets": ["Venus"] },
{ "house": 7, "sign": "Virgo", "lord": "Mercury", "planets": ["Mars"] }
// ... all 12 houses
],
"specialFeatures": {
"vargottamaPlanets": ["Venus"],
"pushkaraNavamsaPlanets": ["Moon"],
"d9AscendantLord": {
"planet": "Jupiter",
"d9House": 4,
"d9Sign": "Gemini",
"strength": "moderate"
},
"seventhLord": {
"planet": "Mercury",
"d9House": 5,
"d9Sign": "Cancer",
"interpretation": "Spouse may be communicative, youthful, and intelligent"
}
},
"marriageIndicators": {
"venusD9Strength": "strong",
"seventhHouseOccupants": ["Mars"],
"seventhLordPlacement": "5th house - romantic, creative spouse",
"jupiterAspects": ["7th house"],
"overallMarriageProspects": "favorable"
}
},
"metadata": {
"requestId": "req_navamsa_xyz789",
"calculatedAt": "2026-01-07T12:00:00Z",
"ayanamsaUsed": "lahiri",
"cost": 0.005
}
}
Planets in the same sign in both D1 and D9 charts are exceptionally strong and give excellent results in their significations.
Certain navamsa degrees are considered highly auspicious, bringing luck and prosperity to the planet placed there.
The 7th house in D9 and its lord reveal spouse characteristics, marriage timing, and relationship dynamics.
Venus in D9 shows the quality of married life, romantic inclinations, and material comforts in marriage.
| Code | HTTP Status | Description |
|---|---|---|
INVALID_DATETIME | 400 | Invalid date/time format |
INVALID_COORDINATES | 400 | Coordinates out of valid range |
UNAUTHORIZED | 401 | Invalid or missing API key |
INSUFFICIENT_BALANCE | 402 | Not enough credits |
Billed from your prepaid balance. No minimum commitment.
View full pricing detailsGet your API key and integrate Vedic astrology in minutes.