Skip to main content

Jaimini Char Dasha

Computes Jaimini Char Dasha — a sign-based dasha system from the Jaimini school of astrology. Returns mahadasha and antardasha periods starting from the ascendant (Lagna), with the current active mahadasha and antardasha highlighted. Request JSON follows BirthInput plus cycles (1–3): name, date (YYYY-MM-DD), time (HH:MM, required), either location or latitude/longitude/timezone, ayanamsa.

Endpoint

POST /v1/astro/char-dasha

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
cyclesintegerNoDasha cycles to compute (1-3)

Example request

curl -X POST "https://api.asterwise.com/v1/astro/char-dasha" \
-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": {
"atmakaraka": "Sun",
"start_rashi": "Tula",
"start_rashi_index": 6,
"karakas": {
"Atmakaraka": "Sun",
"Amatyakaraka": "Mercury",
"Bhratrikaraka": "Moon",
"Matrikaraka": "Mars",
"Pitrikaraka": "Jupiter",
"Putrakaraka": "Rahu",
"Gnatikaraka": "Venus",
"Darakaraka": "Saturn"
},
"current_mahadasha": "Mesha",
"current_antardasha": "Tula",
"periods": [
{
"rashi": "Tula",
"rashi_index": 6,
"years": 12,
"start_date": "1985-11-12",
"end_date": "1997-11-12",
"antardashas": [
{
"rashi": "Tula",
"rashi_index": 6,
"years": 12,
"start_date": "1985-11-12",
"end_date": "1986-11-12"
},
{
"rashi": "Vrischika",
"rashi_index": 7,
"years": 11,
"start_date": "1986-11-12",
"end_date": "1987-11-12"
},
"... and 10 more items"
]
},
{
"rashi": "Vrischika",
"rashi_index": 7,
"years": 11,
"start_date": "1997-11-12",
"end_date": "2008-11-12",
"antardashas": [
{
"rashi": "Vrischika",
"rashi_index": 7,
"years": 11,
"start_date": "1997-11-12",
"end_date": "1998-10-12"
},
{
"rashi": "Dhanu",
"rashi_index": 8,
"years": 1,
"start_date": "1998-10-12",
"end_date": "1999-09-11"
},
"... and 10 more items"
]
},
"... and 10 more items"
]
}
}

Response fields

FieldTypeDescription
successbooleanTrue if the request succeeded
messagestringHuman-readable status message
dataobject
data.atmakarakastring | null
data.start_rashistring
data.start_rashi_indexinteger
data.karakasobject
data.current_mahadashastring | null
data.current_antardashastring | null
data.periodsarray[object]
data.periods[].rashistring
data.periods[].rashi_indexinteger
data.periods[].yearsinteger
data.periods[].start_datestring
data.periods[].end_datestring
data.periods[].antardashasarray[object]
data.periods[].antardashas[].rashistring
data.periods[].antardashas[].rashi_indexinteger
data.periods[].antardashas[].yearsinteger
data.periods[].antardashas[].start_datestring
data.periods[].antardashas[].end_datestring

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