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

Pratyantar Vimshottari Dasha

Get Pratyantar dasha by major and antar dasha
POSThttps://json.astrologyapi.com/v1/sub_sub_vdasha/:md/:ad

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
adstringrequired

Antar 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_sub_vdasha/sun/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": "Moon",
    "planet_id": 1,
    "start": "19-8-2021  21:55",
    "end": "4-9-2021  3:10"
  },
  {
    "planet": "Mars",
    "planet_id": 2,
    "start": "4-9-2021  3:10",
    "end": "14-9-2021  18:50"
  },
  {
    "planet": "Rahu",
    "planet_id": 7,
    "start": "14-9-2021  18:50",
    "end": "12-10-2021  4:17"
  },
  {
    "planet": "Jupiter",
    "planet_id": 4,
    "start": "12-10-2021  4:17",
    "end": "5-11-2021  12:41"
  },
  {
    "planet": "Saturn",
    "planet_id": 6,
    "start": "5-11-2021  12:41",
    "end": "4-12-2021  10:40"
  },
  {
    "planet": "Mercury",
    "planet_id": 3,
    "start": "4-12-2021  10:40",
    "end": "30-12-2021  7:35"
  },
  {
    "planet": "Ketu",
    "planet_id": 8,
    "start": "30-12-2021  7:35",
    "end": "9-1-2022  23:16"
  },
  {
    "planet": "Venus",
    "planet_id": 5,
    "start": "9-1-2022  23:16",
    "end": "9-2-2022  9:46"
  },
  {
    "planet": "Sun",
    "planet_id": 0,
    "start": "9-2-2022  9:46",
    "end": "18-2-2022  12:55"
  }
]