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

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

General Reports/nakshatra_report

In depth nakshatra report

API Endpoint

nakshatra_report

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

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"
        ]
    }
}			
		
Params Data type Descriptions

day

month

year

hour

min

lat

lon

tzone

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

            
                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