Western Compatibility Report/karma_destiny_report/tropical
Get karma destiny report
API Endpoint
karma_destiny_report/tropical
Method & URL
Method | Full URL |
---|---|
POST | https://json.astrologyapi.com/v1/karma_destiny_report/tropical |
Response Data
{
"karma_destiny_report": [
"But trying to impose your own sense of logic onto someone else is not only futile, it's shortsighted. Just because you can't understand their sense of logic doesn't mean they don't have one; it's simply so different from yours that you'll have a hard time getting it. Your partner is actually quite a creative person, as you'll find if you can greet their ideas with respect rather than anxiety. Rather than trying to control the ways in which they perceive the world and interact with it, you should try to learn something from this unique perspective of theirs. If you do try to exert logic and control over them, you'll just find that they slip through your grasp anyway; but if you simply do the work of being yourself and allow them to be the person that they are as well, you'll find that you're both able to blend your styles and learn from each other. The best that can come from this connection will be an increased sense of creativity on your side, and a greater understanding of practical matters on your partner's.",
"You tried to rely on this person in another lifetime, and they let you down in a big way. Whether they were your lover, your parent or your fellow warrior, when you needed them most, they weren't there for you, and that experience left a scar on your soul. In this life, your subconscious mind remembers that experience, and it will do anything to prevent the same thing from happening again.",
"Especially if you've conducted your life in a somewhat haphazard way, this relationship could help you to focus on your path and become more settled within yourself. Your contribution to the relationship will be one of energy and spirit, which will help your partner stay lighthearted instead of getting bogged down in the minutiae of everyday life. Good communication between you will help you both to keep moving forward and stay on track in your lives, moving steadily toward your goals. This aspect will also help in terms of building an enduring relationship that is lastingly beneficial for both of you. With a bond like this one, in fact, you could just as easily go into business together as keep this a purely romantic relationship, because it helps you work harder and more efficiently, as a team, and stay focused on the task at hand.",
"While your bond with this person will be strengthened by a powerful and enduring past-life connection that you share, it won't make for a fun, romantic affair. There's a good chance that if you become romantically involved, it will last long-term; after all, you're coming from a relationship in another lifetime that persevered through hard times as well as good ones, and has extended to the present life. A sense of mutual responsibility will pervade your connection now, as a result of this past-life relationship, and you'll both sense this from the start."
]
}
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