SEARCH ASTROLOGY API DOCS

Home
Western Astrology

Soul Urge Number/soul_urge_number

This API is the soul_urge_number which takes in a person's name and birth date and returns their soul urge number and a report describing their personality traits associated with that number.

API Endpoint : soul_urge_number
Method : POST
Full URL :
https://json.astrologyapi.com/v1/soul_urge_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",
	"soul_urge_number": 1,
	"report": [
		"The Soul Urge number 1 gives you clarity of purpose and thought. It makes you proactive and a leader in true sense. You are independent and believe in taking a lead. You are your own guide and most often rely on self for guidance. You believe in oneself and in your capabilities and do not shy from taking initiatives or taking the plunge. You are a self-starter and do not wait for a push or backing from others. Being determined and focused, you can easily take up any daunting task and execute it successfully. Honest attempts at what you do, cannot keep success away from you. You take pride in your work and expect others to respect and recognize what you do. Loyalty is one of your strongest traits."
	]
}
POST
var api = 'soul_urge_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);
});