Find Chandrabalam And Tarabalam

Harness the lunar and stellar energies for favorable actions with our 'Chandrabalam and Tarabalam' API, offering guidance on propitious moments based on Indian Astrology's lunar and constellation considerations.

POST https://astroapi-2.divineapi.com/indian-api/v1/find-chandrabalam-and-tarabalam

Returns chandrabalams and tarabalams

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": {
        "chandrabalams": {
            "current": [
                "Aries",
                "Gemini",
                "Leo",
                "Virgo",
                "Sagittarius",
                "Capricorn"
            ],
            "upto": "08:27 AM, May 24",
            "next": [
                "Taurus",
                "Cancer",
                "Virgo",
                "Libra",
                "Capricorn",
                "Aquarius"
            ]
        },
        "tarabalams": {
            "current": [
                "Bharani",
                "Rohini",
                "Ardhra",
                "Pushya",
                "Ashlesha",
                "Purva Phalguni",
                "Hasta",
                "Swati",
                "Anuradha",
                "Jyeshtha",
                "Purva Ashada",
                "Shravana",
                "Satabhisha",
                "Uttara Bhadrapada",
                "Revati"
            ],
            "upto": "03:06 PM, May 24",
            "next": [
                "Ashwini",
                "Krittika",
                "Mrigashirsha",
                "Punarvasu",
                "Ashlesha",
                "Magha",
                "Uttara Phalguni",
                "Chitra",
                "Vishakha",
                "Jyeshtha",
                "Moola",
                "Uttara Ashada",
                "Dhanishta",
                "Purva Bhadrapada",
                "Revati"
            ]
        }
    }
}

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-chandrabalam-and-tarabalam' \
--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