Find Surya Nakshatra
Get Surya Nakshatra details with Divine API's Daily Panchang API. Provide accurate insights on the Sun’s position in specific nakshatras to enhance astrological predictions and user experiences.
Delve into the radiant realms of solar lunar conjunctions with our 'Surya Nakshatra' API, unveiling the fusion of solar and lunar energies as per Indian Astrology.
POST https://astroapi-1.divineapi.com/indian-api/v1/find-surya-nakshatra
Returns surya nakshatra details in response.
Headers
Authorization*
String
your API Access Token
eg: Bearer {token}
Request Body
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
{
"success": 1,
"data": {
"sunrise": "2023-05-24 05:25:56",
"sunset": "2023-05-24 19:10:28",
"nakshatras": {
"nakshatra_list": [
"Krittika"
],
"nakshatra_pada": [
{
"nak_name": "Krittika",
"lord": "Sun",
"deity": "Agni",
"element": "Prithvi",
"symbol": "Spear/Knife",
"syllables": "अ, ई, उ, ऐ",
"pursuit": "Kama",
"gana": "Rakshasa",
"direction": "North",
"guna": "Rajasik",
"body_part": "Waist, Hip Joint, Crown of Head",
"color": "White",
"nak_number": 3,
"nak_pada": 4,
"end_time": ""
}
]
}
}
}
Take a look at how you might call this method via cURL, NodeJS or JavaScript jQuery AJAX and Python
:
curl --location 'https://astroapi-1.divineapi.com/indian-api/v1/find-surya-nakshatra' \
--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