SEARCH ASTROLOGY API DOCS

Home
Indian Astrology

Numerology Predictions/numero_report

Provides a detailed report about a user's Radical number and the influence of Saturn on their life, including insights into their work style, strengths, weaknesses, and tendencies for sacrifice and dedication.

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

Request Data

ParamsData typeDescriptions

day required

month required

year required

name required

int

int

int

string

date of birth, eg: 10

month of birth, eg: 5

year of birth, eg: 1990

name, eg: 'demo'

Response Data

{
	"title": "What the Number Says About You",
	"description": "Your Radical number is 8. The ruler of Radical number 8 is Saturn. Due to Saturns influence you will rise slowly in life. To attain success after crossing obstacles and hardships is in your nature. You will not be deterred by failures though on occasions you may sink in despair. Your staunchest enemy is lethargy and this will be the reason for your decline. Therefore, dont procrastinate. Due to Saturns influence you will do many important jobs, which will render you name, acclaim and eminence. Not many people will understand your style of work. This will create many critics. You will have less tendency for show-off. This may lead people to regard you as a rough and tough person, while deep inside your heart you are quite sentimental and kind hearted. Mostly you will concern yourself with your work. Your tendency will be to confine yourself to your business. This attitude will generate many adverse people.You will have spirit of sacrifice. You will never waver from desired exertion, dedication and sacrifice desired for an endeavour. Therefore, you will certainly attain your goal after crossing hurdles. The people under the influence of Saturn are hardworking and struggling. As they have to cross many obstacles, they attain success somewhat late but their achievements are stable and permanent."
}
POST
var api = 'numero_report';
var userId = '<Your User Id>';
var apiKey = '<Your Api Key>';
var data = {
   day: 6,
   month:1,
   year:2000,
   name:"Kevin"
};

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);
});