Provide users with specific dates or time periods during which they can pursue certain activities or make important decisions with greater success, based on numerological factors.
Params | Data type | Descriptions |
day required month required year required name required | int int int string | date of birth, eg: 10 month of birth, eg: 5 year of birth, eg: 1990 name, eg: 'demo' |
{
"title": "Favourable Time For You",
"description": " According to western view the Sun remains in Capricorn and Aquarius from 23rd December to 19th February and by Indian thought it is in these signs from 14th January to 13th March. These are the own signs of Saturn. From 17th October to 13th November the Sun is in Libra which is the exalted sign of Saturn. These dates are lucky for people of Radical number 8."
}
var api = 'numero_fav_time';
var userId = '<Your User Id>';
var apiKey = '<Your Api Key>';
var language = '<Your Language>' // By default it is set to en
var data = {
day: 6,
month:1,
year:2000,
name:"Kevin"
};
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',
"Accept-Language": language
},
data:JSON.stringify(data)
});
request.then( function(resp){
console.log(resp);
}, function(err){
console.log(err);
});