The romantic_personality_report/tropical API provides a detailed report on the romantic personality traits of an individual based on their birth chart. The response includes insights into the individual's emotional intensity, dependability, communication style, idealistic views, commitment level, and problem-solving approach in relationships. The report highlights strengths and weaknesses, making it an excellent tool for improving one's relationships.
Guide:These languages are supported by this API. You can use them by passing Accept-Language header with a value of the language code.
Params | Data type | Descriptions |
day required month required year required hour required min required lat required lon required tzone required house_type | int int int int int float float float string | date of birth, eg: 10 month of birth, eg: 5 year of birth, eg: 1990 hour, eg: 19 minute, eg: 55 latitude, eg: 19.2056 longitude, eg: 25.2056 timezone, eg: 5.5 Default : "placidus" // koch/topocentric/poryphry/equal_house/whole_sign |
{
"report": [
"You can be very emotionally intense as well, sometimes verging toward the jealous or even vindictive side of things. You want nothing more than to be understood by your partner, but you tend to be secretive, preventing them from knowing the real you. ",
"You are very tenacious and you do not give up or let go of things or people easily. When you feel you have been taken for granted,you don’t always confront your lover directly. You are dependable even when you have mood swings. ",
"You like to make up your mind about someone slowly, rather than just jumping headfirst into things. You love to serve, and will happily spend a long time caressing their back or their feet, stoking those fires slowly in order to build things up to a truly satisfying blaze. ",
"You're honest, direct and generally fair-minded which means that while your intentions are good, you can sometimes hurt your partner's feelings without meaning to. Conversations with you are always interesting as you have amazing communication which acts as your strength in your relationship. You are very blunt at times which unintentionally hurts your partner's feelings. ",
"You are attracted to individuals sharing your idealistic views. You might back down in an argument with your sweetie in order to keep the peace. ",
"Romantic feelings can be extreme strong inside, while on the surface you appear emotionally distant and reserved. You have a very solid and deep sense of responsibility in romantic attachments and marriage. When it comes to commitment, you are definitely the old-fashioned type. You are a one-love person who is extremely dependable",
"Your methodical approach to problem-solving can be a real boon to your love. You tend to want and expect more perfection in your relationship than is really possible, which can mean that you're too hard on both your lover and yourself. "
]
}
var api = 'romantic_personality_report/tropical';
var userId = '<Your User Id>';
var apiKey = '<Your Api Key>';
var language = '<Your Language>' // By default it is set to en
var data = {
day: 6,
month: 1,
year: 2000,
hour: 7,
min: 45,
lat: 19.132,
lon: 72.342,
tzone: 5.5,
};
var auth = "Basic " + new Buffer(userId + ":" + apiKey).toString("base64");
var request = $.ajax({
url: "https://json.astrologyapi.com/v1/"+api,
method: "POST",
dataType:'json',
headers: {
"authorization": auth,
"Content-Type":'application/json',
"Accept-Language": language
},
data:JSON.stringify(data)
});
request.then( function(resp){
console.log(resp);
}, function(err){
console.log(err);
});