Chandrashtama
POST https://astroapi-3.divineapi.com/indian-api/v1/chandrashtama
Returns Chandrashtama in response
Headers
Name
Type
Description
Authorization*
String
your API Access Token
eg: Bearer {token}
Request Body
Name
Type
Description
api_key*
String
your API key
month*
Integer
month of birth, eg: 05
year*
Integer
year of birth, eg: 2023
place*
String
place, ex: New Delhi
lat*
Float
latitude, eg: 28.6139
lon*
Float
longitude, eg: 77.2090
{
"success": 1,
"data": [
{
"moonsign": "Scorpio",
"chandrashtama": [
{
"nakshatra": "Vishakha",
"padas": [
4
]
},
{
"nakshatra": "Anuradha",
"padas": [
1,
2,
3,
4
]
},
{
"nakshatra": "Jyeshtha",
"padas": [
1,
2,
3,
4
]
}
],
"start_date": "2025-06-11 06:00:35",
"end_date": "2025-06-11 20:10:35"
},
{
"moonsign": "Sagittarius",
"chandrashtama": [
{
"nakshatra": "Moola",
"padas": [
1,
2,
3,
4
]
},
{
"nakshatra": "Poorva Ashadha",
"padas": [
1,
2,
3,
4
]
},
{
"nakshatra": "Uttara Ashadha",
"padas": [
1
]
}
],
"start_date": "2025-06-11 20:11:35",
"end_date": "2025-06-12 06:00:41"
}
]
}
Take a look at how you might call this method via cURL, NodeJS or JavaScript jQuery AJAX and Python :
curl --location 'https://astroapi-3.divineapi.com/indian-api/v1/chandrashtama' \
--header 'Authorization: Bearer {Your Auth Token}' \
--form 'api_key="{Your API Key}"' \
--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