Chart (Kundli)
GET
1 credit

/v1/chart/divisional/{varga}

Divisional chart D1 through D60.

What this tells you

Divisional charts (vargas) subdivide each sign into smaller sections, each mapped to another sign — revealing specific life areas. The most important is D9 (Navamsa) for marriage and life purpose. D10 (Dasamsa) for career. D7 (Saptamsa) for children. A planet "placed well" in D1 but badly in the relevant varga may not deliver its promised effects in that life area.

Request

All requests require an Authorization header with your dv_live_* API key.

example request
curl "https://api.divyastroapi.com/v1/chart/divisional/D9?date=2026-04-19&time=06%3A30&tz=%2B05%3A30&lat=28.61&lon=77.21" \
  -H "Authorization: Bearer dv_live_0123456789abcdef0123456789abcdef"

Response (200 OK)

Successful requests return a JSON body. Field names are stable across versions.

200 response
{
  "varga": "D9",
  "name": "Navamsa",
  "ascendant": {
    "longitude": 30.41, "sign": "Taurus", "sign_index": 2
  },
  "planets": [
    { "name": "Sun",     "sign": "Cancer",      "sign_index":  4, "house": 3 },
    { "name": "Moon",    "sign": "Scorpio",     "sign_index":  8, "house": 7 },
    { "name": "Mars",    "sign": "Taurus",      "sign_index":  2, "house": 1 },
    { "name": "Mercury", "sign": "Gemini",      "sign_index":  3, "house": 2 },
    { "name": "Jupiter", "sign": "Pisces",      "sign_index": 12, "house": 11 },
    { "name": "Venus",   "sign": "Aries",       "sign_index":  1, "house": 12 },
    { "name": "Saturn",  "sign": "Libra",       "sign_index":  7, "house": 6 },
    { "name": "Rahu",    "sign": "Scorpio",     "sign_index":  8, "house": 7 },
    { "name": "Ketu",    "sign": "Taurus",      "sign_index":  2, "house": 1 }
  ]
}

Field reference

Every field in the response, with its type, a real example, and what it means.

FieldTypeMeaning
vargastring
Divisional chart identifier you requested (path param).
example: "D9"
namestring
Traditional name.
example: "Navamsa"
Jyotish: D1=Rasi, D2=Hora, D3=Drekkana, D4=Chaturthamsa, D7=Saptamsa, D9=Navamsa, D10=Dasamsa, D12=Dwadasamsa, D16=Shodashamsa, D20=Vimshamsa, D24=Chaturvimshamsa, D27=Saptavimshamsa, D30=Trimshamsa, D40=Khavedamsa, D45=Akshavedamsa, D60=Shashtiamsa.
ascendantobject
Ascendant in the divisional chart.
example:
planets[]array of 9
Each planet's sign, sign_index, and house in this varga.
example: […]

Usage tips

How to use it

  • Path variable
    Accept any of D1, D2, D3, D4, D7, D9, D10, D12, D16, D20, D24, D27, D30, D40, D45, D60.
  • Most apps need only D9 and D10
    Start with Navamsa (marriage) and Dasamsa (career). Add others on demand.

Errors

Every error follows the same envelope. Use the error.code field (not the message) for conditional logic in your integration.

401 Unauthorized

{
  "error": {
    "code": "unauthorized",
    "message": "missing or invalid API key",
    "request_id": "req_01hqy7k8c3e7m1n"
  }
}

402 Payment Required

{
  "error": {
    "code": "trial_exhausted",
    "message": "your free trial credits are exhausted — pick a plan to continue",
    "top_up_url": "https://divyastroapi.com/pricing",
    "request_id": "req_01hqy7k8c3e7m1n"
  }
}

429 Too Many Requests

{
  "error": {
    "code": "rate_limited",
    "message": "rate limit exceeded; retry after 12 seconds",
    "request_id": "req_01hqy7k8c3e7m1n"
  }
}

Try it

Get a dv_live_* key from your dashboard and paste into the cURL snippet above. New accounts get 500 free credits. Sign up.