Get Lalkitab Debts
Method | Full Url |
---|---|
POST | https://json.apireports.com/v1/lalkitab_debts |
{
"status_code": 200,
"status": true,
"data": {
"lalkitab_debts": [
{
"debts_id": 4,
"debt_name": "Debts to Girl Child/Sisters",
"sanskrit_name": "Debts to Girl Child/Sisters",
"indication": "Cheating girls while in youth, murdering or outraging sisters/ daughters, selling or exchanging innocent kids out of greediness, or performing secret deeds which will never come out.",
"events": "The bad words hurt the others more severely than that caused by a sword. There will be bad and adverse results to wealth and life of the native who is blessed with a son. Mother wantonly feels irresponsible. Mourning with happiness, bad/adverse results to in-laws and maternal grandfather, loss of entire yearly income at the end of the year."
},
{
"debts_id": 5,
"debt_name": "Father Debts",
"sanskrit_name": "Father Debts",
"indication": "Changing or defaming of family priest, districting the shrine constructed along with residence, cutting or having holy long pepper tree.",
"events": "The hair of the any one of the elder’s persons in the family will become white. After turning to white, the hair color starts becoming pale. Complaining of cough, or events like keeping the stigma of the bad actions of all other people on his head, etc., will happen."
},
{
"debts_id": 7,
"debt_name": "Debts to Evil Person",
"sanskrit_name": "Debts to Evil Person",
"indication": "Not purchasing machinery or houses even after giving advance, sending out of examination hall without any reason, disputes or legal cases against elder people without any reason etc.",
"events": "Untimely death of progeny or in-laws, godowns of oil or coconut or wood or any other commodity of trade getting fired, no fate of residing in the house purchased, if house is purchased repairing stair case or demolishing stair case and again constructing, incidents like drinking poisons, death out of weapons."
},
{
"debts_id": 8,
"debt_name": "Debts during entire life time",
"sanskrit_name": "Debts during entire life time",
"indication": "Leakage of electricity wires, burning of houses, lakhs-crore of people ruined in short period of time, incidents like missing or theft, swindling, misappropriation of gold, injury on head or diseases related to head, starting from the childhood to old age proved to be worthless, becoming poor and helpless even after performing any work after thinking and planning thoroughly, asthma-epilepsy, cough, difficulties of cough, unexpected death, flow of dirty and impure water below the corridor, accumulation of heaps of dust and waste material or filth in front and backside of the residence.",
"events": "Penalty or imprisonment as punishment in court judgments, cheating in-laws or others in the society or performing such type of cheating by which others family or employment or business get loss."
}
]
}
}
Params | Data Type | Description | Example |
---|---|---|---|
day | int | Date of Birth | 15 |
month | int | Month of Birth | 9 |
year | int | Year of Birth | 1994 |
hour | int | Hour of Birth | 12 |
min | int | Min of Birth | 30 |
lat | float | Latitude of Birth Place | 28.6139 |
lon | float | Longitude of Birth Place | 77.1025 |
tzone | float | Timezone of Birth Place | 5.5 |
# cURL Request Example
curl --location --request POST 'https://json.apireports.com/v1/lalkitab_debts' \
-u '{YourUserID}:{YourApiKey}'\
--header 'Accept-Language: en' \
--header 'Content-Type: application/json' \
--data-raw '{
"day": 15,
"month": 9,
"year": 1994,
"hour": 12,
"min": 30,
"lat": 28.61390000000000100044417195022106170654296875,
"lon": 77.1025000000000062527760746888816356658935546875,
"tzone": 5.5
}'
# END
/* JavaScript Request Example */
var apiEndPoint = "lalkitab_debts";
var userId = "{YourUserID}";
var apiKey = "{YourApiKey}";
var language = "en";
var data = {
"day": 15,
"month": 9,
"year": 1994,
"hour": 12,
"min": 30,
"lat": 28.61390000000000100044417195022106170654296875,
"lon": 77.1025000000000062527760746888816356658935546875,
"tzone": 5.5
};
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 = "lalkitab_debts";
$userId = "{YourUserID}";
$apiKey = "{YourApiKey}";
$url = "https://json.apireports.com/v1/";
$data = array(
"day" => 15,
"month" => 9,
"year" => 1994,
"hour" => 12,
"min" => 30,
"lat" => 28.6139,
"lon" => 77.1025,
"tzone" => 5.5
);
$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 = "lalkitab_debts";
userId = "{YourUserID}";
apiKey = "{YourApiKey}";
url = "https://json.apireports.com/v1/"+apiEndPoint
data = json.dumps({
"day": 15,
"month": 9,
"year": 1994,
"hour": 12,
"min": 30,
"lat": 28.61390000000000100044417195022106170654296875,
"lon": 77.1025000000000062527760746888816356658935546875,
"tzone": 5.5
})
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 = "lalkitab_debts";
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,
"hour": 12,
"min": 30,
"lat": 28.61390000000000100044417195022106170654296875,
"lon": 77.1025000000000062527760746888816356658935546875,
"tzone": 5.5
})
};
request(options, function (error, response) {
if (error) throw new Error(error);
console.log(response.body);
});
/* END */