Get Three Card Tarot Reading Queries = Love, Relationship, Money, Career, Health, Sprituality, Other
Method | Full Url |
---|---|
POST | https://json.apireports.com/v1/three_card_tarot_reading |
{
"status_code": 200,
"status": true,
"data": {
"past": {
"card_id": 49,
"card_name": "Queen of Wands",
"position_key": "reverse",
"position": "Reversed",
"summary": "This card shows your Past time.",
"meaning": [
"In a love Tarot reading, if you are in a relationship the Queen of Wands reversed can shows that you are in a relationship with someone who symbol the qualities outlined in the above section or you are displaying some of those individuality yourself in your love life. If this is represents your partner, beware as she can indicate dishonesty, Mistrust and someone who is manipulative, jealous or malicious.",
"Alternatively, it can signify that your partner may be temperamental or suffers from low self-assurance or low self-esteem. This Minor Arcana card reversed can also signify that you and your partner may be feeling tired or overwhelmed which is not good for your relationship. Try to take time out to unwind together. If you are planning a baby, this card is not a good sign as it can represent fertility issues or difficulties with motherhood.",
"If you are unmarried, the Queen of Wands reversed can signify that you will get together someone who embodies the qualities outlined in the above section or you are shows some of those individuality yourself in your love life. If this represents someone you are desirous in, beware, she may be hateful, jealous, deceitful or manipulative! This card can also signify that you are not ready to go there and meet someone new person. You have may be lacking the self-confidence and have low self-esteem. Work on making your confidence and do things that make you feel strong."
]
},
"present": {
"card_id": 67,
"card_name": "Three of Pentacles",
"position_key": "reverse",
"position": "Reversed",
"summary": "This card shows your Present time.",
"meaning": [
"In a love Tarot reading, if you are in a relationship, the Three of Pentacles reversed can signify that a third party may be causing resistance in your relationship. It can also signify a lack of commitment or development. It can indicate that you and your partner are not putting the effort in to make the relationship work and that there is a feeling of indifference towards each other.",
"If you are unmarried, the Three of Pentacles reversed can signify that you are not putting your best foot forward in terms of relationships. You may be feeling indifference towards the idea of dating or are just not ready to put the effort into meeting someone. It can also be an indication that you are not learning from your past mistakes and as such are repeating relationship/dating patterns that have not worked for you in the past."
]
},
"future": {
"card_id": 46,
"card_name": "Ten of Wands",
"position_key": "upright",
"position": "Upright",
"summary": "This card shows your Future time.",
"meaning": [
"In a love Tarot extend, if you are in a relationship the Ten of Wands signifies that you are overloaded or overburdened by the relationship. You may feel as though your partner takes you for decided, you may be lift the full weight of the relationship on your shoulders while your partner takes a back seat and you may feel saddled with all the stress and liability of the relationship.",
"This Minor Arcana card signifies that the fun and spontaneity has gone out of the relationship and has been replaced by duty and compulsion making every day an uphill move violently. If you are single, the Ten of Wands shows that the fun has gone out of your love life. You may be stressed and burdens to the point that you don’t have time for dating or gathering someone new and enthusiasm has been replaced by hard labor. If you need love in your life you have to make time for it!"
]
}
}
}
Params | Data Type | Description | Example |
---|---|---|---|
query | String | Query | love |
# cURL Request Example
curl --location --request POST 'https://json.apireports.com/v1/three_card_tarot_reading' \
-u '{YourUserID}:{YourApiKey}'\
--header 'Accept-Language: en' \
--header 'Content-Type: application/json' \
--data-raw '{
"query": "love"
}'
# END
/* JavaScript Request Example */
var apiEndPoint = "three_card_tarot_reading";
var userId = "{YourUserID}";
var apiKey = "{YourApiKey}";
var language = "en";
var data = {
"query": "love"
};
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 = "three_card_tarot_reading";
$userId = "{YourUserID}";
$apiKey = "{YourApiKey}";
$url = "https://json.apireports.com/v1/";
$data = array(
"query" => "love"
);
$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 = "three_card_tarot_reading";
userId = "{YourUserID}";
apiKey = "{YourApiKey}";
url = "https://json.apireports.com/v1/"+apiEndPoint
data = json.dumps({
"query": "love"
})
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 = "three_card_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({
"query": "love"
})
};
request(options, function (error, response) {
if (error) throw new Error(error);
console.log(response.body);
});
/* END */