Gain insights into auspicious dwellings and potential challenges with our 'Nivas and Shool' API, shedding light on the influences of location and energy flows within the realm of Indian Astrology.
200: OK Nivas and Shool details fetched successfully
Copy {
"success" : 1 ,
"data" : {
"disha_shool" : "North" ,
"rahu_vaas" : "South West" ,
"shiva_vaas" : [
"Kailash upto 03:00:20 AM" ,
"Seated on Nandi"
] ,
"agni_vaas" : [
"Paatal (Mantle)upto 03:00:20 AM" ,
"Prithvi (Earth)"
] ,
"yogini_vaas" : [
"South upto 03:00:20 AM" ,
"West"
] ,
"chandra_vaas" : [
"West upto 08:26:20 AM" ,
"North"
] ,
"homahuti" : [
"Mercury"
] ,
"kumbha_chakra" : [
"East (Purva)" ,
"South (Dakshin)"
]
}
}
cURL NodeJS JavaScript jQuery AJAX Python
Copy curl -- location 'https://astroapi-2.divineapi.com/indian-api/v1/find-nivas-and-shool' \
-- header 'Authorization: Bearer {Your Auth Token}' \
-- form 'api_key="{Your API Key}"' \
-- form 'day="24"' \
-- form 'month="05"' \
-- form 'year="2023"' \
-- form 'Place="New Delhi"' \
-- form 'lat="28.6139"' \
-- form 'lon="77.2090"' \
-- form 'tzone="5.5"' \
-- form 'lan="en"'
Copy var request = require ( 'request' );
var options = {
'method' : 'POST' ,
'url' : 'https://astroapi-2.divineapi.com/indian-api/v1/find-nivas-and-shool' ,
'headers' : {
'Authorization' : 'Bearer {Your Auth Token}'
} ,
formData : {
'api_key' : '{Your API Key}' ,
'day' : '24' ,
'month' : '05' ,
'year' : '2023' ,
'Place' : 'New Delhi' ,
'lat' : '28.6139' ,
'lon' : '77.2090' ,
'tzone' : '5.5' ,
'lan' : 'en'
}
};
request (options , function (error , response) {
if (error) throw new Error (error);
console .log ( response .body);
});
Copy var form = new FormData ();
form .append ( "api_key" , "{Your API Key}" );
form .append ( "day" , "24" );
form .append ( "month" , "05" );
form .append ( "year" , "2023" );
form .append ( "Place" , "New Delhi" );
form .append ( "lat" , "28.6139" );
form .append ( "lon" , "77.2090" );
form .append ( "tzone" , "5.5" );
form .append ( "lan" , "en" );
var settings = {
"url" : "https://astroapi-2.divineapi.com/indian-api/v1/find-nivas-and-shool" ,
"method" : "POST" ,
"timeout" : 0 ,
"headers" : {
"Authorization" : "Bearer {Your Auth Token}"
} ,
"processData" : false ,
"mimeType" : "multipart/form-data" ,
"contentType" : false ,
"data" : form
};
$ .ajax (settings) .done ( function (response) {
console .log (response);
});
Copy import requests
url = "https://astroapi-2.divineapi.com/indian-api/v1/find-nivas-and-shool"
payload = { 'api_key' : '{Your API Key}' ,
'day' : '24' ,
'month' : '05' ,
'year' : '2023' ,
'Place' : 'New Delhi' ,
'lat' : '28.6139' ,
'lon' : '77.2090' ,
'tzone' : '5.5' ,
'lan' : 'en' }
headers = {
'Authorization' : 'Bearer {Your Auth Token}'
}
response = requests . request ( "POST" , url, headers = headers, data = payload)
print (response.text)