Doshas
http
POST /v1/doshaDetects astrological doshas (afflictions) in the birth chart.
Request body: { "profileId": "..." }
Response
json
{
"success": true,
"data": {
"doshas": [
{
"name": "Mangal Dosha",
"isPresent": true,
"severity": "moderate",
"affectedHouses": [1, 4, 7, 8, 12],
"description": "Mars placed in the 4th house from ascendant.",
"remedies": [
"Recite Hanuman Chalisa on Tuesdays",
"Wear red coral after consulting a jyotishi"
]
},
{
"name": "Kaal Sarp Dosha",
"isPresent": false
}
]
}
}Doshas checked
| Dosha | Trigger condition |
|---|---|
| Mangal Dosha | Mars in houses 1, 4, 7, 8, or 12 |
| Kaal Sarp Dosha | All planets between Rahu and Ketu |
| Pitra Dosha | Sun or Moon afflicted by Rahu/Ketu |
| Shrapit Dosha | Saturn and Rahu conjunction |
| Grahan Dosha | Sun/Moon conjunct Rahu or Ketu |
Yogas
http
POST /v1/yogasIdentifies auspicious and inauspicious yoga combinations in the chart.
Request body: { "profileId": "..." }
Response
json
{
"success": true,
"data": {
"yogas": [
{
"name": "Gaja Kesari Yoga",
"isPresent": true,
"strength": "strong",
"formingPlanets": ["Jupiter", "Moon"],
"description": "Jupiter in a kendra from Moon — bestows wisdom, prosperity, and fame.",
"category": "auspicious"
},
{
"name": "Viparita Raja Yoga",
"isPresent": true,
"strength": "moderate",
"formingPlanets": ["Saturn"],
"description": "Dusthana lord in another dusthana — success through adversity.",
"category": "auspicious"
}
]
}
}