SEARCH ASTROLOGY API DOCS

Home
Western Astrology

Personal Month Prediction/personal_month_prediction

The personal_month_prediction API provides a monthly report based on the user's personal month number. It predicts a time for purging the past, putting others before oneself, and achieving success through helping others. The report also advises caution in speech, changes in relationships, and completion of goals and projects.

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

Request Data

ParamsData typeDescriptions

day required

month required

year required

hour required

min required

lat required

lon required

tzone required

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

Response Data

{
	"personal_month_number": 9,
	"considered_month": 11,
	"report": [
		"This is a time for PURGING yourself from the past, enabling the future to bring new experiences. The past comes alive through memories of both good and bad times. If you were married during the 8 year, cycle or month, then the 9 year, cycle or month can be considered the \"getting to know you\" syndrome, where all of your programming from your single days can be changed very quickly into \"we\" and how we operate as a unit, instead of \"me\" as a single entity. Old habits and thoughts die hard and the mighty 9 sees to it that thoughts and attitudes that need to be changed so that you can function as a unit, die or are modified. This may very well prove to be a very \"Frustrating\" time for you as we hold on to the old and try to reject the new. The 9 also gives us the ability to put others before ourselves, to help your new partner feel comfortable in a different environment, especially if they are moving into your home and they may feel somewhat uncomfortable in your space.",
		"This is an auspicious time to gain favors from the government or people in authority. You can wind up in some sort of disagreements or experience harsh words with someone, so be careful in your speech. Competition with others will work out well now and some honors can come to you. You may be fortunate in unexpected financial gains, in lotteries or other source. Because of your very sensitive emotional state, you can be very easily hurt by the words or explosive deeds of others, whether they are your friends, family or spouse. The mighty 9 will force some kind of changes in the structure of your relationships and new love relationships can easily suffer a setback, changing the way you look at it, for better or worse, probably both at the same time. Perhaps the key here is that you were giving too much of yourself to another and the pain and hurt feelings is forcing you to \"step back\" and become more impersonal with it if you are to \"survive\" or coexist within it.",
		"Achievement and success will come to those who help others. Self seeking motives will have its reward in ruin. This is the essence of the 9 month.",
		"This is an excellent time to clear out the \"old\" garbage from your life that is not working anymore and make changes, whether it is insurance companies who don't have your best interests at heart or people that provide a service to you that you can no longer tolerate. Any conditions or situations that don't work any more should be reevaluated or replaced at this time.",
		"This is a time of transition and letting go of unnecessary things in our lives. Should we be foolish enough to try to hang on to them, the universe and its wisdom will find ways for us to have them part from us. Changes in career, profession or job can occur along with changes in residence, choosing to relocate. Charitable and humanitarian deeds are stressed bringing fulfillment with it. Try to work WITH others for a common goal that will benefit the masses of people. Sympathy, understanding of the plights of others, compassion and love should be extended to all people that you come in contact with now. Friendships from your past take on a greater meaning and wonderful new relationships can develop. Try to complete all of the goals and projects that you have been working on at this time."
	]
}
POST
var api = 'personal_month_prediction';
var userId = '<Your User Id>';
var apiKey = '<Your Api Key>';
var data = {
   date: 6,
   month:1,
   year:2000,
   full_name:"Kevin"
};

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);
});