AstroAsk Docs
API referenceVedic astrologyV1Ascendant

POST /v1/ascendant

The rising sign (Lagna) of the birth chart: sign, exact degree, nakshatra and midheaven.

POST
/v1/ascendant

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/ascendant" \  -H "Content-Type: application/json" \  -d '{    "date": "1990-01-15T10:30:00",    "lat": 28.6139,    "lng": 77.209  }'
{  "success": true,  "data": {    "degree": 331.43152605600557,    "sign": 11,    "signName": "Pisces",    "nakshatra": "Purva Bhadrapada",    "nakshatraPada": 4,    "midheaven": 243.1623328532662  }}