🌍 Astrocartography API and ✋ Palmistry API are now live. Ship them in your app today.Get Started

Antar Vimshottari Dasha

Get Antar dasha by major dasha
POSThttps://json.astrologyapi.com/v1/sub_vdasha/:md

Authentication

x-astrologyapi-keystringrequired

API access token used to authenticate requests. Send your access token in this custom header.

Accept-Languagestring

Preferred language for the response content. Supported: English - en, Hindi - hi, Marathi - ma, Bengali - bn, Tamil - ta, Telugu - te, Malayalam - ml, Kannada - kn.

Path parameters

mdstringrequired

Major Dasha, eg: sun,moon

  • sun
  • moon
  • mars
  • mercury
  • jupiter
  • venus
  • saturn
  • rahu
  • ketu

Body parameters

dayintrequired

Date of birth, eg: 10

monthintrequired

Month of birth, eg: 5

yearintrequired

Year of birth, eg: 1990

hourintrequired

Hour of birth, eg: 19

minintrequired

Minute of birth, eg: 55

latfloatrequired

Latitude, eg: 19.2056

lonfloatrequired

Longitude, eg: 25.2056

tzonefloatrequired

Timezone, eg: 5.5

curl --location 'https://json.astrologyapi.com/v1/sub_vdasha/sun' \
  --header 'Content-Type: application/json' \
  --header 'x-astrologyapi-key: <YOUR_ACCESS_TOKEN>' \
  --data '{
    "day": 10,
    "month": 5,
    "year": 1990,
    "hour": 19,
    "min": 55,
    "lat": 19.2056,
    "lon": 25.2056,
    "tzone": 5.5
}'
Try it

Runs with sample data — no API key needed

[
  {
    "planet": "Sun",
    "planet_id": 0,
    "start": "2-5-2021  8:7",
    "end": "19-8-2021  21:55"
  },
  {
    "planet": "Moon",
    "planet_id": 1,
    "start": "19-8-2021  21:55",
    "end": "18-2-2022  12:55"
  },
  {
    "planet": "Mars",
    "planet_id": 2,
    "start": "18-2-2022  12:55",
    "end": "26-6-2022  9:1"
  },
  {
    "planet": "Rahu",
    "planet_id": 7,
    "start": "26-6-2022  9:1",
    "end": "21-5-2023  2:25"
  },
  {
    "planet": "Jupiter",
    "planet_id": 4,
    "start": "21-5-2023  2:25",
    "end": "8-3-2024  7:13"
  },
  {
    "planet": "Saturn",
    "planet_id": 6,
    "start": "8-3-2024  7:13",
    "end": "18-2-2025  6:55"
  },
  {
    "planet": "Mercury",
    "planet_id": 3,
    "start": "18-2-2025  6:55",
    "end": "25-12-2025  18:1"
  },
  {
    "planet": "Ketu",
    "planet_id": 8,
    "start": "25-12-2025  18:1",
    "end": "2-5-2026  14:7"
  },
  {
    "planet": "Venus",
    "planet_id": 5,
    "start": "2-5-2026  14:7",
    "end": "2-5-2027  20:7"
  }
]