SEARCH ASTROLOGY API DOCS

Home
Western Astrology

Zodiac Compatibility/zodiac_compatibility/:zodiacName/:partnerZodiacName

This API is called zodiac_compatibility and it takes two zodiac signs as input. The response includes your zodiac sign, your partner's zodiac sign, a compatibility report describing the strengths and weaknesses of the relationship, and a compatibility percentage.

API Endpoint : zodiac_compatibility/:zodiacName/:partnerZodiacName
Method : POST
Full URL :
https://json.astrologyapi.com/v1/zodiac_compatibility/:zodiacName/:partnerZodiacName
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

{
	"your_sign": "Aries",
	"your_partner_sign": "Aries",
	"compatibility_report": "Aries need independence , freedom and excitement. They will easily understand their partner’s similar needs. Their partnership can be extremely powerful if they resist the urge to compete with each other. Two Aries will have a fun filled relationship, they will appreciate each other's spontaneity and will never be bored.  Their relationship is a passionate one and indeed highly compatible.",
	"compatibility_percentage": 75
}
POST
var api = 'zodiac_compatibility/:zodiacName/:partnerZodiacName';
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);
});