SEARCH ASTROLOGY API DOCS

Home
Indian Astrology

Match Making/papasamyam_details

The response includes the dosha (malefic influence) of planets like Sun, Mars, Saturn, and Rahu for Ascendant, Moon, and Venus along with their dosha units and the final score of Papasamyam calculation.

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

Request Data

ParamsData typeDescriptions

day required

month required

year required

hour required

min required

lat required

lon required

tzone required

gender

int

int

int

int

int

float

float

float

string

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

Gender , eg : male or female

Response Data

{
    "ascendant": {
        "total": 16,
        "dosha": [
            {
                "planet": "SUN",
                "position": 10,
                "doshaUnits": 0
            },
            {
                "planet": "MARS",
                "position": 11,
                "doshaUnits": 0
            },
            {
                "planet": "SATURN",
                "position": 7,
                "doshaUnits": 15
            },
            {
                "planet": "RAHU",
                "position": 12,
                "doshaUnits": 1
            }
        ]
    },
    "moon": {
        "total": 7,
        "dosha": [
            {
                "planet": "SUN",
                "position": 12,
                "doshaUnits": 2
            },
            {
                "planet": "MARS",
                "position": 1,
                "doshaUnits": 9
            },
            {
                "planet": "SATURN",
                "position": 9,
                "doshaUnits": 0
            },
            {
                "planet": "RAHU",
                "position": 2,
                "doshaUnits": 3
            }
        ]
    },
    "venus": {
        "total": 3.5,
        "dosha": [
            {
                "planet": "SUN",
                "position": 12,
                "doshaUnits": 2
            },
            {
                "planet": "MARS",
                "position": 1,
                "doshaUnits": 9
            },
            {
                "planet": "SATURN",
                "position": 9,
                "doshaUnits": 0
            },
            {
                "planet": "RAHU",
                "position": 2,
                "doshaUnits": 3
            }
        ]
    },
    "final": 26.5
}
POST
var api = 'papasamyam_details';
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);
});