SEARCH ASTROLOGY API DOCS

Home
Indian Astrology

Match Making/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
No request data required for this API.

Response Data

{
  "your_sign": "Taurus",
  "your_partner_sign": "Gemini",
  "compatibility_report": "Taurus tend to focus on one thing at a time while Gemini keeps shifting its interest from one point to another, they both can learn a lot from each other. Gemini is versatile and flexible. While Taurus is determined and practical. Taurus demands total devotion from his partner, and Gemini is unable to give it. Gemini prefers change and Taurus needs stability. Their married life is usually unstable.",
  "compatibility_percentage": 70
}
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;
}));
}