AstroAsk Docs
API referenceVedic astrologyV1DoshaManglik

POST /v1/dosha/manglik

Manglik Dosha calculator — Mangal (Kuja) Dosha from Mars in the 1st, 4th, 7th, 8th or 12th house counted from Lagna, the Moon and Venus, with severity, classical cancellation rules, a Mars-in-2nd note and a plain-English reading. Manglik dosha calculator API.

POST
/v1/dosha/manglik

Authorization

ApiKeyAuth
X-API-Key<token>

In: header

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

application/json

curl -X POST "https://example.com/v1/dosha/manglik" \  -H "Content-Type: application/json" \  -d '{    "date": "1990-01-15T10:30:00",    "lat": 28.6139,    "lng": 77.209  }'
{  "success": true,  "data": {    "isManglik": true,    "severity": "Mild",    "percentage": 25,    "references": [      {        "reference": "fromLagna",        "house": 9,        "triggers": false      },      {        "reference": "fromMoon",        "house": 4,        "triggers": true      },      {        "reference": "fromVenus",        "house": 11,        "triggers": false      }    ],    "marsIn2nd": false,    "cancellations": [      {        "id": "mars-in-own-sign",        "name": "Mars in its own sign (Aries or Scorpio)",        "rationale": "Classical Jyotish treats Mars in its own rasi as strong, dignified and well-disposed; Kuja Dosha is traditionally held cancelled when Mars occupies its own sign (Parashara graha-dignity convention).",        "cancels": [          "fromLagna",          "fromMoon",          "fromVenus"        ]      }    ],    "isCancelled": true,    "description": "Mangal Dosha (Kuja Dosha) is present in this chart: Mars occupies house 4 from the Moon, giving a mild dosha. In classical Jyotish this combination is weighed during marriage matching and can point to friction or delay in partnerships. However, this reading is softened by classical cancellation: Mars in its own sign (Aries or Scorpio)."  }}