SEARCH ASTROLOGY API DOCS

Home
Indian Astrology

Numerology Predictions/numero_place_vastu

Provides guidance on the best Vastu direction for people with Radical number 8, including recommendations for choosing a house or flat with a total number of 8, living in the western part of a city or house, and performing important tasks facing the west direction for greater benefits.

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

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 Place Vastu For You",
	"description": "Choose the west direction for your house, flat or shopping complex as for Radical number 8 West is a lucky direction. If the total of your house number is 8 it will be good. To reside in western area of a city or in Western part of your house will be beneficial. Similarly to perform your important jobs by sitting in this direction will be good for you."
}
POST
var api = 'numero_place_vastu';
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);
});