SEARCH ASTROLOGY API DOCS

Home
Western Astrology

Romantic Forecast Couple Report/romantic_forecast_couple_report/tropical

This API is called romantic_forecast_couple_report/tropical and provides a response that includes a series of descriptions of potential romantic forecasts between couples. The response includes various scenarios, such as having an adventurous and creative relationship, a deep and loving connection, a struggle with control and restriction, a strong sexual pull with potential aggression, differences in values and approaches to life, a need for security, and potential issues with jealousy, possessiveness, and control.

API Endpoint : romantic_forecast_couple_report/tropical
Method : POST
Full URL :
https://json.astrologyapi.com/v1/romantic_forecast_couple_report/tropical

Request Data

ParamsData typeDescriptions

p_day required

p_month required

p_year required

p_hour required

p_min required

p_lat required

p_lon required

p_tzone required

s_day required

s_month required

s_year required

s_hour required

s_min required

s_lat required

s_lon required

s_tzone required

int

int

int

int

int

float

float

float

int

int

int

int

int

float

float

float

eg: 10

eg: 5

eg: 1990

eg: 11

eg: 55

eg: 19.2056

eg: 25.2056

eg: 5.5

eg: 10

eg: 5

eg: 1990

eg: 11

eg: 55

eg: 19.2056

eg: 25.2056

eg: 5.5

Response Data

{
	"romantic_forecast": [
		"An adventuresome bent is the focus between you two. That experimental flair isn't just confined to your sexual expression, either; any project you work on together is touched by creative magic. You are the idea person and your partner is the one to take them and run with them, making them become real.",
		"This relationship makes you both feel just wonderful, due to a very real and deep sense of love and understanding that has existed between you almost from the start. You instinctively respond to them in a positive way, supporting and protecting them and quickly offering them the precious gift of devotion.They feel as if they're completely accepted and well-loved by you. Essentially, you could be your lover's biggest fan you support their goals and causes in life, and cheer them on as they meet with success in their life.",
		"If you're attracted to each other, that fact alone indicates that there are plenty of positive aspects between you, because this one makes things pretty difficult when it comes to relating naturally as a couple. There is an element of control coming from you to your partner that makes it hard to get along. When you're together, they feel restricted in their romantic expression toward you, and it could come out cold or just stilted.You try to restrain their natural way of being in a relationship.",
		"There is a strong sexual pull between you, which could be quite compelling and it could make you think there's more between you that's worth holding on to than there really is. This aspect is a really difficult one for either of you to handle, as it brings up so much anger, resistance, rebellion and aggression between you. Even if you're ordinarily quite placid, you're provoked more than you might think possible in this relationship!Unless other aspects between you can help create a feeling of understanding and commonality, you have a really hard time getting along together for long except when you're being physically intimate, of course, and even that could take on a dimension of control and aggression that you should try to avoid.",
		"You naturally take a practical view of life; you trust in the things that you can see, touch, feel and otherwise count on in a tangible way. You believe in hard work and responsibility, and anything more abstract than that seems untrustworthy or out-and-out silly to you. But there's a whole other side of things the intangible, the instinctive, even the psychic and your partner has a good grasp on these concepts.They lead with their gut, acting on instinct and reaching out as often with their mind as they do with their hands.",
		"Even if you didn't start out being overly traditional in your values regarding commitment, duty and so on, you became more so in this relationship, in part because of your lover's rebellious insistence on independence. Over time it's become apparent that you need a lot more security within the relationship than your partner does. Neither of these characterizations is exactly fair; it's just that you bring out these qualities in each other, because you're both naturally looking out for yourselves and your own interests in the relationship.",
		"Jealousy, emotional manipulation, possessiveness and control could become major components of this relationship if you're not careful to sort out your feelings right from the get-go. That's when the trouble starts. This kind of emotional extreme can lead the best of us toward urges of possession and manipulation, although dominating each other never brings real satisfaction for either partner."
	]
}
POST
var api = 'romantic_forecast_couple_report/tropical';
var userId = '<Your User Id>';
var apiKey = '<Your Api Key>';
var data = {
  p_day: 6,
  p_month: 1,
  p_year: 2000,
  p_hour: 7,
  p_min: 45,
  p_lat: 19.132,
  p_lon: 72.342,
  p_tzone: 5.5,
  s_day: 6,
  s_month: 1,
  s_year: 2000,
  s_hour: 7,
  s_min: 45,
  s_lat: 19.132,
  s_lon: 72.342,
  s_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'
},
    data:JSON.stringify(data)
});

request.then( function(resp){
    console.log(resp);
}, function(err){
    console.log(err);
});