Western Life Reports/personalized_planet_prediction/daily/:planetName
Get personalized prediction daily by planet name
API Endpoint
personalized_planet_prediction/daily/:planetName
Method & URL
Method | Full URL |
---|---|
POST | https://json.astrologyapi.com/v1/personalized_planet_prediction/daily/:planetName |
Response Data
{
"report_date": "6-19-2017",
"personalised_report": [
"This is an ideal time for all sorts of relationship but especially for bonding closer with a partner or for starting a new love relationship. You feel beautiful and affectionate and attract the same. A good time to beautify the home or office, and to splash out on nice things like jewelry clothes, and spoil yourself with a makeover. Financial conditions should be in good shape.",
"Surprises may be in store for you today. These surprises may be disruptive and, if so, they are designed to help you grow. Look upon them as challenges and learning experiences. Problems today could come because of your eccentric behavior. Avoid bohemian tendencies and doing things just to be different.",
"You should be feeling strong and courageous and can use your initiative to get the ball rolling and tackle difficult tasks. This is a good time to impress someone, especially a superior at work or someone special in your private life."
]
}
Params | Data type | Descriptions |
day month year hour min lat lon tzone |
int int int int int float float float |
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 |
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