US :  +1 (888) 261-8481    |    INDIA :  +91 (22) 2635-9680

インド占星術APIレファレンス

Match Making/match_manglik_report

API Endpoint

match_manglik_report

Method & URL
Method Full URL
POST https://json.astrologyapi.com/v1/match_manglik_report

Response Data
			
				{
	"male": {
		"manglik_present_rule": {
			"based_on_aspect": ["Fourth house of your birth chart is aspected by KETU", "Twelfth house of your birth chart is aspected by KETU.", "RAHU is aspecting eighth house of your birth chart.", "MARS is aspecting second house of your birth chart.", "KETU is aspecting second house of your birth chart.", "Your first house in birth chart is aspected by planet SUN.", "Your first house in birth chart is aspected by planet SATURN."],
			"based_on_house": ["Planet Rahu is situated in SECOND house in your birth chart.", "Planet Saturn is in FOURTH house in your horoscope.", "Planet Sun is situated in SEVENTH house in your birth chart.", "EIGHTH house is occupied by planet Mars in your birth chart.", "Planet Ketu is situated in EIGHTH house in your birth chart."]
		},
		"manglik_cancel_rule": ["Mars mangalik dosha is get cancelled because Mars is situated in Eighth house with Pisces"],
		"is_mars_manglik_cancelled": true,
		"manglik_status": "LESS_EFFECTIVE",
		"percentage_manglik_present": 23.5,
		"percentage_manglik_after_cancellation": 18.5,
		"manglik_report": "The manglik dosha is present in your horoscope, however it is less effective. With some remedies related to mangalik dosha this can be reduced further.",
		"is_present": false
	},
	"female": {
		"manglik_present_rule": {
			"based_on_aspect": ["Fourth house of your birth chart is aspected by KETU", "Twelfth house of your birth chart is aspected by KETU.", "RAHU is aspecting eighth house of your birth chart.", "MARS is aspecting second house of your birth chart.", "KETU is aspecting second house of your birth chart.", "Your first house in birth chart is aspected by planet SUN.", "Your first house in birth chart is aspected by planet SATURN."],
			"based_on_house": ["Planet Rahu is situated in SECOND house in your birth chart.", "Planet Saturn is in FOURTH house in your horoscope.", "Planet Sun is situated in SEVENTH house in your birth chart.", "EIGHTH house is occupied by planet Mars in your birth chart.", "Planet Ketu is situated in EIGHTH house in your birth chart."]
		},
		"manglik_cancel_rule": ["Mars mangalik dosha is get cancelled because Mars is situated in Eighth house with Pisces"],
		"is_mars_manglik_cancelled": true,
		"manglik_status": "LESS_EFFECTIVE",
		"percentage_manglik_present": 23.5,
		"percentage_manglik_after_cancellation": 18.5,
		"manglik_report": "The manglik dosha is present in your horoscope, however it is less effective. With some remedies related to mangalik dosha this can be reduced further.",
		"is_present": false
	},
	"conclusion": {
		"match": true,
		"report": "The boy is not a Manglik; nor is the girl a Manglik. Mangal Dosha being absent in either horoscopes, there shall be no ill effect on their marriage. This match is recommended."
	}
}			
		
Params Data type Descriptions

m_day

m_month

m_year

m_hour

m_min

m_lat

m_lon

m_tzone

f_day

f_month

f_year

f_hour

f_min

f_lat

f_lon

f_tzone

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

            
                var api = 'API_ENDPOINT_HERE';
var userId = 'YOUR_USER_ID';
var apiKey = 'YOUR_API_KEY';
var data = {
        day:12,
        month:3,
        year:1992,
        hour:2,
        min:23,
        lat:19.132,
        lon:72.342,
        tzone:5.5
    };
var request = $.ajax({
url: "https://json.astrologyapi.com/v1/"+api,
method: "POST",
dataType:'json',
headers: {
    "authorization": "Basic " + btoa(userId+":"+apiKey),
    "Content-Type":'application/json'
},
    data:JSON.stringify(data)
});

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

                   
		
                
                    require_once 'VedicRishiClient.php';
$userId = "";
$apiKey = "";
$data = array(
    'date' => 25,
    'month' => 12,
    'year' => 1988,
    'hour' => 4,
    'minute' => 0,
    'latitude' => 25.123,
    'longitude' => 82.34,
    'timezone' => 5.5
);
$resourceName = 'API_ENDPOINT_HERE';
$vedicRishi = new VedicRishiClient($userId, $apiKey);
$responseData = $vedicRishi->call($resourceName, $data['date'], $data['month'], $data['year'], $data['hour'], $data['minute'], $data['latitude'], $data['longitude'], $data['timezone']);
echo $responseData;


                

             
Download PHP Client