This API provides the birth details of a male and female, including their year, month, day, hour, minute, latitude, longitude, timezone, sunrise, sunset, and ayanamsha, for the purpose of matching their compatibility.
Accept-Language: enGuide:These languages are supported by this API. You can use them by passing Accept-Language header with a value of the language code.
| Params | Data type | Descriptions | 
m_day required m_month required m_year required m_hour required m_min required m_lat required m_lon required m_tzone required f_day required f_month required f_year required f_hour required f_min required f_lat required f_lon required f_tzone required  | int int int int int float float float int int int int int float float float  | eg: 10 eg: 5 eg: 1990 eg: 11 eg: 55 eg: 19.2056 eg: 25.2056 eg: 5.5 eg: 10 eg: 5 eg: 1990 eg: 11 eg: 55 eg: 19.2056 eg: 25.2056 eg: 5.5  | 
{
	"male_astro_details": {
		"year": 2000,
		"month": 6,
		"day": 27,
		"hour": 15,
		"minute": 30,
		"latitude": 25.7464,
		"longitude": 82.6837,
		"timezone": 5.5,
		"gender": "male",
		"ayanamsha": 23.863896731915133,
		"sunrise": "5:10:7",
		"sunset": "18:54:25"
	},
	"female_astro_details": {
		"year": 2000,
		"month": 6,
		"day": 27,
		"hour": 15,
		"minute": 30,
		"latitude": 25.7464,
		"longitude": 82.6837,
		"timezone": 5.5,
		"gender": "female",
		"ayanamsha": 23.863896731915133,
		"sunrise": "5:10:7",
		"sunset": "18:54:25"
	}
}var api = 'match_birth_details';
var userId = '<Your User Id>';
var apiKey = '<Your Api Key>';
var language = '<Your Language>' // By default it is set to en
var data = {
  m_day: 6,
  m_month: 1,
  m_year: 2000,
  m_hour: 7,
  m_min: 45,
  m_lat: 19.132,
  m_lon: 72.342,
  m_tzone: 5.5,
  f_day: 6,
  f_month: 1,
  f_year: 2000,
  f_hour: 7,
  f_min: 45,
  f_lat: 19.132,
  f_lon: 72.342,
  f_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);
});