SEARCH ASTROLOGY API DOCS

Home
Indian Astrology

Numerology Predictions/numero_fav_time

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.

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

Request Data

ParamsData typeDescriptions

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'

Response Data

{
	"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."
}
POST
var api = 'numero_fav_time';
var userId = '<Your User Id>';
var apiKey = '<Your Api Key>';
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'
},
    data:JSON.stringify(data)
});

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