Provides Numerology report.
Method | Full Url |
---|---|
POST | https://json.apireports.com/v1/numero_report |
{
"status_code": 200,
"status": true,
"data": {
"title": "What the Number Says About You",
"radical_num": 6,
"report": [
"Your Radical number is 6. Its ruling planet is Venus. Due to the effect of Radical number 6, you will have magnetic magnetism. You will be genial and fond of friends. Due to these possessions you will be liked by people. It will be natural for you to be involved towards beauty and beautiful things. You will be captivated by opposite sex, and to keep relations with lovely men/women and to chat with them will be your nature. You will be absorbed in fine arts, which you can also opt as your career or business.",
"You will be fond of music-literature, paintings, and statuaries etc. You will fancy good clothes and well ornamented homes. You will pride in amusing guests. You would love to keep all trainings in your home and office, well decorated and to maintain choicest furniture, curtains etc. By nature, you will be little impetuous. You will try to ensure that any person talking to you accepts your viewpoint. Sticking to your views and suspicions are also part of your nature. It will be problematic for you to tolerate competition in your work. This may lead to stress and guilt. You will maintain your expertise in winning hearts. You will have plenty of friends as you are adept in winning attachment."
]
}
}
Params | Data Type | Description | Example |
---|---|---|---|
day | int | Date of Birth | 15 |
month | int | Month of Birth | 9 |
year | int | Year of Birth | 1994 |
name | String | Name | Raju |
# cURL Request Example
curl --location --request POST 'https://json.apireports.com/v1/numero_report' \
-u '{YourUserID}:{YourApiKey}'\
--header 'Accept-Language: en' \
--header 'Content-Type: application/json' \
--data-raw '{
"day": 15,
"month": 9,
"year": 1994,
"name": "Raju"
}'
# END
/* JavaScript Request Example */
var apiEndPoint = "numero_report";
var userId = "{YourUserID}";
var apiKey = "{YourApiKey}";
var language = "en";
var data = {
"day": 15,
"month": 9,
"year": 1994,
"name": "Raju"
};
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 = "numero_report";
$userId = "{YourUserID}";
$apiKey = "{YourApiKey}";
$url = "https://json.apireports.com/v1/";
$data = array(
"day" => 15,
"month" => 9,
"year" => 1994,
"name" => "Raju"
);
$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 = "numero_report";
userId = "{YourUserID}";
apiKey = "{YourApiKey}";
url = "https://json.apireports.com/v1/"+apiEndPoint
data = json.dumps({
"day": 15,
"month": 9,
"year": 1994,
"name": "Raju"
})
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 = "numero_report";
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({
"day": 15,
"month": 9,
"year": 1994,
"name": "Raju"
})
};
request(options, function (error, response) {
if (error) throw new Error(error);
console.log(response.body);
});
/* END */