Skip to main content

Lal Kitab Remedies

Computes personalised Lal Kitab remedies from the birth chart. Returns practical remedies (donations, items to keep/bury, actions to avoid) for each planet based on its house placement. Malefic planets in Kachcha Ghar or Neecha are marked high priority.

Endpoint

POST /v1/astro/lal-kitab/remedies

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/lal-kitab/remedies" \
-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": {
"system": "lal_kitab",
"ayanamsa": "lahiri",
"remedies": [
{
"planet": "Saturn",
"lk_house": 8,
"rashi": "Vrischika",
"pucca_ghar": true,
"kachcha_ghar": false,
"uchcha": false,
"neecha": false,
"remedies": [
{
"type": "remedy",
"action": "Bury a piece of black iron under the house foundation."
},
{
"type": "donation",
"action": "Donate black blankets on Saturdays."
}
],
"priority": "medium"
},
{
"planet": "Rahu",
"lk_house": 1,
"rashi": "Mesha",
"pucca_ghar": false,
"kachcha_ghar": false,
"uchcha": false,
"neecha": false,
"remedies": [
{
"type": "remedy",
"action": "Keep a lead ball or piece of lead at home."
},
{
"type": "donation",
"action": "Donate barley or coconut on Saturdays."
}
],
"priority": "medium"
},
"... and 7 more items"
]
}
}

Response fields

FieldTypeDescription
successbooleanTrue if the request succeeded
messagestringHuman-readable status message
dataobject
data.systemstring
data.ayanamsastring
data.remediesarray[object]
data.remedies[].planetstring
data.remedies[].lk_houseinteger
data.remedies[].rashistring
data.remedies[].pucca_gharboolean
data.remedies[].kachcha_gharboolean
data.remedies[].uchchaboolean
data.remedies[].neechaboolean
data.remedies[].remediesarray[object]
data.remedies[].remedies[].typestring
data.remedies[].remedies[].actionstring
data.remedies[].prioritystring

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