Panchadhikari

Panchadhikari

Embark on a yogic journey through time with our 'Panchadhikari' API, unraveling the sequential planetary periods that bestow unique spiritual and material experiences within the paradigm of Indian Astrology.

POST https://astroapi-3.divineapi.com/indian-api/v1/varshaphal/panchadhikari

Returns Panchadhikari in response

Headers

NameTypeDescription

Authorization*

String

your API Access Token

eg: Bearer {token}

Request Body

NameTypeDescription

api_key*

String

your API key

day*

Integer

date of birth, eg: 24

month*

Integer

month of birth, eg: 05

year*

Integer

year of birth, eg: 2023

lat*

Float

latitude, eg: 28.7041

lon*

Float

longitude, eg: 77.1025

tzone*

Float

timezone, eg: 5.5

hour*

Integer

hour, eg: 14

min *

Integer

minute, eg: 40

sec*

Integer

second, eg 43

full_name*

String

full name, ex: Rahul kumar

place*

String

place, ex: New Delhi

gender*

String

gender, ex: male

lan

String

Language en/hi, default en

varshaphal_year*

Integer

varshaphal year, eg: 2025

{
    "success": 1,
    "data": {
        "panchadhikari": {
            "muntha_pati": {
                "planet": "Mars",
                "point": 10.46
            },
            "janma_lagna_pati": {
                "planet": "Mercury",
                "point": 13.16
            },
            "varsha_lagna_pati": {
                "planet": "Jupiter",
                "point": 12.52
            },
            "tri_rashi_patis": {
                "planet": "Moon",
                "point": 10.78
            },
            "dina_ratri_pati": {
                "planet": "Jupiter",
                "point": 12.52
            }
        },
        "year_lord": "Mercury"
    }
}

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

curl -X POST \
  https://astroapi-3.divineapi.com/indian-api/v1/varshaphal/panchadhikari \
  -H 'authorization: Bearer {Your API Access Token}' \
  -H 'cache-control: no-cache' \
  -H 'content-type: application/json' \
  -F api_key={Your API Key}
  -F full_name='Rahul Kumar' \
  -F place='New Delhi, India' \
  -F gender='male' \
  -F day=24 \
  -F month=05 \
  -F year=2023 \
  -F hour=14 \
  -F min=40 \
  -F sec=43 \
  -F varshaphal_year=2025 \
  -F lat=28.7041 \
  -F lon=77.1025 \
  -F tzone=5.5 \
  

Last updated