🌍 Astrocartography API, 🔷 Human Design API and ✋ Palmistry API are now live. Ship them in your app today.

Lalkitab Remedies

The lalkitab_remedies/:planet_name API provides Lal Kitab remedies for a given planet name. The response contains the planet name, house placement, Lal Kitab descriptions, and remedies for that planet. The remedies include suggestions such as avoiding certain clothing colors, performing certain actions for a certain duration, and abstaining from certain food and drink.
POSThttps://json.astrologyapi.com/v1/lalkitab_remedies/:planet_name

Authentication

x-astrologyapi-keystringrequired

API access token used to authenticate requests. Send your access token in this custom header.

Accept-Languagestring

Preferred language for the response content. Supported: English - en, Hindi - hi.

Path parameters

planet_namestringrequired

Planet Name, eg: sun, moon

  • sun
  • moon
  • mars
  • mercury
  • jupiter
  • venus
  • saturn
  • rahu
  • ketu

Body parameters

dayintrequired

Date of birth, eg: 10

monthintrequired

Month of birth, eg: 5

yearintrequired

Year of birth, eg: 1990

hourintrequired

Hour of birth, eg: 19

minintrequired

Minute of birth, eg: 55

latfloatrequired

Latitude, eg: 19.2056

lonfloatrequired

Longitude, eg: 25.2056

tzonefloatrequired

Timezone, eg: 5.5

curl --location 'https://json.astrologyapi.com/v1/lalkitab_remedies/sun' \
  --header 'Content-Type: application/json' \
  --header 'x-astrologyapi-key: <YOUR_ACCESS_TOKEN>' \
  --data '{
    "day": 10,
    "month": 5,
    "year": 1990,
    "hour": 19,
    "min": 55,
    "lat": 19.2056,
    "lon": 25.2056,
    "tzone": 5.5
}'
Try it

Runs with sample data — no API key needed

{
  "planet": "Sun",
  "house": "Ninth",
  "lal_kitab_desc": [
    "Benefits and favours from government, good health and financially stronger. ",
    "The native will get a government job and comforts of vehicles and servants. ",
    "The native will always be suspicious about others.",
    "If the Sun is in the 4th house, the native.s father will die in his childhood. ",
    "If the Sun is in the 10th house and moon is in the 5th house the native will have a very short life. ",
    "If the 4th house is without any planet, the native will be deprived of government favours and benefits. "
  ],
  "lal_kitab_remedies": [
    "Never wear blue or black clothes.",
    "Throwing a copper coin in a river or canal for 43 years will be highly beneficial.",
    "Abstain from liquor and meat."
  ]
}