Find Nivas And Shool

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.

POST https://astroapi-2.divineapi.com/indian-api/v1/find-nivas-and-shool

Returns Nivas and Shool details in response

Headers

NameTypeDescription

Authorization*

String

your API Access Token

eg: Bearer {token}

Request Body

NameTypeDescription

api_key*

String

your API key

day*

Integer

day of panchang, eg: 24

month*

Integer

month of panchang, eg: 05

year*

Integer

year of panchang, eg: 2023

place

String

place, ex: New Delhi

lat*

Float

latitude, eg: 28.6139

lon*

Float

longitude, eg: 77.2090

tzone*

Float

timezone, eg: 5.5

lan

String

Language en/hi, default en

{
    "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)"
        ]
    }
}

Take a look at how you might call this method via cURL, NodeJS or JavaScript jQuery AJAX and Python :

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"'

Last updated