POST V2 $0.005

Navamsa Chart API (D9)

Generate the D9 divisional chart for marriage analysis, spouse characteristics, dharma, and spiritual evolution.

/v2/astrology/navamsa

Overview

The Navamsa (D9) chart is the most important divisional chart in Vedic astrology. It reveals:

  • Marriage & Spouse: Nature, appearance, and qualities of life partner
  • Dharma: One's righteous path and spiritual purpose
  • Planetary Strength: Planets gain or lose strength based on D9 placement
  • Vargottama: Planets in same sign in both D1 and D9 (highly auspicious)
  • Pushkara Navamsa: Special degrees conferring luck and prosperity
Note: The Navamsa chart divides each sign into 9 equal parts of 3°20' each. Planet positions are recalculated based on this division.

Request

cURL

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
  }'

JavaScript

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();

Python

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()

Parameters

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")

Response

{
  "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
  }
}

Interpretation Guide

Vargottama Planets

Planets in the same sign in both D1 and D9 charts are exceptionally strong and give excellent results in their significations.

Pushkara Navamsa

Certain navamsa degrees are considered highly auspicious, bringing luck and prosperity to the planet placed there.

7th House Analysis

The 7th house in D9 and its lord reveal spouse characteristics, marriage timing, and relationship dynamics.

Venus Placement

Venus in D9 shows the quality of married life, romantic inclinations, and material comforts in marriage.

Error Handling

CodeHTTP StatusDescription
INVALID_DATETIME400Invalid date/time format
INVALID_COORDINATES400Coordinates out of valid range
UNAUTHORIZED401Invalid or missing API key
INSUFFICIENT_BALANCE402Not enough credits

Pricing

$0.005 per request

Billed from your prepaid balance. No minimum commitment.

View full pricing details

Start Building with Vedika

Get your API key and integrate Vedic astrology in minutes.