SEARCH ASTROLOGY API DOCS

Home
Indian Astrology

General Reports/nakshatra_report

The nakshatra_report API provides a detailed report on an individual's personality traits, family life, education, physical features, and general events based on their Nakshatra. The API response includes information on the individual's strengths and weaknesses, and their compatibility with others.

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

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

{
    "status": true,
    "nakshatra": "Vishakha",
    "report": {
        "general_events": [
            "You have high vigor and are very intelligent. You are firm believer of God and will lead an honest life. You do not believe in the orthodox principles and all the age old traditions. You are inclined towards the modern ideas",
            "You may have to live away from your family. You may give more importance to people than they deserve. You are religiously very active but do not follow all the superstitions"
        ],
        "education_profession": [
            "You are a very good orator and have the capacity to attract crowd. You will win several prizes in elocution competitions. You are the perfect person to be in the political field. You can be stingy but can also be very extravagant in your spending",
            "You are good at words and can leave a great impact with whatever you say. You are independent and do not want feel constrained in your life You could be any business or either at the place of authority and potency."
        ],
        "physical_features": [
            "You will have a around face with bright features that makes you extremely attractive. . The natives of this Nakshatra could either be fat and tall or could be lean and short",
            "You are very appealing and have a dominant personality. You have a round face and are very attractive"
        ],
        "family_life": [
            "You may not receive much love and affection from your mother. It could be either because of the death of your mothers or due to some unavoidable circumstances.",
            "You are proud of your father and his achievements, but you will not receive much benefit from him. You may more or less lead the life of an orphan.  You have many differences with your father in opinions and may not reach an amicable settlement.  Due to all these reasons, you will be hardworking and a self-made person from your childhood. It is due to these reasons you are right from the childhood a hardworking and self made person."
        ],
        "generalised": [
            "The natives of Vishakha Nakshatra shall have an unsolved and impure composure of mind. Besides this, they would go against the path of righteousness and would lack at the trueness in their persona. They would not possess many relations and can have some enemies",
            "On the other hand, they are highly attached to their closed ones and are endowed with intelligence but are quarrelsome as they are short tempered. These people could lack at morals and could be involved in immoral deeds. They can get easily jealous but are always ready to help others They are bestowed with wealth and eloquence to win"
        ]
    }
}
POST
var api = 'nakshatra_report';
var userId = '<Your User Id>';
var apiKey = '<Your Api Key>';
var data = {
  day: 6,
  month: 1,
  year: 2000,
  hour: 7,
  min: 45,
  lat: 19.132,
  lon: 72.342,
  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);
});