Get Karmic Lesson Numbers Report
Method | Full Url |
---|---|
POST | https://json.apireports.com/v1/karmic_lesson_numbers |
{
"status_code": 200,
"status": true,
"data": {
"name": "Sanjay Sharma",
"birth_date": "1994-09-15",
"missing_numbers": [
2,
3,
6
],
"report": [
{
"number": 2,
"report": [
"Diplomacy and tact are not your strong suits. You will want to work on this. Be willing to be a behind-the-scenes contributor. Learn to set goals and reach them for the sake of the achievement more than the tribute. You don’t need to be in the spotlight all the time. Work on your aptitude to be a team player.",
"You essential to start being more observant of other people’s feelings. You have a tendency to plough over people. Learn to stand back and let them stretch and grow. Your achievements in life will all come at the cost of you learning a thing or two about delayed gratification, patience and cooperation. You will find yourself forced to share praise on many projects, even when you are a major or nearly sole contributor."
]
},
{
"number": 3,
"report": [
"You are your own worst critic. You find the spotlight to be embarrassing, mostly because you have already persuaded yourself that everything you have to offer is somehow fundamentally flawed. You adhere to a goal of perfectionism that is inaccessible and yet you weigh all your actions, intentions, talents, abilities and self-worth against it. In short, you want to relax. Keep on like this and you will never get any joy out of life.",
"Learn how to laugh. More highly, learn how to laugh AT YOURSELF. It is delightful therapy. Life is going to place you in the position of having to think imaginatively and come up with out-of-the-box solutions to various glitches. The trick is going to be in getting yourself to trust your own instincts and intuitions; you are going to essential to get out of your own way or this failure complex of yours is going to intensify into a self-fulfilling prophecy. Threes are often very creative. If your Karmic Lesson is 3, however, success will be a long and difficult road. You will get there, but it will be a steady, steep uphill climb."
]
},
{
"number": 6,
"report": [
"You have issues committing to anything. This is true of relationships but also work projects or perhaps even a career. You come across as uncaring or emotionless. You want to let people see your range of emotions and be more affectionate. You might often feel alone even if you have people around you who care about you and whom you love as well. You want to learn how to be sincere and communicate your feelings more effectively. Life will throw many chances to learn this lesson at you. Don’t dodge them, face them.",
"You will learn how significant it is to have friends and confidants and how fulfilling a lasting, committed relationship can be. You will learn the ideas of giving and self-sacrifice. There are few things that are more difficult to learn but also few that are of greater value."
]
}
]
}
}
Params | Data Type | Description | Example |
---|---|---|---|
name | string | Full Name | Sanjay Sharma |
day | int | Date of Birth | 15 |
month | int | Month of Birth | 9 |
year | int | Year of Birth | 1994 |
# cURL Request Example
curl --location --request POST 'https://json.apireports.com/v1/karmic_lesson_numbers' \
-u '{YourUserID}:{YourApiKey}'\
--header 'Accept-Language: en' \
--header 'Content-Type: application/json' \
--data-raw '{
"name": "Sanjay Sharma",
"day": 15,
"month": 9,
"year": 1994
}'
# END
/* JavaScript Request Example */
var apiEndPoint = "karmic_lesson_numbers";
var userId = "{YourUserID}";
var apiKey = "{YourApiKey}";
var language = "en";
var data = {
"name": "Sanjay Sharma",
"day": 15,
"month": 9,
"year": 1994
};
var url = 'https://json.apireports.com/v1/'+apiEndPoint;
var request = $.ajax({
url: url,
method: "POST",
dataType:'json',
headers: {
"Authorization": "Basic " + btoa(userId+":"+apiKey),
"Accept-Language": "en",
"Content-Type":'application/json'
},
data:JSON.stringify(data)
});
request.then(
function(resp){
console.log(resp);
},
function(err){
console.log(err);
}
);
/* END */
<?php
/* PHP Request Example */
$apiEndPoint = "karmic_lesson_numbers";
$userId = "{YourUserID}";
$apiKey = "{YourApiKey}";
$url = "https://json.apireports.com/v1/";
$data = array(
"name" => "Sanjay Sharma",
"day" => 15,
"month" => 9,
"year" => 1994
);
$ch = curl_init();
curl_setopt($ch,CURLOPT_URL, $url.$apiEndPoint);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_TIMEOUT, 20);
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 5);
$header[] = 'Authorization: Basic '. base64_encode($userId.":".$apiKey);
$header[] = 'Accept-Language: en';
$header[] = 'Content-Type: application/json';
curl_setopt($ch, CURLOPT_HTTPHEADER, $header);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($data));
$response = curl_exec($ch);
$error = curl_error($ch);
$http_code = curl_getinfo($ch ,CURLINFO_HTTP_CODE);
curl_close($ch);
echo $response;
/* END */
# Python Request Example
import requests
import json
apiEndPoint = "karmic_lesson_numbers";
userId = "{YourUserID}";
apiKey = "{YourApiKey}";
url = "https://json.apireports.com/v1/"+apiEndPoint
data = json.dumps({
"name": "Sanjay Sharma",
"day": 15,
"month": 9,
"year": 1994
})
headers = {
'Accept-Language': 'en',
'Content-Type': 'application/json'
}
response = requests.request("POST", url, headers=headers, auth=(userId, apiKey),data=data)
print(response.text)
# END
/* NodeJS Request Example */
var request = require('request');
var apiEndPoint = "karmic_lesson_numbers";
var userId = "{YourUserID}";
var apiKey = "{YourApiKey}";
var url = 'https://json.apireports.com/v1/'+apiEndPoint;
var options = {
'method': 'POST',
'url': url,
'auth': {
'user': userId,
'password': apiKey
},
'headers': {
'Accept-Language': 'en',
'Content-Type': 'application/json'
},
body: JSON.stringify({
"name": "Sanjay Sharma",
"day": 15,
"month": 9,
"year": 1994
})
};
request(options, function (error, response) {
if (error) throw new Error(error);
console.log(response.body);
});
/* END */