Basic Astrological Details

Basic Astrological Details

Embark on a yogic journey through time with our 'Basic Astrological Details' 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/basic-astro-details

Returns Basic Astrological 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

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": {
        "full_name": "Rahul kumar",
        "date": "2025-05-24",
        "year": "2025",
        "month": "05",
        "day": "24",
        "hour": "03",
        "minute": "12",
        "gender": "male",
        "place": "New Delhi, India",
        "latitude": "28.6139",
        "longitude": "77.2090",
        "timezone": "5.5",
        "sunrise": "2025-05-24 05:25:43",
        "sunset": "2025-05-24 19:10:43",
        "tithi": "Dwadashi",
        "paksha": "Krishna",
        "paya": {
            "type": "Gold",
            "result": "Average"
        },
        "sunsign": "Taurus",
        "moonsign": "Pisces",
        "rashi_akshar": "दी, दू, थ, झ, ञ, दे, दो, च, ची",
        "chandramasa": "Vaisakh",
        "tatva": "Watery",
        "prahar": 8,
        "nakshatra": "Revati",
        "vaar": "Friday",
        "varna": "Brahmin",
        "vashya": "Jalchar",
        "yoni": "Gaja",
        "gana": "Dev",
        "nadi": "Anta"
    }
}

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/basic-astro-details \
  -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 lat=28.7041 \
  -F lon=77.1025 \
  -F tzone=5.5 \
  

Last updated