Western Compatibility Report/friendship_report/tropical
Get friendship report
API Endpoint
friendship_report/tropical
Method & URL
Method | Full URL |
---|---|
POST | https://json.astrologyapi.com/v1/friendship_report/tropical |
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."
]
}
Params | Data type | Descriptions |
p_day p_month p_year p_hour p_min p_lat p_lon p_tzone s_day s_month s_year s_hour s_min s_lat s_lon s_tzone |
int int int int int float float float int int int int int float float float |
primary date of birth, eg: 10 primary month of birth, eg: 5 primary year of birth, eg: 1990 primary hour, eg: 11 primary minute, eg: 55 primary latitude, eg: 19.2056 primary longitude, eg: 25.2056 primary timezone, eg: 5.5 secondary date of birth, eg: 10 secondary month of birth, eg: 5 secondary year of birth, eg: 1990 secondary hour, eg: 11 secondary minute, eg: 55 secondary latitude, eg: 19.2056 secondary longitude, eg: 25.2056 secondary timezone, eg: 5.5 |
var userId = '';
var apiKey = '';
var data = 'JSON Request Data';
var request = $.ajax({
url: "https://json.astrologyapi.com/v1/"+api,
method: "POST",
dataType:'json',
headers: {
"authorization": "Basic " + btoa(userId+":"+apiKey),
"Content-Type":'application/json'
},
data:JSON.stringify(data)
});
// Returns A promiss
return( request.then( function(resp){
return resp;
}, function(err){
return err;
}));
}
require_once 'VedicRishiClient.php';
$userId = "";
$apiKey = "";
$data = array(
'date' => 25,
'month' => 12,
'year' => 1988,
'hour' => 4,
'minute' => 0,
'latitude' => 25.123,
'longitude' => 82.34,
'timezone' => 5.5
);
$resourceName = "astro_details";
$vedicRishi = new VedicRishiClient($userId, $apiKey);
$responseData = $vedicRishi->call($resourceName, $data['date'], $data['month'], $data['year'], $data['hour'], $data['minute'], $data['latitude'], $data['longitude'], $data['timezone']);
echo $responseData;
Download PHP Client