ASTROLOGY API REFERENCE DOCUMENTATION

Nakshatra Report

Calculates complete general nakshatra reports.

API Endpoint
general_nakshatra_report
Method & Url
MethodFull Url
POSThttps://json.apireports.com/v1/general_nakshatra_report

Response Data

{
  "status_code": 200,
  "status": true,
  "data": {
    "nakshtra_id": 21,
    "nakshtra": "Uttara Ashadha",
    "report": {
      "general": [
        "You will be refined in your behavior, soft spoken, pure-hearted and have an innocent looking countenance. In case you happen to occupy a very high position in the society, you will not like to express pomp and show and will dress like a simpleton. You will give respect to all, particularly women folk. You will also be god fearing. It is not easy for others to find out the underlying merits and demerits. It is only after several acquaintances and dealings one can come to a conclusion about your behavioral aspect. There might be a black mole around your waist or on the face. Your eyes will have slight brown shade.",
        "You will be very plain in your dealings and will show utmost sincerity in all the work you undertake. You will not deceive others and would not like to cause any trouble to others. So much so, due to your inherent good behavior quality you may often land into uncalled for problems. While you’re plain hearted, you will not subdue to any pressure and will not bestow full confidence on anybody. To certain extent, you will be a slave to flattery and expect that others must look after your welfare. You will not take any hasty decision, whereas full consultation with trusted persons would be obtained before coming to a conclusion. While you will be very much involved in all the activities you undertake, you may also be somewhat lazy.",
        "Even in the state of conflict you will not utter harsh words directly to any person and in spite of difference of opinion you will not like to express your unhappiness to others. Any discussion you make with others will be without expressing any ill will. You’re bound to shoulder many responsibilities at a young age. Due to this you will be fully trained to shoulder any responsibility with perfection. If you’re convinced that, any action carried out by you or words uttered by you may be wrong, you will not hesitate to repent and express sorry.",
        "Your every action will gain recognition by others. Otherwise, you may be dragged into the state of unhappiness. You will be subjected to maximum happiness at one stage and the maximum unhappiness at the next."
      ],
      "physical": [
        "You will have a well-proportioned body, a broad head and a tall figure. You will have a long nose and brilliant eyes. You will be charming and graceful in your appearance with fair complexion."
      ],
      "education": [
        "You have to be very careful in any controversial dealings. Before any collaboration is made, you have to completely screen the persons with whom you’re entering into such collaboration. Otherwise, failure is certain. Period after the age of 38 years will mark all-round success and prosperity."
      ],
      "family_life": [
        "Normally your childhood will be somewhat better. But later on you may have to face a lot of unexpected reversals and problems in the family front. It has noticed that between the age of 28 and 31 years some important change takes place in the family circle.",
        "Your married life will be more or less very good. You will normally get a responsible and loving wife. At the same time the health of the spouse will be cause of concern for you. Your wife will be having problems of acidity or uterus disorder. In spite of the comparative advantages mentioned above, you might lack happiness from the children whereas your children will be main cause of concern."
      ],
      "health": [
        "You’re prone to stomach problems, paralysis of limbs, pulmonary diseases. Poor eyesight or some defects in the eyes."
      ]
    }
  }
}
JSON
Params Data Type Description Example
day int Date of Birth 15
month int Month of Birth 9
year int Year of Birth 1994
hour int Hour of Birth 12
min int Min of Birth 30
lat float Latitude of Birth Place 28.6139
lon float Longitude of Birth Place 77.1025
tzone float Timezone of Birth Place 5.5
# cURL Request Example

curl --location --request POST 'https://json.apireports.com/v1/general_nakshatra_report' \
-u '{YourUserID}:{YourApiKey}'\
--header 'Accept-Language: en' \
--header 'Content-Type: application/json' \
--data-raw '{
    "day": 15,
    "month": 9,
    "year": 1994,
    "hour": 12,
    "min": 30,
    "lat": 28.61390000000000100044417195022106170654296875,
    "lon": 77.1025000000000062527760746888816356658935546875,
    "tzone": 5.5
}'

# END
cURL
/* JavaScript Request Example */

var apiEndPoint = "general_nakshatra_report";
var userId = "{YourUserID}";
var apiKey = "{YourApiKey}";
var language = "en";
var data = {
    "day": 15,
    "month": 9,
    "year": 1994,
    "hour": 12,
    "min": 30,
    "lat": 28.61390000000000100044417195022106170654296875,
    "lon": 77.1025000000000062527760746888816356658935546875,
    "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 */
JavaScript
<?php
/* PHP Request Example */

$apiEndPoint = "general_nakshatra_report";
$userId = "{YourUserID}";
$apiKey = "{YourApiKey}";
$url = "https://json.apireports.com/v1/";
$data = array(
	"day" => 15,
	"month" => 9,
	"year" => 1994,
	"hour" => 12,
	"min" => 30,
	"lat" => 28.6139,
	"lon" => 77.1025,
	"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 */
PHP
# Python Request Example

import requests
import json

apiEndPoint = "general_nakshatra_report";
userId = "{YourUserID}";
apiKey = "{YourApiKey}";
url = "https://json.apireports.com/v1/"+apiEndPoint

data = json.dumps({
    "day": 15,
    "month": 9,
    "year": 1994,
    "hour": 12,
    "min": 30,
    "lat": 28.61390000000000100044417195022106170654296875,
    "lon": 77.1025000000000062527760746888816356658935546875,
    "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
Python
/* NodeJS Request Example */

var request = require('request');
var apiEndPoint = "general_nakshatra_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({
    "day": 15,
    "month": 9,
    "year": 1994,
    "hour": 12,
    "min": 30,
    "lat": 28.61390000000000100044417195022106170654296875,
    "lon": 77.1025000000000062527760746888816356658935546875,
    "tzone": 5.5
})
};
request(options, function (error, response) {
  if (error) throw new Error(error);
  console.log(response.body);
});

/* END */
NodeJS

Astrology API Reports in News