Get Birth Tarot Reading
Method | Full Url |
---|---|
POST | https://json.apireports.com/v1/birth_tarot_reading |
{
"status_code": 200,
"status": true,
"data": {
"card_1": {
"card_id": 21,
"card_name": "Judgment",
"position_key": "upright",
"position": "Upright",
"summary": "",
"meaning": [
"In a general context, the Judgment Tarot card can show that you and/or someone you care about are being judged too cruelly by others. It can also signify that you are judging people harshly or making snap judgments yourself. Alternatively, Judgment can also be a sign that you have achieved a level of clarity and composure that allows you to calmly evaluate yourself and your choices in order to make good decisions. You have come through your past karmic lessons with improved self-awareness and you are allowing healing to take place so you can move forward in a right direction.",
"If you have a big decision to make when this Major Arcana card appears, use the karmic lessons you have learnt from the past to help you make the right choice. Judgment upright can represent a legal matter or court case being resolved. If you have acted honorably and told the truth, this matter should be resolved in your favor. If you have been cheater, don’t expect things to go your way. You want to clear your conscience and try to make amends for your misdeeds. This Major Arcana card can also signify being alienated from someone you love by an ocean or sea. You can expect to be reunited with them soon when it appears. It can also signify homesickness."
]
},
"card_2": {
"card_id": 3,
"card_name": "The High Priestess",
"position_key": "upright",
"position": "Upright",
"summary": "",
"meaning": [
"The High Priestess possesses instinct, mystery and sensuality joint with common sense. When the High Priestess appears in a tarot reading she indicates that now is the time to trust your instincts and go with your gut feeling. Pay attention to your dreams and the signs and symbols the cosmos is distribution you when this Major Arcana trump card appears in your tarot reading."
]
}
}
}
Params | Data Type | Description | Example |
---|---|---|---|
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/birth_tarot_reading' \
-u '{YourUserID}:{YourApiKey}'\
--header 'Accept-Language: en' \
--header 'Content-Type: application/json' \
--data-raw '{
"day": 15,
"month": 9,
"year": 1994
}'
# END
/* JavaScript Request Example */
var apiEndPoint = "birth_tarot_reading";
var userId = "{YourUserID}";
var apiKey = "{YourApiKey}";
var language = "en";
var data = {
"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 = "birth_tarot_reading";
$userId = "{YourUserID}";
$apiKey = "{YourApiKey}";
$url = "https://json.apireports.com/v1/";
$data = array(
"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 = "birth_tarot_reading";
userId = "{YourUserID}";
apiKey = "{YourApiKey}";
url = "https://json.apireports.com/v1/"+apiEndPoint
data = json.dumps({
"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 = "birth_tarot_reading";
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
})
};
request(options, function (error, response) {
if (error) throw new Error(error);
console.log(response.body);
});
/* END */