SEARCH ASTROLOGY API DOCS

Home
Indian Astrology

Numerology Predictions/numero_fasts_report

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.

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

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": "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."
}
POST
var api = 'numero_fasts_report';
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);
});