SEARCH ASTROLOGY API DOCS

Home
Western Astrology

Challenge Numbers/challenge_numbers

The API response contains a person's name, birth date, and a list of challenge numbers. It also includes a report with advice on personal growth and self-improvement, particularly in the areas of self-criticism, emotional management, intuition, and empathy.

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

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",
	"challenge_numbers": [
		1,
		2,
		1,
		1
	],
	"report": [
		[
			"All that is impending your personal growth lies inside you. You are extremely sensitive to other’s opinion of you. You are habituated to taking criticisms from others too seriously and that could be sabotaging. Why be so critical of self that it could belittle you and jeopardize your self-worth. You being over-critical could lead to self-doubt and your inhibitions tend to keep you away from forming deep bonds and strengthen relationships. You may grow suspicious of everyone and everything and that is damaging. Start believing in self. Trust in others and in life in general, is the lesson for you to be learned here.",
			"You may witness difficulty in handling emotions and may find difficult to let go. Be it anger, insecurity or grudge, once experienced, you may find it hard to forgive others and start afresh. You ought to learn to forgive and forget and to drop the excess baggage. You are innately blessed with beautiful gift of intuition. If tapped into it, you will be able to bring magic into your life. However, you may be plagued by self-doubt and may not know how to put your intuitive powers to right use. If you learn to balance your emotional side well, your hyper-sensitivity can prove to be a boon.You will be able to connect with others as you are high on compassion. Also being empathetic will help you to understand others much better.  "
		],
		[
			"You are extremely creative although being too critical of self can be damaging to your sense of identity and your perception of self. You can fully bloom and make a lasting impression on others easily, provided you accept yourself without self-doubt. You use humour to hide your hurts and to mask how you feel inside, particularly when it seems to you that you haven’t succeeded. However, your humour may seem barely natural or real and may have a tinge of sarcasm towards oneself indirectly hinting your failed attempts.",
			"In other words, you may try expressing yourself more creatively although not directly. You may pen down your feelings or experiences and this will enable you to introspect and mull over what you have learnt in the process. This will be some sort of self-realization and will help you evolve as a person. You will learn to value yourself, while you may also earn the respect and admiration of people around you. The nuggets of wisdom gathered through your trial and errors will keep you armed to take on life’s challenges confidently. "
		],
		[
			"All that is impending your personal growth lies inside you. You are extremely sensitive to other’s opinion of you. You are habituated to taking criticisms from others too seriously and that could be sabotaging. Why be so critical of self that it could belittle you and jeopardize your self-worth. You being over-critical could lead to self-doubt and your inhibitions tend to keep you away from forming deep bonds and strengthen relationships. You may grow suspicious of everyone and everything and that is damaging. Start believing in self. Trust in others and in life in general, is the lesson for you to be learned here.",
			"You may witness difficulty in handling emotions and may find difficult to let go. Be it anger, insecurity or grudge, once experienced, you may find it hard to forgive others and start afresh. You ought to learn to forgive and forget and to drop the excess baggage. You are innately blessed with beautiful gift of intuition. If tapped into it, you will be able to bring magic into your life. However, you may be plagued by self-doubt and may not know how to put your intuitive powers to right use. If you learn to balance your emotional side well, your hyper-sensitivity can prove to be a boon.You will be able to connect with others as you are high on compassion. Also being empathetic will help you to understand others much better.  "
		],
		[
			"All that is impending your personal growth lies inside you. You are extremely sensitive to other’s opinion of you. You are habituated to taking criticisms from others too seriously and that could be sabotaging. Why be so critical of self that it could belittle you and jeopardize your self-worth. You being over-critical could lead to self-doubt and your inhibitions tend to keep you away from forming deep bonds and strengthen relationships. You may grow suspicious of everyone and everything and that is damaging. Start believing in self. Trust in others and in life in general, is the lesson for you to be learned here.",
			"You may witness difficulty in handling emotions and may find difficult to let go. Be it anger, insecurity or grudge, once experienced, you may find it hard to forgive others and start afresh. You ought to learn to forgive and forget and to drop the excess baggage. You are innately blessed with beautiful gift of intuition. If tapped into it, you will be able to bring magic into your life. However, you may be plagued by self-doubt and may not know how to put your intuitive powers to right use. If you learn to balance your emotional side well, your hyper-sensitivity can prove to be a boon.You will be able to connect with others as you are high on compassion. Also being empathetic will help you to understand others much better.  "
		]
	]
}
POST
var api = 'challenge_numbers';
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);
});