SEARCH ASTROLOGY API DOCS

Home
Western Astrology

Friendship Report/friendship_report/tropical

The friendship_report/tropical API provides a brief report on the dynamics of a friendship between two individuals. It offers insights and advice on their personalities, communication styles, potential challenges, and ways to overcome them.

API Endpoint : friendship_report/tropical
Method : POST
Full URL :
https://json.astrologyapi.com/v1/friendship_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

{
	"friendship_report": [
		"At first this can manifest as criticism of their efforts. You feel that you're being helpful and offering practical advice, but to your buddy it feels as if you don't like their work at all, nor do you have faith that they will be successful in these endeavors. You'll send out disapproving signals which your buddy will pick up immediately. So stop trying to push the relationship in a direction it may or may not naturally take; lighten up, and concentrate on nothing more than enjoying your friend's company.",
		"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 out-and-out silly to you. But there's a whole other side of things  the intangible, the instinctive, even the psychic  and your pal will have a good grasp on these concepts.",
		"It's up to you which of those possibilities comes true.",
		"There is a very real and deep sense of support and understanding that will exist between you almost from the start. You'll instinctively respond to your friend in a positive way, and they'll feel as if they're completely accepted and well-liked by you. There will be an open flow of communication that runs between you  and it won't necessarily always be verbal.",
		"Your highly energetic interactions will be fast-paced and fun, and you'll both have a great time ribbing and challenging each other. Just try to be sensitive when you're pushing too hard, or giving advice that simply doesn't apply to the person your friend is or the ambitions they hold.",
		"You'll bring out each other's best qualities and support each other in being your kindest, most generous selves. You'll be able to talk openly with each other about anything that comes up in your lives and you'll understand each other well. Through this openness you share, you'll grow to understand yourselves better, which will aid in your careers, your personal relationships and all other areas of your lives.",
		"The two of you will be able to join forces and accomplish almost anything you'll put your minds to. Together you'll blast away whatever stands in your way and come through unscathed on the other side. This strength and determination could be put to good use in a variety of ways. You'll meet problems creatively and head-on, which will be a great influence for your friendship  but it could also be turned outward, for the good of the rest of the world. Any humanitarian urges that you two might share will find action through this aspect's influence. Your deepest spiritual beliefs could also find expression in this friendship. Basically, what you choose to do is up to the two of you. You'll work as a creative team, and together you could move mountains!",
		"There will be a serious mismatch in your energies that will sometimes create friction between you, but at other times things could be really exciting. Your friend will sometimes irritate you and sometimes attract you. In fact, you're likely to find them to be pretty offensive, but as much as you may not like it, they'll also turn you on."
	]
}
POST
var api = 'friendship_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);
});