SEARCH ASTROLOGY API DOCS

Home
Indian Astrology

Matching Ashtakoot Points/match_ashtakoot_points

The response provides the Ashtakoota matching score between a male and a female, based on eight different parameters such as Varna, Vashya, Tara, Yoni, Maitri, Gan, Bhakut, and Nadi. It also provides a conclusion stating whether the matching is favorable or not.

API Endpoint : match_ashtakoot_points
Method : POST
Full URL :
https://json.astrologyapi.com/v1/match_ashtakoot_points

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

{
	"varna": {
		"description": "Natural Refinement / Work",
		"male_koot_attribute": "Kshatriya",
		"female_koot_attribute": "Kshatriya",
		"total_points": 1,
		"received_points": 1
	},
	"vashya": {
		"description": "Innate Giving / Attraction towards each other",
		"male_koot_attribute": "Chatuspad",
		"female_koot_attribute": "Chatuspad",
		"total_points": 2,
		"received_points": 2
	},
	"tara": {
		"description": "Comfort - Prosperity - Health",
		"total_points": 3,
		"received_points": 0
	},
	"yoni": {
		"description": "Intimate Physical",
		"total_points": 4,
		"received_points": 0
	},
	"maitri": {
		"description": "Friendship",
		"male_koot_attribute": "Mars",
		"female_koot_attribute": "Mars",
		"total_points": 5,
		"received_points": 5
	},
	"gan": {
		"description": "Temperament",
		"male_koot_attribute": "",
		"female_koot_attribute": "",
		"total_points": 6,
		"received_points": 6
	},
	"bhakut": {
		"description": "Constructive Ability / Constructivism / Society and Couple",
		"male_koot_attribute": "Aries",
		"female_koot_attribute": "Aries",
		"total_points": 7,
		"received_points": 7
	},
	"nadi": {
		"description": "Progeny / Excess",
		"male_koot_attribute": "",
		"female_koot_attribute": "",
		"total_points": 8,
		"received_points": 0
	},
	"total": {
		"total_points": 36,
		"received_points": 21,
		"minimum_required": 18
	},
	"conclusion": {
		"status": true,
		"report": "Ashtakoota Matching between male and female is 21 points out of 36 points. This is a reasonably good score. Moreover, your rashi lords are friendly with each other thereby signifying mental compatibility and mutual affection between the two. Hence, this is a favourable Ashtakoota match."
	}
}
POST
var api = 'match_ashtakoot_points';
var userId = '<Your User Id>';
var apiKey = '<Your Api Key>';
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'
},
    data:JSON.stringify(data)
});

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