SEARCH ASTROLOGY API DOCS

Home
Western Astrology

Moon Phase Report/moon_phase_report

The moon_phase_report API provides information on the current phase of the moon, its significance, and a report on how to reflect on oneself during this phase. The response includes the considered date, moon phase, its significance, and a report on what one should do during this phase.

API Endpoint : moon_phase_report
Method : POST
Full URL :
https://json.astrologyapi.com/v1/moon_phase_report
Supported Languages

Guide:These languages are supported by this API. You can use them by passing Accept-Language header with a value of the language code.

Request Data

ParamsData typeDescriptions

day required

month required

year required

hour required

min required

lat required

lon required

tzone required

house_type

int

int

int

int

int

float

float

float

string

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

Default : "placidus" // koch/topocentric/poryphry/equal_house/whole_sign

Response Data

{
	"considered_date": "2-10-2017",
	"moon_phase": "Balsamic Moon",
	"significance": "The Moon now is waning and is located halfway between Last Quarter and New Moon. The seeds are moving towards maturation, while rest of the plant withers away. The energy of the plant concentrates into the seed which is preparing itself for the next cycle. In the seasonal progression, this phase represents Halloween, midway between the Fall Equinox and the Winter Solstice. The wall that separates the dead from the living, thins and ghosts walk on the plant of the living.",
	"report": "This is a time to rest, recreate and reflect on yourself and try to reconnect with inner powerhouses of strength. It is currently not a good time to start something afresh. It is a phase where all you should do is reflect your life objectively and increase awareness of what is important to you. At this point, make your bucket list and realise your dreams and aspirations. What are the larger goals that you can you aspire to and will bring vitality and excitement into your life and make your life a little more interesting and offbeat$1651 Just think and reflect on those aspects. Do not jump on the implementation of the listed goals."
}
POST
var api = 'moon_phase_report';
var userId = '<Your User Id>';
var apiKey = '<Your Api Key>';
var language = '<Your Language>' // By default it is set to en
var data = {
  day: 6,
  month: 1,
  year: 2000,
  hour: 7,
  min: 45,
  lat: 19.132,
  lon: 72.342,
  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',
    "Accept-Language": language 
},
    data:JSON.stringify(data)
});

request.then( function(resp){
    console.log(resp);
}, function(err){
    console.log(err);
});