Ascendant Sign Transit

Get Ascendant Sign Transit details with Divine API's Kundli API. Provide users with insights into the transit of the Ascendant sign and its astrological influence on life events.

Ascendant Sign Transit API (Lagna Rashi Transit): This API provides insights into how planetary transits influence the ascendant sign, offering key astrological events and their general impacts.

Supported Language Codes:

Support Article URL - https://support.divineapi.com/general-api-support/translating-an-indian-vedic-apis-into-a-different-language

en For English

hi For Hindi

bn For Bengali

ma For Marathi

tm For Tamil

tl For Telugu

ml For Malayalam

kn For Kannada

Guide: These languages are supported by this API. You can use by passing "lan" in body with a value of the language.

POST https://astroapi-3.divineapi.com/indian-api/v1/kundli-transit/ascendant

Returns Ascendant sign transit 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

tzone*

Float

timezone, eg: 5.5 Timezone List

lan

String

Language code as per the table above, default is 'en'.

transit_year*

Integer

year of transit, eg: 2024

transit_month*

Integer

month of transit, eg: 08

transit_day*

Integer

day of transit, eg: 06

transit_hour

Integer

hour of transit eg: 05 default 0

transit_min

Integer

min of transit eg: 06 default 0

transit_sec

Integer

sec of transit eg: 15 default 0

chart_type

String

Chart type, eg: south/north

{
    "success": 1,
    "data": {
        "svg": "SVG CODE",  
        "data chart": "raw_data", 
        "base64_image": "base64_svg_image",     
    }
}

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/kundli-transit/ascendant' \
--form 'api_key=""' \
--form 'full_name="Rahul Kumar"' \
--form 'day="01"' \
--form 'month="12"' \
--form 'year="1998"' \
--form 'hour="21"' \
--form 'min="55"' \
--form 'sec="30"' \
--form 'gender="male"' \
--form 'place="New Delhi, India"' \
--form 'lat="28.7041"' \
--form 'lon="77.1025"' \
--form 'tzone="5.5"' \
--form 'lan="en"' \
--form 'transit_year="2024"' \
--form 'transit_month="08"' \
--form 'transit_day="06"'

Last updated