SEARCH ASTROLOGY API DOCS

Home
Indian Astrology

Basic Vimshottari Dasha/sub_vdasha/:md

Get Antar dasha by major dasha

API Endpoint : sub_vdasha/:md
Method : POST
Full URL :
https://json.astrologyapi.com/v1/sub_vdasha/:md

Request Data

ParamsData typeDescriptions

day required

month required

year required

hour required

min required

lat required

lon required

tzone required

int

int

int

int

int

float

float

float

date of birth, eg: 10

month of birth, eg: 5

year of birth, eg: 1990

hour, eg: 19

minute, eg: 55

latitude, eg: 19.2056

longitude, eg: 25.2056

timezone, eg: 5.5

Response Data

[
    {
        "planet": "Sun",
        "start": "16-9-2013  23:2",
        "end": "4-1-2014  12:50"
    },
    {
        "planet": "Moon",
        "start": "4-1-2014  12:50",
        "end": "6-7-2014  3:50"
    },
    {
        "planet": "Mars",
        "start": "6-7-2014  3:50",
        "end": "10-11-2014  23:56"
    },
    {
        "planet": "Rahu",
        "start": "10-11-2014  23:56",
        "end": "5-10-2015  17:20"
    },
    {
        "planet": "Jupiter",
        "start": "5-10-2015  17:20",
        "end": "23-7-2016  22:8"
    },
    {
        "planet": "Saturn",
        "start": "23-7-2016  22:8",
        "end": "5-7-2017  21:50"
    },
    {
        "planet": "Mercury",
        "start": "5-7-2017  21:50",
        "end": "12-5-2018  8:56"
    },
    {
        "planet": "Ketu",
        "start": "12-5-2018  8:56",
        "end": "17-9-2018  5:2"
    },
    {
        "planet": "Venus",
        "start": "17-9-2018  5:2",
        "end": "17-9-2019  11:2"
    }
]
POST
var api = 'sub_vdasha/:md';
var userId = '<Your User Id>';
var apiKey = '<Your Api Key>';
var data = {
  day: 6,
  month: 1,
  year: 2000,
  hour: 7,
  min: 45,
  lat: 19.132,
  lon: 72.342,
  tzone: 5.5,
};

var auth = "Basic " + new Buffer(userId + ":" + apiKey).toString("base64");

var request = $.ajax({
url: "https://json.astrologyapi.com/v1/"+api,
method: "POST",
dataType:'json',
headers: {
    "authorization": auth,
    "Content-Type":'application/json'
},
    data:JSON.stringify(data)
});

request.then( function(resp){
    console.log(resp);
}, function(err){
    console.log(err);
});