The numero_fasts_report API provides information related to fasting practices in numerology for a given individual. The response includes details on the timing and duration of the fast, along with specific practices and rituals to be observed during the fast period, such as wearing specific colors, performing massages, making donations, and reciting mantras.
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": "Fast Vrata Timing For You",
"description": "Observe fast on Saturday for elimination of malefic effects of Saturn. Wear black or blue clothes on these days. Observe this fast for 19 or 51 Saturdays. Massage oil on your body, donate oil and worship Peepal tree. Recite Shani mantra on beads of rudraksha as much as possible."
}
var api = 'numero_fasts_report';
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);
});