Get Match Ashtakoot Points Report
Method | Full Url |
---|---|
POST | https://json.apireports.com/v1/match_ashtakoot_report |
{
"status_code": 200,
"status": true,
"data": {
"varna": {
"description": "Attitude & Mentality",
"male_koot_attribute": "Vaishya",
"female_koot_attribute": "Shudra",
"received_points": 0,
"total_points": 1,
"report": {
"report": [
"Very good match. Girl is always helpful, obedient and caring and look after the entire family without any complaint. She is always at her feet for the service of everyone. She does not fight or argue with anyone easily without specific reasons."
]
}
},
"vashya": {
"description": "Control & Domninance",
"male_koot_attribute": "Jalchar",
"female_koot_attribute": "Human",
"received_points": 0.5,
"total_points": 2,
"report": {
"report": [
"Not a good match. Aquatic animal can never exercise control or dominate over the human. On the contrary, human beings either control or crush the Aquatic animals or make them their prey or refrain away from them. So, if the marriage takes place between the Jalchar boy and human girl. it will not be a compatible match. The girl is highly dominant in this case, she always tries to keep her husband under her feet and likes that her husband should obey her command which adversely affects the peace and harmony of the family as well as growth happiness and prosperity."
]
}
},
"tara": {
"description": "Property",
"male_koot_attribute": "Vadha",
"female_koot_attribute": "Kshema",
"received_points": 1.5,
"total_points": 3,
"report": {
"report": [
""
]
}
},
"yoni": {
"description": "Sex, Problem in Progeny",
"male_koot_attribute": "Nakul",
"female_koot_attribute": "Ashwa",
"received_points": 2,
"total_points": 4,
"report": {
"report": [
""
]
}
},
"maitri": {
"description": "Adjustment, Behaviour",
"male_koot_attribute": "Saturn",
"female_koot_attribute": "Saturn",
"received_points": 5,
"total_points": 5,
"report": {
"report": [
"It is considered extremely good in match making. Both have unending love for each other. Both cooperate each other in all the spheres of life and prove themselves ideal couple. Their children are worthy, obedient, successful and famous."
]
}
},
"gan": {
"description": "Nature & Aptitude",
"male_koot_attribute": "Manushya",
"female_koot_attribute": "Rakshasa",
"received_points": 0,
"total_points": 6,
"report": {
"report": [
"Not a good match, cruel, insensitive and inconsiderate nature of the girl make the life of the boy and his family hellish. There are frequent quarrels and disturbance between husband and wife and the possibility of divorce and court cases also emerge."
]
}
},
"bhakut": {
"description": "Conjugal Bliss",
"male_koot_attribute": "Capricorn",
"female_koot_attribute": "Aquarius",
"received_points": 0,
"total_points": 7,
"report": {
"report": [
"This is not considered a good match. This match may result in frequent quarrels between them, court cases, divorce and some untoward happening in the family. In this combination boy is hardworking, family loving and have good earning and saving but the girl is totally opposite of his nature. She has weak physique, always remains sick, gets irritated easily and is spendthrift. She wastes money earned by her husband in pomp and show and fruitless pursuits. As a result of this, there is frequent quarrel between them every now then."
]
}
},
"nadi": {
"description": "Health, Progeny",
"male_koot_attribute": "Antya",
"female_koot_attribute": "Aadi",
"received_points": 8,
"total_points": 8,
"report": {
"report": [
"Very good match. This combination balances Vata and Cough, the two important constituents of the body. The boy having Antya Nadi and the girl having Aadya Nadi signifies good health, wealth, power, authority and mutual love and co-operation between the couple. The children of such couple are very lucky, healthy, obedient and powerful."
]
}
},
"total": {
"total_points": 36,
"received_points": 17,
"minimum_required": 18
}
}
}
Params | Data Type | Description | Example |
---|---|---|---|
m_day | int | Boy Date of Birth | 15 |
m_month | int | Boy Month of Birth | 9 |
m_year | int | Boy Year of Birth | 1994 |
m_hour | int | Boy Hour of Birth | 12 |
m_min | int | Boy Min of Birth | 30 |
m_lat | float | Boy Latitude of Birth Place | 28.6139 |
m_lon | float | Boy Longitude of Birth Place | 77.1025 |
m_tzone | float | Boy Timezone of Birth Place | 5.5 |
f_day | int | Girl Date of Birth | 15 |
f_month | int | Girl Month of Birth | 9 |
f_year | int | Girl Year of Birth | 1997 |
f_hour | int | Girl Hour of Birth | 12 |
f_min | int | Girl Min of Birth | 30 |
f_lat | float | Girl Latitude of Birth Place | 28.6139 |
f_lon | float | Girl Longitude of Birth Place | 77.1025 |
f_tzone | float | Girl Timezone of Birth Place | 5.5 |
# cURL Request Example
curl --location --request POST 'https://json.apireports.com/v1/match_ashtakoot_report' \
-u '{YourUserID}:{YourApiKey}'\
--header 'Accept-Language: en' \
--header 'Content-Type: application/json' \
--data-raw '{
"m_day": 15,
"m_month": 9,
"m_year": 1994,
"m_hour": 12,
"m_min": 30,
"m_lat": 28.61390000000000100044417195022106170654296875,
"m_lon": 77.1025000000000062527760746888816356658935546875,
"m_tzone": 5.5,
"f_day": 15,
"f_month": 9,
"f_year": 1997,
"f_hour": 12,
"f_min": 30,
"f_lat": 28.61390000000000100044417195022106170654296875,
"f_lon": 77.1025000000000062527760746888816356658935546875,
"f_tzone": 5.5
}'
# END
/* JavaScript Request Example */
var apiEndPoint = "match_ashtakoot_report";
var userId = "{YourUserID}";
var apiKey = "{YourApiKey}";
var language = "en";
var data = {
"m_day": 15,
"m_month": 9,
"m_year": 1994,
"m_hour": 12,
"m_min": 30,
"m_lat": 28.61390000000000100044417195022106170654296875,
"m_lon": 77.1025000000000062527760746888816356658935546875,
"m_tzone": 5.5,
"f_day": 15,
"f_month": 9,
"f_year": 1997,
"f_hour": 12,
"f_min": 30,
"f_lat": 28.61390000000000100044417195022106170654296875,
"f_lon": 77.1025000000000062527760746888816356658935546875,
"f_tzone": 5.5
};
var url = 'https://json.apireports.com/v1/'+apiEndPoint;
var request = $.ajax({
url: url,
method: "POST",
dataType:'json',
headers: {
"Authorization": "Basic " + btoa(userId+":"+apiKey),
"Accept-Language": "en",
"Content-Type":'application/json'
},
data:JSON.stringify(data)
});
request.then(
function(resp){
console.log(resp);
},
function(err){
console.log(err);
}
);
/* END */
<?php
/* PHP Request Example */
$apiEndPoint = "match_ashtakoot_report";
$userId = "{YourUserID}";
$apiKey = "{YourApiKey}";
$url = "https://json.apireports.com/v1/";
$data = array(
"m_day" => 15,
"m_month" => 9,
"m_year" => 1994,
"m_hour" => 12,
"m_min" => 30,
"m_lat" => 28.6139,
"m_lon" => 77.1025,
"m_tzone" => 5.5,
"f_day" => 15,
"f_month" => 9,
"f_year" => 1997,
"f_hour" => 12,
"f_min" => 30,
"f_lat" => 28.6139,
"f_lon" => 77.1025,
"f_tzone" => 5.5
);
$ch = curl_init();
curl_setopt($ch,CURLOPT_URL, $url.$apiEndPoint);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_TIMEOUT, 20);
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 5);
$header[] = 'Authorization: Basic '. base64_encode($userId.":".$apiKey);
$header[] = 'Accept-Language: en';
$header[] = 'Content-Type: application/json';
curl_setopt($ch, CURLOPT_HTTPHEADER, $header);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($data));
$response = curl_exec($ch);
$error = curl_error($ch);
$http_code = curl_getinfo($ch ,CURLINFO_HTTP_CODE);
curl_close($ch);
echo $response;
/* END */
# Python Request Example
import requests
import json
apiEndPoint = "match_ashtakoot_report";
userId = "{YourUserID}";
apiKey = "{YourApiKey}";
url = "https://json.apireports.com/v1/"+apiEndPoint
data = json.dumps({
"m_day": 15,
"m_month": 9,
"m_year": 1994,
"m_hour": 12,
"m_min": 30,
"m_lat": 28.61390000000000100044417195022106170654296875,
"m_lon": 77.1025000000000062527760746888816356658935546875,
"m_tzone": 5.5,
"f_day": 15,
"f_month": 9,
"f_year": 1997,
"f_hour": 12,
"f_min": 30,
"f_lat": 28.61390000000000100044417195022106170654296875,
"f_lon": 77.1025000000000062527760746888816356658935546875,
"f_tzone": 5.5
})
headers = {
'Accept-Language': 'en',
'Content-Type': 'application/json'
}
response = requests.request("POST", url, headers=headers, auth=(userId, apiKey),data=data)
print(response.text)
# END
/* NodeJS Request Example */
var request = require('request');
var apiEndPoint = "match_ashtakoot_report";
var userId = "{YourUserID}";
var apiKey = "{YourApiKey}";
var url = 'https://json.apireports.com/v1/'+apiEndPoint;
var options = {
'method': 'POST',
'url': url,
'auth': {
'user': userId,
'password': apiKey
},
'headers': {
'Accept-Language': 'en',
'Content-Type': 'application/json'
},
body: JSON.stringify({
"m_day": 15,
"m_month": 9,
"m_year": 1994,
"m_hour": 12,
"m_min": 30,
"m_lat": 28.61390000000000100044417195022106170654296875,
"m_lon": 77.1025000000000062527760746888816356658935546875,
"m_tzone": 5.5,
"f_day": 15,
"f_month": 9,
"f_year": 1997,
"f_hour": 12,
"f_min": 30,
"f_lat": 28.61390000000000100044417195022106170654296875,
"f_lon": 77.1025000000000062527760746888816356658935546875,
"f_tzone": 5.5
})
};
request(options, function (error, response) {
if (error) throw new Error(error);
console.log(response.body);
});
/* END */