🌍 Astrocartography API, 🔷 Human Design API and ✋ Palmistry API are now live. Ship them in your app today.

Basic Astro Details

The astro_details API likely provides astrological insights about a person based on their birth details. The response includes information about their ascendant, Varna, Vashya, Yoni, Gan, Nadi, SignLord, sign, Naksahtra, NaksahtraLord, Charan, Yog, Karan, Tithi, yunja, tatva, name_alphabet, and paya.
POSThttps://json.astrologyapi.com/v1/astro_details

Authentication

x-astrologyapi-keystringrequired

API access token used to authenticate requests. Send your access token in this custom header.

Accept-Languagestring

Preferred language for the response content. Supported: English - en, Hindi - hi, Marathi - ma, Bengali - bn, Tamil - ta, Telugu - te, Malayalam - ml, Kannada - kn.

Body parameters

dayintrequired

Date of birth, eg: 10

monthintrequired

Month of birth, eg: 5

yearintrequired

Year of birth, eg: 1990

hourintrequired

Hour of birth, eg: 19

minintrequired

Minute of birth, eg: 55

latfloatrequired

Latitude, eg: 19.2056

lonfloatrequired

Longitude, eg: 25.2056

tzonefloatrequired

Timezone, eg: 5.5

curl --location 'https://json.astrologyapi.com/v1/astro_details' \
  --header 'Content-Type: application/json' \
  --header 'x-astrologyapi-key: <YOUR_ACCESS_TOKEN>' \
  --data '{
    "day": 10,
    "month": 5,
    "year": 1990,
    "hour": 19,
    "min": 55,
    "lat": 19.2056,
    "lon": 25.2056,
    "tzone": 5.5
}'
Try it

Runs with sample data — no API key needed

{
  "ascendant": "Leo",
  "Varna": "Vaishya",
  "Vashya": "Maanav",
  "Yoni": "Gau",
  "Gan": "Manushya",
  "Nadi": "Adi",
  "SignLord": "Mercury",
  "sign": "Virgo",
  "Naksahtra": "Uttra Phalguni",
  "NaksahtraLord": "Sun",
  "Charan": 3,
  "Yog": "Vaidhriti",
  "Karan": "Kaulav",
  "Tithi": "Krishna Dwadashi",
  "yunja": "Madhya",
  "tatva": "Earth",
  "name_alphabet": "Pa",
  "paya": "Silver"
}