SEARCH ASTROLOGY API DOCS

Home
Western Astrology

Sub Conscious Self Number/sub_conscious_self_number

The sub_conscious_self_number API provides a report on a person's subconscious self number based on their name and birth date. The response includes the person's name, birth date, subconscious self number, and a report that describes the personality traits associated with that number.

API Endpoint : sub_conscious_self_number
Method : POST
Full URL :
https://json.astrologyapi.com/v1/sub_conscious_self_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",
	"subconscious_self_number": 5,
	"report": [
		"With Subconscious Self number 5, you seem to come across as fickle-minded. It is hard for you to keep yourself focused on one task for long and be disciplined especially while shouldering responsibilities. Your attitude to rushing from one thing to another could make you disorganized. You may lack the dedication needed towards completion of what you have taken up and thus, leaving things half done or mid-way is quite common with you. Your escapist tendencies will not do any good, especially when faced with a problem. It would be wise on your part to face the issues and figure out a way to work through it. You need to learn to remain grounded and stay still. Hence, a good self-control and self-discipline are qualities that you need to imbibe to make you more functional and productive at things you do. "
	]
}
POST
var api = 'sub_conscious_self_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);
});