SEARCH ASTROLOGY API DOCS

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

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

{
    "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 userId = '<Your User Id>';
var apiKey = '<Your Api Key>';
var data = 'JSON Request Data';

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

// Returns A promiss
return( request.then( function(resp){
    return resp;
}, function(err){
    return err;
}));
}