Lal Kitab Antardasha Content API
Access Lal Kitab Antardasha Content from the DivineAPI Lal Kitab suite. Based on the principles of Lal Kitab (the Red Book of Vedic astrology), this endpoint returns the Lal Kitab interpretation content for a given Maha Dasha and Antar Dasha for the provided birth details.
API Endpoint
POST https://astroapi-3.divineapi.com/indian-api/v1/lal-kitab/antardasha-content
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.
| Code | Language |
|---|---|
| en | English |
| hi | Hindi |
| bn | Bengali |
| ma | Marathi |
| tm | Tamil |
| tl | Telugu |
| ml | Malayalam |
| kn | Kannada |
Support Article: Translating Vedic APIs into Different Languages
Headers
| Name | Type | Description |
|---|---|---|
| Authorization * | String | Your API Access Token, e.g. Bearer {token} |
Request Body
| Name | Type | Description |
|---|---|---|
| api_key * | String | Your API key |
| lan | String | Language code as per the table above; default is en |
| antar_dasha * | String | The Antar Dasha planet, e.g. Moon. |
| maha_dasha * | String | The Maha Dasha planet, e.g. Sun. |
200: OK Lal Kitab Antardasha Content Fetched Successfully
{
"success": 1,
"data": {
"maha_dasha": "Sun",
"antar_dasha": "Moon",
"content": {
"key_areas": [
{
"content": "Moon's nurturing energy softens the Sun's intense authority, creating a beautiful balance between strength and sensitivity during this period. The native develops heightened emotional intelligence that proves invaluable in both personal and professional settings. Self-confidence grows organically without becoming arrogance. Creative imagination flourishes and the native finds innovative solutions to longstanding problems. Mental peace prevails as the harmonious planetary friendship translates into inner contentment and reduced anxiety about the future.",
"title": "Emotional Balance and Confidence"
},
{
"content": "The Sun-Moon friendship creates a magnetic public presence that draws admiration and support from all social quarters during this period. The native gains popularity in their community and may receive awards or public honors. Political ambitions receive favorable cosmic support during this auspicious combination. Media attention and social media presence grow organically. Women in positions of power become strong allies and supporters. The native's mother or a maternal figure plays a particularly beneficial role in advancing their career and social standing.",
"title": "Public Recognition and Social Status"
},
{
"content": "This combination strongly favors family life and domestic happiness during its duration. Relations with parents improve dramatically, especially with the mother. Home renovation or purchase of a new residence brings lasting satisfaction and comfort. Family gatherings become joyful occasions filled with warmth and celebration. The native's spouse feels emotionally supported and the marital bond strengthens considerably. Children respond positively to the native's balanced parenting approach that combines discipline with genuine affection and understanding.",
"title": "Family and Domestic Harmony"
},
{
"content": "Physical health remains strong as the Sun provides vitality while the Moon ensures emotional well-being during this harmonious period. Skin problems clear up and the native's complexion improves noticeably. Water-based therapies and moonlight meditation prove especially beneficial for overall wellness. The native should drink water stored in a silver vessel and consume milk-based preparations regularly. Eye health requires gentle attention, and wearing pearl jewelry or keeping a silver square piece enhances the Moon's protective influence on overall health.",
"title": "Health and Wellness"
}
],
"summary": "Sun Mahadasha with Moon Antardasha creates a luminous and emotionally enriching period in Lal Kitab. Sun and Moon share a deep friendship, representing the father-mother cosmic pair. This combination blesses the native with emotional stability, public recognition, enhanced intuition, and harmonious relationships with authority figures and family."
}
}
}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/antardasha-content' \
--header 'Authorization: Bearer {Your Auth Token}' \
--form 'api_key="{Your API Key}"' \
--form 'maha_dasha="Sun"' \
--form 'antar_dasha="Moon"' \
--form 'lan="en"' \
NodeJS Example
var request = require('request');
var options = {
'method': 'POST',
'url': 'https://astroapi-3.divineapi.com/indian-api/v1/lal-kitab/antardasha-content',
'headers': {
'Authorization': 'Bearer {Your Auth Token}'
},
formData: {
'api_key': '{Your API Key}',
'maha_dasha': 'Sun',
'antar_dasha': 'Moon',
'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("maha_dasha", "Sun");
form.append("antar_dasha", "Moon");
form.append("lan", "en");
var settings = {
"url": "https://astroapi-3.divineapi.com/indian-api/v1/lal-kitab/antardasha-content",
"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/antardasha-content"
payload = {'api_key': '{Your API Key}',
'maha_dasha': 'Sun',
'antar_dasha': 'Moon',
'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.