Ascendant Report
Unveil your astrological identity with our 'Ascendant Report' API, providing detailed insights into the rising sign's influence on your personality, relationships, and life path within the context of Indian Astrology.
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/v2/ascendant-report
Returns Ascendant Report in response
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
tzone*
Float
lan
String
{
"success": 1,
"data": {
"planetary_lord": "Mercury",
"symble": "Virgin Girl",
"characteristics": "Earthy, Dual, Female",
"day_of_fast": "Wednesday",
"lucky_stone": [
"Diamond, Blue Sapphire",
"White Sapphire, Phenakite, White Topaz"
],
"ascendant": "Virgo",
"image": "https://astroapi-3.divineapi.com/public/assets/images/zodiacs/Virgo.png",
"analysis": {
"personality": "As a Virgo ascendant, you're known for your practicality, reliability, and meticulous nature. You have a keen eye for detail and an innate desire for perfection. Moreover, you are highly intellectual and analytical, using logic and reasoning to solve complex problems. You are generally quiet and reserved but are willing to help and support those around you. Remember, you're often critical – not just of others but more so of yourself. This sometimes leads to self-doubt. Embrace your strengths and hone your skills instead of focusing on imperfections.",
"career": "You make a mark in the workplace due to your analytical skills, diligence and hardworking nature. Careers that involve detail-oriented tasks, like data analysis, research, editing, or accountancy, are well-suited for you. You're also a good fit for service-oriented fields like healthcare, teaching, or counselling. With your knack for perfection and acute attention to detail, it's important for you to find a career where these qualities are valued. Keep pushing yourself to improve and continue learning to achieve your career goals.",
"health": "Your meticulous nature extends to your health and wellness. You are vigilant about your diet and exercise routine and often take care of your health that goes unnoticed by many. However, overworking and burdening yourself with too many responsibilities can often lead to stress and health issues related to nervous system and intestines. It's essential you learn ways to manage your anxiety and stress levels, and not let your drive for perfection paint over your health regime.",
"finance": "With your practical and analytical mind, financial management comes naturally to you, making you quite good at handling your finances. You have a tendency to be conservative and cautious with your investments, preferring slow and steady growth over risky ventures. You believe in saving for the future and are rarely impulsive in your spending. However, your perfectionist nature can sometimes lead to unnecessary spending on items of high quality, even when they're not needed.",
"relationships": "You tend to approach relationships with the same level of detail and diligence that you apply to other areas in life. You take time to build trusting relationships and look for partners who are practical and intellectually stimulating. You are loyal and devoted, often willing to go to great lengths to help your loved ones. However, your critical nature can strain relationships if not checked. Try to be more tolerant and avoid unrealistic expectations in your relationships."
}
}
}
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/ascendant-report' \
--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"'
var request = require('request');
var options = {
'method': 'POST',
'url': 'https://astroapi-3.divineapi.com/indian-api/v2/ascendant-report',
'headers': {
'Authorization': 'Bearer {Your Auth Token}'
},
formData: {
'api_key': '{Your API Key}',
'full_name': 'Rahul kumar',
'day': '24',
'month': '05',
'year': '2023',
'hour': '14',
'min': '40',
'sec': '43',
'gender': 'male',
'place': 'New Delhi ',
'lat': '28.7041',
'lon': '77.1025',
'tzone': '5.5',
'lan': 'en'
}
};
request(options, function (error, response) {
if (error) throw new Error(error);
console.log(response.body);
});
var form = new FormData();
form.append("api_key", "{Your API Key}");
form.append("full_name", "Rahul kumar");
form.append("day", "24");
form.append("month", "05");
form.append("year", "2023");
form.append("hour", "14");
form.append("min", "40");
form.append("sec", "43");
form.append("gender", "male");
form.append("place", "New Delhi ");
form.append("lat", "28.7041");
form.append("lon", "77.1025");
form.append("tzone", "5.5");
form.append("lan", "en");
var settings = {
"url": "https://astroapi-3.divineapi.com/indian-api/v2/ascendant-report",
"method": "POST",
"timeout": 0,
"headers": {
"Authorization": "Bearer {Your Auth Token}"
},
"processData": false,
"mimeType": "multipart/form-data",
"contentType": false,
"data": form
};
$.ajax(settings).done(function (response) {
console.log(response);
});
import requests
url = "https://astroapi-3.divineapi.com/indian-api/v2/ascendant-report"
payload = {'api_key': '{Your API Key}',
'full_name': 'Rahul kumar',
'day': '24',
'month': '05',
'year': '2023',
'hour': '14',
'min': '40',
'sec': '43',
'gender': 'male',
'place': 'New Delhi ',
'lat': '28.7041',
'lon': '77.1025',
'tzone': '5.5',
'lan': 'en'}
headers = {
'Authorization': 'Bearer {Your Auth Token}'
}
response = requests.request("POST", url, headers=headers, data=payload)
print(response.text)
Last updated