SEARCH ASTROLOGY API DOCS

Home
Western Astrology

Expression Number/expression_number

This API, called expression_number, returns a report based on a person's name and birth date. The report describes the person's personality, emotional balance, and relationship tendencies based on their Expression Number, which is calculated from the letters in their name.

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

Request Data

ParamsData typeDescriptions

day required

month required

year required

hour required

min required

lat required

lon required

tzone required

int

int

int

int

int

float

float

float

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

Response Data

{
	"name": "Ajeet kanojia",
	"birth_date": "2011-5-15",
	"expression_number": 11,
	"report": [
		"Personal power is dormant in each of us. Some are awake to it and some simply become oblivious to its presence. You seem to fall in the latter category. Though unconscious of your hidden powers, you have a robust personality and make a commanding presence. You know that you are different. For you, conscious and unconscious are connected via an unbridled path. Sensitive, you possess a tremendous flow of energy. Emotion and psychology are interconnected. To strike a balance between both these, lest you fall into emotional turmoil and nervous tension, you must learn to channelize that effervescence of energy that you experience.",
		"Relationships are essential for your survival and emotion is your building block. You are hesitant and vulnerable. Vacillating and bobbing with luck in your love life, you have a concrete idea about who your friends would be. Your treasure your feelings and do not share them easily with others. Make use of your latent powers that you are gifted with. Shake the stagnancy of your inherent powers and ground yourself with the natural strength that might appear to you as a challenge initially. The more you dwell on your inner calling, the greater will be the expanse of your keen awareness."
	]
}
POST
var api = 'expression_number';
var userId = '<Your User Id>';
var apiKey = '<Your Api Key>';
var data = {
   date: 6,
   month:1,
   year:2000,
   full_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);
});