Planet Analysis
Access Planet Analysis with Divine API's Kundli API. Provide users with detailed insights into the strengths and influences of planets in their birth chart, based on Vedic astrology.
Embark on a yogic journey through time with our 'Planet Analysis' API, unraveling the sequential planetary periods that bestow unique spiritual and material experiences within the paradigm of Indian Astrology.
Returns Planet Analysis in response
POST https://astroapi-3.divineapi.com/indian-api/v2/planet-analysis
Headers
Authorization*
String
your API Access Token
eg: Bearer {token}
Request Body
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
analysis_planet*
String
analysis_planet, eg: moon,sun...
{
"success": 1,
"data": {
"planet": "Moon",
"sign": "Libra",
"sign_no": 7,
"house": 6,
"longitude": "11:30:20",
"lord": "Venus",
"image": "https://divineapi.com/public/api-assets/assets/images/planets/Moon.png",
"analysis": {
"planet_in_house": [
{
"heading": "Harmonizer of the Work Sphere",
"description": "With the Moon in the sixth house, you bring emotional sensitivity to your work environment. You may be highly attuned to the emotional needs of your colleagues and have a nurturing and supportive approach. Your empathetic nature allows you to create harmonious and caring relationships with coworkers."
},
{
"heading": "Guardian of Physical and Emotional Balance",
"description": "The placement of the Moon in the sixth house indicates an intuitive awareness of health and well-being. You have a natural ability to sense what your body needs and understand the importance of self-care. Trusting your instincts can guide you in making beneficial choices for your physical and emotional health."
},
{
"heading": "Emissary of Daily Rituals",
"description": "Your emotions are closely tied to your daily routines and work responsibilities. The way you structure your day and the tasks you engage in can significantly impact your mood and emotional well-being. It's important for you to find a healthy balance and establish routines that support your emotional needs."
},
{
"heading": "Nurturer in the Professional Realm",
"description": "You have a nurturing and supportive approach to your work. You may excel in roles where you can provide care and assistance to others, such as healthcare, counseling, or social services. Your compassion and understanding create a positive and harmonious work environment."
},
{
"heading": "Seeker of Emotional Consistency in Career",
"description": "The Moon's influence in the sixth house can bring fluctuations in your work motivation. Your level of enthusiasm and dedication may vary depending on your emotional state. It's important for you to find ways to stay motivated and engaged, even during periods of emotional ups and downs."
}
],
"planet_in_sign": [
{
"heading": "Harmonious Emotional Landscape",
"description": "With the Moon in Libra, your emotional world basks in the glow of harmony and grace. You feel most secure and at peace when surrounded by balanced relationships and aesthetic beauty, seeking an environment that reflects your inner need for tranquility."
},
{
"heading": "Diplomat of the Heart",
"description": "Internally, you navigate the complexities of emotions with diplomacy. Your heart yearns for balance and you often act as the mediator in emotional conflicts. This attunement to others' feelings makes you exceptionally empathetic but also vulnerable to external discord."
},
{
"heading": "Peacemaker's Strength",
"description": "Your greatest strengths lie in your gentle approach to handling conflicts and your innate ability to understand different perspectives. This not only endears you to others but often places you in roles where tact and fairness are required."
},
{
"heading": "Challenges in Self-Assertion",
"description": "The quest for external peace can sometimes lead you to compromise too much of yourself. The challenge for your emotional growth is learning to affirm your own needs and express your discontent when necessary, without fearing the loss of harmony."
},
{
"heading": "Mission of Relational Balance",
"description": "Your life’s mission revolves around creating and maintaining balance, particularly within relationships. You are drawn to roles that enable you to foster understanding and cooperation among diverse individuals, enhancing not only your personal world but also the broader social fabric."
}
]
}
}
}
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/v2/planet-analysis' \
--header 'Authorization: Bearer {Your Auth Token}' \
--form 'api_key="{Your API Key}"' \
--form 'full_name="Rahul kumar"' \
--form 'day="24"' \
--form 'month="05"' \
--form 'year="2023"' \
--form 'hour="14"' \
--form 'min="40"' \
--form 'sec="43"' \
--form 'gender="male"' \
--form 'place="New Delhi "' \
--form 'lat="28.7041"' \
--form 'lon="77.1025"' \
--form 'tzone="5.5"' \
--form 'lan="en"' \
--form 'analysis_planet="moon"'
Last updated