Copy page

Copy page as Markdown for LLMs

View as Markdown

View this page as plain text


Open in ChatGPT

Ask ChatGPT about this page

Open in Claude

Ask Claude about this page

Lal Kitab Teva API

Access Lal Kitab Teva from the DivineAPI Lal Kitab suite. Based on the principles of Lal Kitab (the Red Book of Vedic astrology), this endpoint returns the complete Lal Kitab Teva (horoscope) details for the provided birth details.


API Endpoint

POST https://astroapi-3.divineapi.com/indian-api/v1/lal-kitab/teva

Returns the requested Lal Kitab data in the response.


Supported Language Codes

You can localize the API response by passing the lan parameter in the request body.

CodeLanguage
enEnglish
hiHindi
bnBengali
maMarathi
tmTamil
tlTelugu
mlMalayalam
knKannada

Support Article: Translating Vedic APIs into Different Languages


Headers

NameTypeDescription
Authorization *StringYour API Access Token, e.g. Bearer {token}

Request Body

NameTypeDescription
api_key *StringYour API key
full_name *StringFull name, e.g. Rahul Kumar
day *IntegerDate of birth, e.g. 24
month *IntegerMonth of birth, e.g. 05
year *IntegerYear of birth, e.g. 2023
hour *IntegerHour (24-hour format), e.g. 14
min *IntegerMinute, e.g. 40
sec *IntegerSecond, e.g. 43
gender *StringGender, e.g. male
place *StringPlace of birth, e.g. New Delhi
lat *FloatLatitude, e.g. 28.7041
lon *FloatLongitude, e.g. 77.1025
tzone *FloatTimezone, e.g. 5.5 — See Timezone List
lanStringLanguage code as per the table above; default is en

200: OK Lal Kitab Teva Fetched Successfully

{
    "success": 1,
    "data": {
        "teva": {
            "blind_teva": {
                "matched": false,
                "content": {}
            },
            "nabalig_teva": {
                "matched": false,
                "content": {}
            },
            "dharmi_teva": {
                "matched": false,
                "content": {}
            },
            "kayam_greh_teva": {
                "matched": true,
                "content": {
                    "key_areas": [
                        {
                            "content": "Kayam Greh Teva is identified when planets in the chart occupy positions of permanent strength, often in their own signs, exaltation, or houses where they become fixed in influence. These planets do not fluctuate with transits as much as normal placements. The chart develops a rigid framework where planetary results, once activated, continue delivering the same outcomes consistently.",
                            "title": "Identification and Formation"
                        },
                        {
                            "content": "Career under this teva tends to follow a single, unchanging trajectory. Natives often stay in one field or organization for their entire working life. Job stability is high, but dramatic career shifts are rare. If the permanent planet is benefic, long-term career success is assured. If malefic, persistent professional challenges become the norm and require targeted remedies.",
                            "title": "Career and Professional Life"
                        },
                        {
                            "content": "Relationships are characterized by deep loyalty and permanence. Once bonds are formed, they rarely break. However, if initial relationship dynamics are negative, conflict patterns also become entrenched. The native must establish healthy relationship foundations early, as course correction becomes increasingly difficult over time under this teva.",
                            "title": "Relationships and Family"
                        },
                        {
                            "content": "Health conditions under Kayam Greh Teva tend to be chronic rather than acute. If overall health is good, it remains robust for decades. If a health issue emerges, it typically becomes a lifelong management situation. Preventive care and early intervention are especially important because conditions become permanent once established.",
                            "title": "Health and Longevity"
                        },
                        {
                            "content": "Remedies for Kayam Greh Teva must be performed consistently over long periods, as quick fixes do not work with permanent planetary placements. Daily rituals, sustained charitable practices, and lifestyle adjustments aligned with the permanent planet's nature are more effective than one-time remedial acts. Patience and regularity define the remedial path.",
                            "title": "Remedial Approach"
                        }
                    ],
                    "summary": "Kayam Greh Teva features permanent planets that deliver lasting, unchanging results throughout life. Once a result manifests, it remains stable. This teva provides predictability and consistency, though it also means negative patterns are equally persistent and difficult to alter."
                }
            },
            "saathi_greh_teva": {
                "matched": true,
                "content": {
                    "key_areas": [
                        {
                            "content": "Saathi Greh Teva forms when two or more naturally friendly planets occupy positions where they can support each other's significations. This includes conjunction in the same house, mutual aspect, or sign exchange. The key criterion is that both planets must be natural friends in Lal Kitab's planetary friendship framework. Their combined energy creates a synergistic effect on the houses they influence.",
                            "title": "Identification and Formation"
                        },
                        {
                            "content": "Career flourishes through partnerships, collaborations, and team efforts. The native excels in joint ventures and performs better with supportive colleagues than working alone. Business partnerships are highly favored under this teva. The companion planets ensure that professional alliances bring mutual benefit, and the native often finds success through networking and cooperative projects.",
                            "title": "Career and Professional Life"
                        },
                        {
                            "content": "This teva blesses the native with supportive relationships. Spouse, siblings, and close friends act as pillars of strength. The marriage is characterized by mutual understanding and complementary strengths. Family members actively contribute to each other's growth. Social circles are warm and reliable, providing emotional and practical support during challenging times.",
                            "title": "Relationships and Family"
                        },
                        {
                            "content": "Finances benefit from combined planetary support. Joint investments, family businesses, and shared financial planning yield better results than solo efforts. The companion planets protect against major financial losses by providing backup significations. Wealth accumulation is steady when the native leverages partnerships and avoids going against the collaborative grain of this teva.",
                            "title": "Financial Prosperity"
                        },
                        {
                            "content": "If the companion planets are separated by transit or weakened by dasha periods, the native may experience temporary loss of support systems. Over-dependence on others is the primary risk. The native should develop individual strength alongside partnership skills. When one companion planet is afflicted, the other may also suffer reduced effectiveness.",
                            "title": "Potential Challenges"
                        }
                    ],
                    "summary": "Saathi Greh Teva occurs when companion planets support each other through conjunction, mutual aspect, or exchange. These friendly planetary pairs amplify each other's positive results. The native benefits from collaborative energies, and teamwork becomes a defining theme across life areas."
                }
            },
            "aadhi_andhi_teva": {
                "matched": false,
                "content": {}
            },
            "mukabale_greh_teva": {
                "matched": false,
                "content": {}
            }
        }
    }
}

Code Integration Examples

Below are examples for using this API in different programming environments.


cURL Example

curl --location 'https://astroapi-3.divineapi.com/indian-api/v1/lal-kitab/teva' \
--header 'Authorization: Bearer {Your Auth Token}' \
--form 'api_key="{Your API Key}"' \
--form 'full_name="Test"' \
--form 'day="24"' \
--form 'month="05"' \
--form 'year="2023"' \
--form 'hour="14"' \
--form 'min="40"' \
--form 'sec="43"' \
--form 'gender="male"' \
--form 'place="New Delhi"' \
--form 'lat="28.7041"' \
--form 'lon="77.1025"' \
--form 'tzone="5.5"' \
--form 'lan="en"' \

NodeJS Example

var request = require('request');
var options = {
  'method': 'POST',
  'url': 'https://astroapi-3.divineapi.com/indian-api/v1/lal-kitab/teva',
  'headers': {
    'Authorization': 'Bearer {Your Auth Token}'
  },
  formData: {
    'api_key': '{Your API Key}',
    'full_name': 'Test',
    'day': '24',
    'month': '05',
    'year': '2023',
    'hour': '14',
    'min': '40',
    'sec': '43',
    'gender': 'male',
    'place': 'New Delhi',
    'lat': '28.7041',
    'lon': '77.1025',
    'tzone': '5.5',
    'lan': 'en'
  }
};
request(options, function (error, response) {
  if (error) throw new Error(error);
  console.log(response.body);
});

JavaScript (jQuery AJAX) Example

var form = new FormData();
form.append("api_key", "{Your API Key}");
form.append("full_name", "Test");
form.append("day", "24");
form.append("month", "05");
form.append("year", "2023");
form.append("hour", "14");
form.append("min", "40");
form.append("sec", "43");
form.append("gender", "male");
form.append("place", "New Delhi");
form.append("lat", "28.7041");
form.append("lon", "77.1025");
form.append("tzone", "5.5");
form.append("lan", "en");

var settings = {
  "url": "https://astroapi-3.divineapi.com/indian-api/v1/lal-kitab/teva",
  "method": "POST",
  "timeout": 0,
  "headers": {
    "Authorization": "Bearer {Your Auth Token}"
  },
  "processData": false,
  "mimeType": "multipart/form-data",
  "contentType": false,
  "data": form
};

$.ajax(settings).done(function (response) {
  console.log(response);
});

Python Example

import requests

url = "https://astroapi-3.divineapi.com/indian-api/v1/lal-kitab/teva"

payload = {'api_key': '{Your API Key}',
'full_name': 'Test',
'day': '24',
'month': '05',
'year': '2023',
'hour': '14',
'min': '40',
'sec': '43',
'gender': 'male',
'place': 'New Delhi',
'lat': '28.7041',
'lon': '77.1025',
'tzone': '5.5',
'lan': 'en'}

headers = {
  'Authorization': 'Bearer {Your Auth Token}'
}

response = requests.request("POST", url, headers=headers, data=payload)

print(response.text)


This API serves as a foundation for further astrological computations, including Kundli generation, planetary charts, yogas, and personalized reports. It provides all key birth-time astrological parameters such as tithi, nakshatra, rashi, yoga, karana, varna, gana, and planetary influences, essential for deeper Vedic analysis.