Skip to main content

Ghat Chakra

Returns the four Ghatak (inauspicious) timing parameters for a native based on their Janma Rasi (natal Moon sign). Ghat Chakra identifies the lunar month (Masa), lunar day group (Tithi), weekday (Vara), and transit nakshatra that are persistently inauspicious for that individual. When transit periods align with these Ghatak parameters, starting new ventures, surgery, travel, or auspicious ceremonies should be avoided.

Endpoint

POST /v1/astro/ghat-chakra

Request parameters

FieldTypeRequiredDescription
locationstring | nullNoCity name to resolve to lat/lon/tz automatically. Example: 'Mumbai' or 'New Delhi, India'. If provided, latitude, longitude and timezone are not required.
namestringNoPerson name associated with the birth record
datestringYesBirth date in YYYY-MM-DD format
timestring | nullNoBirth time in HH:MM 24-hour format. If omitted, sunrise chart is used as fallback.
latitudenumber | nullNoLatitude. Required if location not provided.
longitudenumber | nullNoLongitude. Required if location not provided.
timezonestring | nullNoIANA timezone. Required if location not provided.
ayanamsastringNoSidereal ayanamsa mode used in calculations

Example request

curl -X POST "https://api.asterwise.com/v1/astro/ghat-chakra" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"date":"1985-11-12","time":"06:45","latitude":19.076,"longitude":72.8777,"timezone":"Asia/Kolkata"}'

Example response

{
"success": true,
"message": "success",
"data": {
"janma_rasi": "Tula",
"janma_rasi_index": 6,
"ghatak_parameters": {
"masa": {
"name": "Pausha",
"description": "Pausha is the Ghatak lunar month for Tula Janma Rasi natives. Avoid major life events during this month."
},
"tithi": {
"group": "Rikta",
"tithi_numbers": [
4,
9,
"... and 1 more item"
],
"description": "Rikta tithis (4th, 9th, 14th) — empty/void days are Ghatak tithis for Tula Janma Rasi natives. Avoid initiating importan…"
},
"vara": {
"day": "Thursday",
"description": "Thursday is the Ghatak weekday for Tula Janma Rasi natives. Avoid major decisions, travel, or auspicious events on this…"
},
"nakshatra": {
"name": "Shatabhisha",
"description": "Shatabhisha is the Ghatak nakshatra for Tula Janma Rasi natives. When the transit Moon is in this nakshatra, the period…"
}
},
"guidance": "Ghat Chakra identifies the four parameters that are consistently inauspicious for a native based on their Janma Rasi. Wh…",
"avoidance_guidance": [
"New business ventures or contract signings",
"Major surgery or medical procedures",
"... and 3 more items"
]
}
}

Response fields

FieldTypeDescription
successbooleanTrue if the request succeeded
messagestringHuman-readable status message
dataobject
data.janma_rasistring
data.janma_rasi_indexinteger
data.ghatak_parametersobject
data.ghatak_parameters.masaobject
data.ghatak_parameters.masa.namestring
data.ghatak_parameters.masa.descriptionstring
data.ghatak_parameters.tithiobject
data.ghatak_parameters.tithi.groupstring
data.ghatak_parameters.tithi.tithi_numbersarray[integer]
data.ghatak_parameters.tithi.descriptionstring
data.ghatak_parameters.varaobject
data.ghatak_parameters.vara.daystring
data.ghatak_parameters.vara.descriptionstring
data.ghatak_parameters.nakshatraobject
data.ghatak_parameters.nakshatra.namestring
data.ghatak_parameters.nakshatra.descriptionstring
data.guidancestring
data.avoidance_guidancearray[string]

Errors

CodeDescriptionReference
authentication_failedMissing or invalid API key.authentication_failed
ephemeris_unavailableUpstream ephemeris service error.ephemeris_unavailable
insufficient_tierAPI key tier does not include this endpoint.insufficient_tier
internal_errorUnexpected server error.internal_error
ip_rate_limit_exceededToo many requests in a short window.ip_rate_limit_exceeded
payload_too_largeRequest body exceeds the size limit.payload_too_large
resource_not_foundReferenced resource was not found.resource_not_found
validation_errorRequest body failed schema validation.validation_error