🌍 Astrocartography API and ✋ Palmistry API are now live. Ship them in your app today.Get Started

Lal Kitab Planets

The API lalkitab_planets provides information about the placement, nature, and position of various planets. The response contains details like the planet's name, its position in a particular sign, whether it is in a favorable position or not, and its nature, whether it is malefic or benefic.
POSThttps://json.astrologyapi.com/v1/lalkitab_planets

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.

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_planets' \
  --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',\r\n    rashi: 'Virgo',\r\n    soya: true,\r\n    position: ' NEUTRAL SIGN',\r\n    nature: 'Malefic' },\r\n  { planet: 'Moon',\r\n    rashi: 'Scorpio',\r\n    soya: false,\r\n    position: ' DEBILITATED',\r\n    nature: 'Malefic' },\r\n  { planet: 'Mars',\r\n    rashi: 'Scorpio',\r\n    soya: false,\r\n    position: ' OWN',\r\n    nature: 'Malefic' },\r\n  { planet: 'Mercury',\r\n    rashi: 'Libra',\r\n    soya: true,\r\n    position: ' FRIEND SIGN',\r\n    nature: 'Malefic' },\r\n  { planet: 'Jupiter',\r\n    rashi: 'Scorpio',\r\n    soya: false,\r\n    position: ' FRIEND SIGN',\r\n    nature: 'Benefic' },\r\n  { planet: 'Venus',\r\n    rashi: 'Leo',\r\n    soya: true,\r\n    position: ' ENEMY SIGN',\r\n    nature: 'Benefic' },\r\n  { planet: 'Saturn',\r\n    rashi: 'Cancer',\r\n    soya: true,\r\n    position: ' ENEMY SIGN',\r\n    nature: 'Malefic' },\r\n  { planet: 'Rahu',\r\n    rashi: 'Scorpio',\r\n    soya: false,\r\n    position: '-',\r\n    nature: 'Malefic' },\r\n  { planet: 'Ketu',\r\n    rashi: 'Taurus',\r\n    soya: false,\r\n    position: '-',\r\n    nature: 'Malefic' } ]"