Pitra Dosha
POST https://astroapi-3.divineapi.com/indian-api/v1/pitra-dosha
Returns Pitra Dosha in response
Headers
Name
Type
Description
Authorization*
String
your API Access Token
eg: Bearer {token}
Request Body
Name
Type
Description
api_key*
String
your API key
full_name*
String
full name, ex: Rahul kumar
day*
Integer
date of birth, eg: 24
month*
Integer
month of birth, eg: 05
year*
Integer
year of birth, eg: 2023
hour*
Integer
hour, eg: 14
min *
Integer
minute, eg: 40
sec*
Integer
second, eg 43
gender*
String
gender, ex: male
place*
String
place, ex: New Delhi
lat*
Float
latitude, eg: 28.7041
lon*
Float
longitude, eg: 77.1025
// If pitra dosha is false
{
"success": 1,
"data": {
"pitra_dosha": "false",
"content": {
"detail": []
},
"remedies": []
}
}
// If pitra dosha is true
{
"success": 1,
"data": {
"pitra_dosha": "true",
"content": {
"detail": [
"This is a dosha which occurs in your chart due to the effect of the curse in the life of your ancestors. It could be possible that one or more of your ancestors (pitras) carried some sinful or unapproved deeds in their life. The malice created by the virtue of their bad karma gets forwarded to their further generations. Thus pitradosh is an inheritence of the karmic debt of the family line and you have to accpet it. Some of the effects of this dosha is delayed marriage, chronic ailments in the family, financial misery, accidents and death."
]
},
"remedies": [
"Perform Pitru Trapan and Shraddha Puja for the pacification of the souls of your ancestors.",
"Feed Brahmins and donate red clothes to them.",
"Perform Rudrabhishekam and offer water to the banyan tree.",
"Feed cows, dogs and crows daily.",
"Chant Mahamrityunjaya Mantra 1,25,000 times and wear a rudraksha mala.",
"Organise a Narayan Bali Shraddha at the bank of a sacred river."
]
}
}
Take a look at how you might call this method via cURL, NodeJS or JavaScript jQuery AJAX and Python :
curl --location 'https://astroapi-3.divineapi.com/indian-api/v1/pitra-dosha' \
--header 'Authorization: Bearer {Your Auth Token}' \
--form 'api_key="{Your API Key}"' \
--form 'full_name="Rahul kumar"' \
--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"'
Last updated