SEARCH ASTROLOGY API DOCS

Home
Western Astrology

Western Sign Report/general_sign_report/tropical/:planetName

The API general_sign_report/tropical/:planetName provides a general report on a particular planet's placement in a specific tropical zodiac sign. The response contains information on the sign's characteristics and how they may manifest in the planet's placement, including potential strengths, weaknesses, and challenges to be aware of.

API Endpoint : general_sign_report/tropical/:planetName
Method : POST
Full URL :
https://json.astrologyapi.com/v1/general_sign_report/tropical/:planetName

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

{
	"planet_name": "MOON",
	"sign_name": "Gemini",
	"report": "You tend to intellectualize your feelings. Your moods come through your words. At times you are totally unaware of your own or other people' deeper feelings and emotional needs. You talk out your feelings and moods. Your primary need is to communicate and to share knowledge. You tend to avoid heavy, emotional relationships and involvements because their is some tendency to superficiality. Commitment scares you. You require plenty of mental stimulation and you feel closest to people with whom you can share thoughts and mental interests. You get turned on sexually through the mental side of things. You have a versatile and receptive mind with a great desire for knowledge. You can be charming, witty and warm-hearted. Nervous tension, anxiety, and stress may be a problem for you. You probably dislike arguments and have a tendency to talk too much. You may tell people what they want to hear rather than the truth. Mental control should be developed or else indecisiveness and constant changing of your mind will become a way of life for you."
}
POST
var api = 'general_sign_report/tropical/:planetName';
var userId = '<Your User Id>';
var apiKey = '<Your Api Key>';
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'
},
    data:JSON.stringify(data)
});

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