Skip to content

Doshas

http
POST /v1/dosha

Detects 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

DoshaTrigger condition
Mangal DoshaMars in houses 1, 4, 7, 8, or 12
Kaal Sarp DoshaAll planets between Rahu and Ketu
Pitra DoshaSun or Moon afflicted by Rahu/Ketu
Shrapit DoshaSaturn and Rahu conjunction
Grahan DoshaSun/Moon conjunct Rahu or Ketu

Yogas

http
POST /v1/yogas

Identifies 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"
      }
    ]
  }
}