SEARCH ASTROLOGY API DOCS

Home
Indian Astrology

Basic Numerology/numero_table

The numero_table API returns information related to numerology for a given name, including the name, date, destiny number, radical number, name number, evil numbers, favorite color, favorite day, favorite god, favorite mantra, favorite metal, favorite stone, favorite sub-stone, friendly numbers, neutral numbers, radical number, and radical ruler. The response includes specific values for each of these categories for the given name.

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

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

{
	"name": "Demo",
	"date": "6-121-2014",
	"destiny_number": 8,
	"radical_number": 6,
	"name_number": 1,
	"evil_num": "1,8",
	"fav_color": "White",
	"fav_day": "Thursday, Tuesday, Friday",
	"fav_god": "Devi",
	"fav_mantra": "|| Om Shum Shukray Namah ||",
	"fav_metal": "Sillver",
	"fav_stone": "Diamond, Opal",
	"fav_substone": "Zircon, White Sapphire",
	"friendly_num": "4,3,9",
	"neutral_num": "2,5,7",
	"radical_num": "6",
	"radical_ruler": "Venus"
}
POST
var api = 'numero_table';
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);
});