Copy page
Copy page as Markdown for LLMs
Navigate the cycles of life with our Pratyantar Dasha Analysis API, unraveling the innermost planetary sub-periods that refine, trigger, and time events within the broader Dasha framework of Indian Astrology.
maha_dasha, antar_dasha and pratyantar_dasha values
sun: For Sun dasha
moon: For Moon dasha
mars: For Mars dasha
mercury: For Mercury dasha
venus: For Venus dasha
saturn: For Saturn dasha
jupiter: For Jupiter dasha
ketu: For Ketu dasha
rahu: For Rahu dasha
Support Article URL
https://support.divineapi.com/general-api-support/translating-an-indian-vedic-apis-into-a-different-language
| Code | Language |
|---|---|
| en | English |
| hi | Hindi |
| bn | Bengali |
| ma | Marathi |
| tm | Tamil |
| tl | Telugu |
| ml | Malayalam |
| kn | Kannada |
Guide
These languages are supported by this API. Pass "lan" in the body with one of the above codes. Default is en.
Step by Step Pratyantar Dasha Analysis API Postman Testing Integration
POST https://astroapi-3.divineapi.com/indian-api/v1/pratyantar-dasha-analysis
This API gives an interpretive report for a specific Pratyantar (sub-sub) Dasha inside a specific Antar Dasha and Maha Dasha.
Because Pratyantar Dasha is the finer timer of events, the response focuses on actual lived experiences during that slice of time across:
Career
Health
Finance
Relationships
The combined influence of the three dasha lords (Maha, Antar, and Pratyantar) is taken into account.
| Name | Type | Description |
|---|---|---|
| Authorization* | String | Your API Access Token, e.g. Bearer {token} |
| Name | Type | Description |
|---|---|---|
| api_key* | String | Your API key |
| maha_dasha* | String | Major dasha planet, e.g. rahu |
| antar_dasha* | String | Sub-period planet, e.g. moon |
| pratyantar_dasha* | String | Sub-sub-period planet, e.g. mars |
| lan | String | Optional language code, default en |
{
"success": 1,
"data": {
"maha_dasha": "Rahu",
"antar_dasha": "Moon",
"pratyantar_dasha": "Mars",
"analysis": {
"career": "Given your current Dasha cycle, there are mixed outcomes predicted for your career. Rahu's Maha Dasha can bring about significant changes and opportunities in your professional life. However, this phase also requires you to be vigilant as Rahu also has the tendency to cause confusion and misconceptions.\n\nMoon's Antardasha suggests that you may feel more emotional and sensitive towards your work. You may experience mood fluctuations that could impact your productivity. Nonetheless, it is also a period that can boost your creativity.\n\nLastly, Mars Pratyantar Dasha implies that you will be full of energy, ambitious and determined, all of which can have a positive impact on your career. However, the aggression and impatience associated with Mars can sometimes lead to conflicts. \n\nIn summary, this period will bring a mixed bag of experiences in your career. Maintaining a balanced approach, being patient, and avoiding conflicts can help you to navigate this phase successfully.",
"health": "During the Rahu Mahadasha, Moon Antardasha, and Mars Pratyantar Dasha period, your health may fluctuate more than usual. Rahu often causes allergies, hives or digestive issues, so you might experience some unexpected discomfort related to these areas. Keep a close check on your diet and lifestyle. The influence of Moon may cause mental stress or mood swings, so it is advisable to practice self-care, undertake mindful exercises like Yoga, spend time in nature, and maintain your emotional health. Since the Pratyantar Dasha belongs to Mars, you may be prone to conditions like fevers, infections or injuries, especially if you are involved in physical activities or sports. Regular medical check-ups and precautionary measures are essential during this period. Ensure you have enough rest, maintain a balanced diet, and stay hydrated. It's recommended to take things slow, focusing on peace and prosperity in your life.",
"finance": "The ongoing Rahu Maha Dasha indicates a period of growth and expansion, but it will not come without its challenges. It demands hard work and effort on your part. However, the combination with Moon Antardasha suggests that financial gains through investments or sudden wealth are possible but might bring emotional disturbances as well. \n\nThe by-phase of Mars Pratyantar Dasha implies that you may need to exercise control over impulsive financial decisions or you may experience unpredictable expenditure. You need to avoid short-term high-risk investments. \n\nYour finances will witness significant alternations - highs and lows - but it's a fruitful period to learn money management skills. Be patient and careful with your financial dealings. Your earnings will match your efforts, so persist in your endeavours with determination. \n\nWhether the net outcome is beneficial or not will be largely dependent on your individual horoscope, placement of planets and their correlation with Rahu, Moon, and Mars. Keep your perspective in check and go with the flow of this challenging yet transforming period.",
"relationships": "Rahu Maha Dasha with Moon Antardasha and Mars Pratyantar Dasha can result in a mixed bag of experiences in your relationship sphere. Rahu's influence might lead you towards unconventional relationships or may even manifest as obsession in some forms. A sense of misunderstandings, changes, or upheavals may be expected during this phase. The Moon, being a natural significator of emotions, represents nurturing and emotional connection within relationships. This Antardasha can stir intense emotions, leading to vulnerabilities and leading to growth in relationships.\n\nHowever, Mars Pratyantar Dasha may lead to moments of impulsiveness and aggression. It could bring certain conflicts, disagreements, and volatility in relationships, therefore, balance and patience will be essential during this period. Overall, this combination in your Dasha suggests a period of transformation in relationships, with potential for growth, but it might also involve some rough patches. Hence, it is advisable to stay patient, understanding, and proactive during this time."
}
}
}Below are examples of how you might call this API using different programming languages and environments.
curl --location 'https://astroapi-3.divineapi.com/indian-api/v1/pratyantar-dasha-analysis' \
--header 'Authorization: Bearer {Your Auth Token}' \
--form 'api_key="{Your API Key}"' \
--form 'maha_dasha="rahu"' \
--form 'antar_dasha="moon"' \
--form 'pratyantar_dasha="mars"' \
--form 'lan="en"'var request = require('request');
var options = {
'method': 'POST',
'url': 'https://astroapi-3.divineapi.com/indian-api/v1/pratyantar-dasha-analysis',
'headers': {
'Authorization': 'Bearer {Your Auth Token}'
},
formData: {
'api_key': '{Your API Key}',
'maha_dasha': 'rahu',
'antar_dasha': 'moon',
'pratyantar_dasha': 'mars',
'lan': 'en'
}
};
request(options, function (error, response) {
if (error) throw new Error(error);
console.log(response.body);
});
var form = new FormData();
form.append("api_key", "{Your API Key}");
form.append("maha_dasha", "rahu");
form.append("antar_dasha", "moon");
form.append("pratyantar_dasha", "mars");
form.append("lan", "en");
var settings = {
"url": "https://astroapi-3.divineapi.com/indian-api/v1/pratyantar-dasha-analysis",
"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);
});import requests
url = "https://astroapi-3.divineapi.com/indian-api/v1/pratyantar-dasha-analysis"
payload = {'api_key': '{Your API Key}',
'maha_dasha': 'rahu',
'antar_dasha': 'moon',
'pratyantar_dasha': 'mars',
'lan': 'en'}
headers = {
'Authorization': 'Bearer {Your Auth Token}'
}
response = requests.request("POST", url, headers=headers, data=payload)
print(response.text)